/* ============================================================
   common.css - 전체 공통 스타일
   피그마 스펙: 153 사회적 농복중앙회
   포인트: #0D9989 | 배경: #F3FFFC | 폰트: Paperlogy
   ============================================================ */
/* Paperlogy 폰트 자체 호스팅 — woff2 우선(경량), 구형 브라우저는 ttf 폴백.
   font-display: swap = 폰트 로딩 중 시스템폰트로 즉시 렌더 후 교체(체감 속도↑) */
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-5Medium.woff2') format('woff2'),
         url('../font/Paperlogy-5Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-6SemiBold.woff2') format('woff2'),
         url('../font/Paperlogy-6SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-7Bold.woff2') format('woff2'),
         url('../font/Paperlogy-7Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-8ExtraBold.woff2') format('woff2'),
         url('../font/Paperlogy-8ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


/* ── CSS 변수 ── */
:root {
    /* 포인트 컬러 */
    --color-main:       #0D9989;   /* 청록 포인트 */
    --color-main-dark:  #0a7a6d;   /* hover */
    --color-main-light: #e8f8f5;   /* 연한 배경 */

    /* 배경 */
    --color-bg:         #FFFFFF;   /* 전체 배경 */
    --color-bg-lt:      #E1FAF1;   /* 좌측 초록 박스 */

    /* 헤더 */
    --color-header-bg:  #ffffff;
    --color-header-line:#FAE1FA;   /* 헤더 하단 선 */

    /* 푸터 */
    --color-footer-bar: #3F4E63;   /* btm_menu 배경 */
    --color-footer-line:#D0D0D0;   /* btm_line */

    /* 텍스트 */
    --color-dark:       #1E1E1E;
    --color-gray:       #525252;
    --color-lgray:      #727272;
    --color-border:     #e5e5e5;

    /* 폰트 */
    --font-main: 'Paperlogy';
}

/* ── 기본 리셋 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--color-dark);
    background: var(--color-bg);
    font-size: 12px;
    line-height: 1.6;
    word-break: keep-all;
}
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
address { font-style: normal; }
button { cursor: pointer; }

/* ── 공통 레이아웃 ── */
.inner-wrap     { max-width: 1258px; margin: 0 auto; padding: 0 34px; }
.page-container { max-width: 1258px; margin: 0 auto; padding: 34px 34px; }

/* ════════════════════════════════════════════════════════
   공통 헤더 (#site-header)
   피그마: height:98px, background:#fff, 하단선:#FAE1FA
════════════════════════════════════════════════════════ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg);
    transition: box-shadow 0.2s;
}
#site-header.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

/* 헤더 inner */
.header-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
    height: 83px;
    display: flex;
    align-items: center;
    position: relative;
}

/* 헤더 하단 선: #FAE1FA */
.header-line {
    width: 100%;
    height: 1px;
    background: var(--color-header-line);
}

/* ── 로고 ── */
.header-logo { flex-shrink: 0; margin-right: auto; }
.header-logo a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* 로고 이미지 래퍼: 65x65 원형 */
.logo-img-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--color-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
/* 실제 로고 이미지 */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
/* 이미지 없을 때 폴백 텍스트 */
.logo-placeholder {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    font-family: var(--font-main);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 로고 텍스트 */
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
/* 사단법인: 18px, letter-spacing:0.04em, color:#666 */
.logo-sub {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #666666;
    line-height: 1;
}
/* 153 사회적 농복중앙회: 27px, letter-spacing:-0.04em, color:#1C1C1C */
.logo-main {
    font-family: var(--font-main);
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #1C1C1C;
    line-height: 1;
}

/* ── GNB ── */
.gnb {
    flex: 1;                    /* 로고 오른쪽 남은 공간 차지 */
    display: flex;
    align-items: center;
    margin-left:57px;
}
/* gnb-inner: 컨텐츠 너비만큼만 차지, gnb-drop 의 기준점 */
.gnb-inner {
    position: relative;
    display: flex;
    align-items: center;
}
/* grid로 4컬럼 균등 분배 → 메가메뉴 컬럼과 정확히 동기화 */
.gnb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 83px;
}
.gnb-item {
    position: relative;             /* gnb-col 의 기준점 */
    height: 83px;
    display: flex;
    align-items: center;
}
/* GNB 링크: 18px, weight:600, letter:-0.02em */
.gnb-link {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    text-decoration: none;
    padding: 0 31px;
    height: 83px;
    display: flex;
    align-items: center;        /* 텍스트 수직 중앙 고정 */
    white-space: nowrap;
    width: 100%;
    position: relative;         /* gnb-badge absolute 기준점 */
}

