@charset "utf-8";

/* ============================================================
   복지사업 페이지
   ============================================================ */

/* ── 페이지 헤더 ── */
.page-header {
    padding: 30px 0 40px;
}
.page-header__sub {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #006835;
}
.page-header__title {
    font-size: 34px;
    font-weight: 700;
    color: var(--aticle-title);
    border-bottom: 3px solid var(--aticle-title);
    display: inline-block;
     position: relative;
	z-index: 1;
}


.step-item:last-child .step-text {
    font-size: 14px;
}

.page-header__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;  /* 아래쪽 절반만 배경 */
    background-color: #D4EAD9;
    z-index: -1;
}

.page-header__category {
    font-size: 34px;
    color: #222222;
    font-weight: 300;
}

.circle::before{
	content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #006835;
    flex-shrink: 0;
    margin-left: 10px;
    margin-right: 10px;
}

/* ── 섹션 카드 ── */
.welfare-section {
    border: 1px solid #CCCCCC;
    border-radius: 30px;
    padding: 36px 40px;
    margin-bottom: 40px;
}

.welfare-section.m-b-none {
	margin-bottom: 0;
}



.section {
	max-width:1200px; 
	margin:0 auto;
	margin-bottom: 180px;
}

.welfare-section.background {
	background-color: #F8F8F8;
	border:none;
}


/* ── 불릿 타이틀 ── */
.bullet-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -4%;
    color: var(--aticle-title);
    margin-bottom: 16px;
}


/* ── 본문 텍스트 ── */
.welfare-section p.body-text {
    color: #444;
    font-size: 20px;
    line-height: 34px;
    padding-left: 14px;
   
}



/* ── 서브 섹션 ── */
.sub-section {
    margin-top: 20px;
    padding-left: 20px;
}
.sub-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}
.sub-title::before {
    content: '▪';
    color: var(--aticle-title);
    font-size: 14px;
}

/* ── 점 불릿 리스트 ── */
.dot-list {
    list-style: none;
    padding-left: 10px;
    color: #444;
    font-weight: 300;
    font-size: 20px;
}
.dot-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
}
.dot-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sub-title);
}
.dot-list li strong {
    font-weight: 700;
    color: var(--aticle-title);
}

/* ── 신청하기 스텝 ── */
.step-wrap {
    border: 1px solid #006835;
    border-radius: 10px;
    padding: 28px 24px;
    margin-top: 10px;
}
.step-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
}
.step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #006835;
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.step-text {
    font-size: 18px;
    color: var(--sub-title);
    line-height: 24px;
    font-weight: 400;
}
.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 14px;
    color: #006835;
    font-size: 18px;
}

/* ── 카드 이미지 박스 ── */
.card-image-box {
    border: 1px solid #006835;
    border-radius: 10px;
    padding: 24px;
    margin-top: 20px;
    text-align: center;
}
.card-image-box__title {
    font-size: 20px;
    font-weight: 700;
    color: #444;
    margin-bottom: 20px;
}
.card-image-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.card-image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.card-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-image-item span {
    font-size: 20px;
    color: #444;
    line-height: 34px;
    font-weight: 700;
}

.c-primary {
	color: #006835;
}

/* ── 문의 ── */
.contact-grid {
    display: flex;
    gap: 350px;
    padding-left: 20px;
    flex-wrap: wrap;
    color: #222;
    font-weight: 600;
}


/* ── 반응형 ── */
@media (max-width: 768px) {
    .welfare-section { padding: 24px 20px; }
    .step-arrow { display: none; }
    .step-item { min-width: 80px; }
    .contact-grid { flex-direction: column; gap: 10px; }
    .page-header__title { font-size: 24px; }
}