/* ── GNB 배지 (농인복지 등 소제목) ── */
.gnb-badge {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -0.08em;
    line-height: 1;
    color: #6E6E6E;
    position: absolute;         /* flow에서 제거 → 메뉴 텍스트 중앙선 유지 */
    top: 19px;                  /* 헤더 상단에서 19px: 메뉴 텍스트 바로 위 */
}

/* ════ GNB 드롭다운: gnb-col은 각 gnb-item 기준 absolute ════ */
/* gnb-col: gnb-item 바로 아래, 왼쪽 정렬 보장 */
.gnb-col {
    position: absolute;
    top: 83px;                  /* 헤더 높이 바로 아래 */
    left: 0;                    /* gnb-item 왼쪽 끝 = gnb-link 텍스트 시작점 */
    padding: 17px 31px 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 999;
}
.gnb-inner:hover .gnb-col {
    opacity: 1;
    visibility: visible;
}
/* gnb-drop-bg: 전체 너비 배경 + 그림자 (gnb-col 뒤에 위치) */
.gnb-drop-bg {
    position: absolute;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    width: 1224px;
    min-height: 187px;
    background: var(--color-bg);
    box-shadow: 0 6px 6px rgba(0,0,0,0.12);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}
.gnb-inner:hover .gnb-drop-bg {
    opacity: 1;
    visibility: visible;
}

.gnb-col a {
    display: block;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--color-gray);
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.15s;
}
.gnb-col a:hover {
    color: var(--color-main);
}
/* 하위 들여쓰기 항목 */
.gnb-sub-item {
    padding-left: 16px !important;
    font-size: 16px !important;
    color: var(--color-lgray) !important;
    position: relative;
}
.gnb-sub-item::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1px;
    background: var(--color-lgray);
}
.gnb-sub-item:hover {
    color: var(--color-main) !important;
}

/* 모바일 햄버거 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.2s;
}

/* ════════════════════════════════════════════════════════
   공통 푸터 (#site-footer)
   피그마: btm_menu(#3F4E63,71px) + 본문 + line(#D0D0D0) + copy
════════════════════════════════════════════════════════ */
#site-footer { background: #ffffff; margin-top: 0; }

/* ① btm_menu: height:60px, background:#3F4E63 */
.footer-top-bar {
    width: 100%;
    height: 60px;
    background: var(--color-footer-bar);
    display: flex;
    align-items: center;
}
.footer-bar-inner {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 31px;
}
/* 개인정보처리방침 / 관리자: 17px, weight:600, #fff */
.footer-bar-link {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-decoration: none;
    line-height: 27px;
    transition: opacity 0.15s;
}
.footer-bar-link:hover { opacity: 0.8; }

/* ② 푸터 본문 */
.footer-body {
    background: var(--color-bg);
    padding: 41px 0 37px;
}
.footer-body-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 41px;
}

/* 좌측: 주소·정보 텍스트 (뮤트 청록) */
.footer-addr {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}
.ftr-info-line {
    display: block;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 19px;
}

/* 우측: 전화/팩스/운영시간 */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex-shrink: 0;
}

/* 전화·팩스 가로 배치 */
.ftr-tel-row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ftr-tel-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.ftr-tel-label {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: #7aaba5;
    letter-spacing: -0.02em;
    line-height: 23px;
}
.ftr-tel-num {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: #1E1E1E;
    letter-spacing: -0.02em;
    line-height: 23px;
}

/* 전화·팩스 사이 세로 구분선 */
.ftr-tel-divider {
    width: 1px;
    height: 31px;
    background: #d0d0d0;
    flex-shrink: 0;
}

/* 운영시간 배지 */
.ftr-hours-badge {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-main);
    background: var(--color-main-light);
    border: 1px solid rgba(13,153,137,0.25);
    border-radius: 17px;
    padding: 5px 14px;
    letter-spacing: -0.02em;
    line-height: 32px;
    white-space: nowrap;
}

/* ③ 구분선 */
.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--color-footer-line);
}

/* ④ 카피라이트 */
.footer-copy {
    background: var(--color-bg);
    padding: 17px 0;
}
.footer-copy-text {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* 주소 레이블+내용 정렬 */
.ftr-addr-block {
    display: flex;
    align-items: baseline;
    gap: 0.4em;
}
.ftr-addr-label {
    white-space: nowrap;
    flex-shrink: 0;
}
.ftr-addr-text {
    line-height: 22px;
}

/* ── 반응형 헤더/푸터 ── */
@media (max-width: 1200px) {
    .header-inner, .footer-bar-inner,
    .footer-body-inner { padding: 0 20px; }
    .gnb-link { padding: 0 15px; font-size: 15px; }
}
@media (max-width: 900px) {
    .gnb { display: none; }
    .mobile-menu-btn { display: flex; }

    /* 모바일: 햄버거 클릭 시 전체 메뉴 표시 */
    .gnb.mobile-open {
        display: block;
        position: fixed;
        top: 84px; left: 0;
        margin-left: 0;             /* 데스크톱 margin-left:57px 리셋 → 패널 우측 밀림 방지 */
        width: 100%;
        background: #fff;
        z-index: 1002;
        overflow-y: auto;
        max-height: calc(100vh - 84px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }
    .gnb.mobile-open .gnb-list { flex-direction: column; height: auto; width: 100%; }
    .gnb.mobile-open .gnb-item { position: static; height: auto; width: 100%; flex-direction: column; align-items: flex-start; }
    /* 메뉴 링크: 배지가 텍스트 위에 겹치지 않도록 세로 정렬 + 배지 흐름 배치 */
    .gnb.mobile-open .gnb-link { height: auto; padding: 14px 24px; width: 100%; border-bottom: 1px solid var(--color-border); flex-direction: column; align-items: flex-start; gap: 2px; }
    .gnb.mobile-open .gnb-badge { position: static; top: auto; }
    .gnb.mobile-open .gnb-inner { flex-direction: column; width: 100%; align-items: flex-start; }
    .gnb.mobile-open .gnb-drop-bg { display: none; }
    .gnb.mobile-open .gnb-col {
        position: static;
        opacity: 1;
        visibility: visible;
        white-space: normal;
        padding: 8px 16px 16px;
        border-bottom: 1px solid var(--color-border);
        width: 100%;
    }
    .gnb.mobile-open .gnb-col:last-child { border-bottom: none; }

    .footer-body-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .footer-contact { align-items: flex-start; }
}
@media (max-width: 640px) {
    .logo-main  { font-size: 17px; line-height: 1.2; }
    .logo-sub   { font-size: 12px; }
    .logo-img-wrap { width: 44px; height: 44px; }
    .ftr-tel-num   { font-size: 17px; }
    .ftr-tel-row   { gap: 16px; }
    .footer-bar-link { font-size: 14px; }
    .ftr-hours-badge { font-size: 10px; white-space: normal; }
}

/* ════════════════════════════════════════════════════════
   공통 버튼
════════════════════════════════════════════════════════ */
.btn {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    color: var(--color-gray1);
}
.btn:hover { background: #f5f5f5; }
.btn-primary {
    background: var(--color-main);
    color: #fff;
    border-color: var(--color-main);
}
.btn-primary:hover { background: var(--color-main-dark); border-color: var(--color-main-dark); }
.btn-secondary { background: #555; color: #fff; border-color: #555; }
.btn-secondary:hover { background: #333; }
.btn-delete { background: #e53935; color: #fff; border-color: #e53935; }
.btn-delete:hover { background: #c62828; }
.btn-full  { width: 100%; padding: 12px; text-align: center; }
.btn-large { padding: 14px 40px; font-size: 16px; }

/* ── 공통 폼 ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 700; font-size: 13px; color: var(--color-gray1); }
.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: var(--color-gray1);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 3px rgba(249,99,25,0.12);
}
.form-group .input-readonly { background: #f5f5f5; color: #888; }
.form-group small  { color: #999; font-size: 12px; margin-top: 4px; display: block; }
.form-group-inline { display: flex; align-items: center; gap: 8px; }
.required { color: #e53935; }
.form-buttons { display: flex; gap: 12px; margin-top: 28px; }
.error-msg { color: #e53935; font-size: 13px; margin-bottom: 12px; }

/* ── 페이지 제목 영역 ── */
.page-title {
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-main);
}
.page-title h2 { font-size: 22px; font-weight: 900; color: var(--color-gray1); }
.page-desc { color: var(--color-gray2); margin-top: 6px; font-size: 14px; }

/* ── 빈 데이터 ── */
.no-data { text-align: center; color: var(--color-gray3); padding: 24px 0; font-size: 13px; }

/* ── 관리자 전용 컨트롤 ── */
.admin-controls { display: flex; gap: 10px; margin: 16px 0; }

/* ── 모달 ── */
.modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}
.modal-inner {
    background: #fff;
    padding: 31px;
    border-radius: 8px;
    width: 306px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.modal-inner h3 { margin-bottom: 6px; font-size: 18px; font-weight: 900; }
.modal-inner p  { color: var(--color-gray2); font-size: 13px; margin-bottom: 18px; }
.modal-inner input { width: 100%; margin-bottom: 10px; }
.modal-buttons { display: flex; gap: 10px; margin-top: 8px; }

/* ── 로그인 페이지 ── */
.login-page {
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh;
    background: var(--color-main-light);
}
.login-container {
    background: #fff;
    padding: 43px 37px;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(249,99,25,0.12);
    width: 357px;
}
.login-container h2 {
    text-align: center;
    margin-bottom: 6px;
    color: var(--color-main);
    font-size: 20px;
    font-weight: 900;
}
.login-sub { text-align: center; color: var(--color-gray3); font-size: 13px; margin-bottom: 32px; }
.btn-back { display: block; text-align: center; margin-top: 20px; color: var(--color-gray3); font-size: 13px; }
.btn-back:hover { color: var(--color-main); }

/* ── 페이지네이션 ── */
.pagination { display: flex; justify-content: center; gap: 4px; margin: 24px 0; }
.page-btn {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray2);
    background: #fff;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.page-btn:hover { background: var(--color-main-light); color: var(--color-main); border-color: var(--color-main); }
.page-btn.active { background: var(--color-main); color: #fff; border-color: var(--color-main); }

/* ── 서브페이지 공통 배너 ── */
.sub-banner {
    width: 1440px;
    max-width: 100%;
    height: 269px;
    position: relative;
    overflow: hidden;
    margin: 3px auto 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #c8ede6 0%, #a8d8cf 50%, #d4eee8 100%);
}
.sub-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.sub-banner-inner {
    position: absolute;
    top: 14px;
    left: 62px;
}
.sub-breadcrumb {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.breadcrumb-home {
    display: flex;
    align-items: center;
    color: #383838;
    transition: color 0.15s;
    margin-bottom: 1px;
}
.breadcrumb-home:hover { color: #1C1C1C; }
.breadcrumb-sep {
    font-size: 15px;
    color: #383838;
    line-height: 1;
}
.breadcrumb-menu {
    font-size: 15px;
    font-weight: 600;
    color: #383838;
    letter-spacing: -0.02em;
    line-height: 1;
}
.breadcrumb-current {
    font-size: 15px;
    font-weight: 700;
    color: #383838;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* ── 서브페이지 공통 탭 바 ── */
.sub-tab-bar {
    width: 100%;
    height: 51px;
    margin-top: 3px;
    background: #F3FFFC;   /* 1224px 바깥: 테마 배경색 */
    border-bottom: none;
    position: sticky;
    top: 83px;
    z-index: 100;
}
.sub-tab-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #AFF4C6;             /* 1440px 안쪽: 기존 탭 배경색 */
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.sub-tab-item {
    display: flex;
    align-items: center;
    height: 47px;
    padding: 0 34px;
    font-size: 18px;
    font-weight: 600;
    color: #525252;
    letter-spacing: -0.02em;
    text-decoration: none;
    background: transparent;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.sub-tab-item:hover,
.sub-tab-item:active,
.sub-tab-item.active { background: #fff; color: #525252; }
.sub-tab-item:focus,
.sub-tab-item:focus-visible { outline: none; box-shadow: none; }

/* ── 서브탭 반응형 (베이스 정의 뒤에 위치해야 소스 순서상 적용됨) ── */
@media (max-width: 900px) {
    /* 모바일: 서브탭 고정 해제 → 스크롤 시 화면 위로 함께 사라지게 (상단 뚫림 방지) */
    .sub-tab-bar { position: static; top: auto; }
}
@media (max-width: 640px) {
    /* 탭이 들어가면 가운데 정렬, 넘치면 좌측 정렬+가로 스크롤(safe) */
    .sub-tab-inner {
        justify-content: center;
        justify-content: safe center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .sub-tab-inner::-webkit-scrollbar { display: none; }
    .sub-tab-item {
        flex-shrink: 0;
        padding: 0 16px;
        font-size: 15px;
        white-space: nowrap;
    }
}

/* ── 서브페이지 컨텐츠 래퍼 ── */
.sub-content-wrap {
    padding: 51px 0 68px;
}

/* ── 서브 섹션 헤더 공통 ── */
.sub-section-header {
    margin-bottom: 41px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}
.sub-section-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-main);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sub-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.03em;
    line-height: 1.4;
}
