/* =========================================================
   FONT (NanumSquareNeo)
   가중치 매핑:
     300       → Light (aLt)
     400 ~ 500 → Regular (bRg)
     600 ~ 700 → Bold (cBd)
     800       → ExtraBold (dEb)
     900       → Heavy (eHv)
   ========================================================= */
@font-face {
    font-family: "NanumSquareNeo";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/assets/fonts/nanumSquareNeo/NanumSquareNeoTTF-aLt.woff2")
        format("woff2");
}
@font-face {
    font-family: "NanumSquareNeo";
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url("/assets/fonts/nanumSquareNeo/NanumSquareNeoTTF-bRg.woff2")
        format("woff2");
}
@font-face {
    font-family: "NanumSquareNeo";
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("/assets/fonts/nanumSquareNeo/NanumSquareNeoTTF-cBd.woff2")
        format("woff2");
}
@font-face {
    font-family: "NanumSquareNeo";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("/assets/fonts/nanumSquareNeo/NanumSquareNeoTTF-dEb.woff2")
        format("woff2");
}
@font-face {
    font-family: "NanumSquareNeo";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("/assets/fonts/nanumSquareNeo/NanumSquareNeoTTF-eHv.woff2")
        format("woff2");
}

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
    --color-primary: #1a56db;
    --color-primary-hover: #1447b3;
    --color-primary-light: #e0ecff;
    --color-primary-deep: #0f3b94;

    --color-secondary: #0f172a;
    --color-secondary-alt: #1e293b;

    --color-accent: #059669;
    --color-accent-hover: #047857;

    --color-danger: #dc2626;

    --color-text: #1a202c;
    --color-text-body: #334155;
    --color-text-muted: #64748b;
    --color-text-light: #94a3b8;
    --color-text-on-dark: #ffffff;

    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-muted: #f1f5f9;
    --color-border: #e2e8f0;
    --color-border-strong: #cbd5e1;

    --container: 1280px;
    --header-h: 94px;
    --util-h: 40px;

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-xl: 14px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    --t-fast: 0.15s;
    --t-base: 0.2s;
    --t-slow: 0.3s;

    --z-header: 100;
    --z-overlay: 150;
    --z-mobile-menu: 200;
}

/* =========================================================
   BASE
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family:
        "NanumSquareNeo",
        -apple-system,
        BlinkMacSystemFont,
        "Malgun Gothic",
        sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    letter-spacing: -0.2px;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}

*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.skip-nav {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 12px 24px;
    font-weight: 700;
    z-index: 9999;
}
.skip-nav:focus {
    left: 10px;
    top: 10px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   UTILITY BAR
   ========================================================= */
.util-bar {
    background: var(--color-secondary);
    color: #cbd5e1;
    font-size: 13px;
    height: var(--util-h);
    display: flex;
    align-items: center;
}
.util-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.util-bar__left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.util-bar__right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.util-bar a {
    padding: 4px 10px;
    border-radius: 4px;
    transition: background var(--t-fast);
}
.util-bar a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.util-bar strong {
    color: #fff;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 800;
    color: var(--color-secondary);
}
.logo__mark {
    width: 54px;
    height: 54px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-deep)
    );
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}
.logo__text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
}
.logo__text small {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: 0;
}

/* ── Primary Nav ── */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav__item {
    position: relative;
}
.nav__link {
    display: inline-block;
    padding: 14px 26px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    transition: color var(--t-fast);
    border-radius: var(--radius-md);
}
.nav__link:hover {
    color: var(--color-primary);
    background: var(--color-bg-muted);
}
.nav__link--cta {
    color: var(--color-accent);
    font-weight: 600;
}
.nav__link--cta:hover {
    color: var(--color-accent-hover);
    background: rgba(5, 150, 105, 0.08);
}

/* Dropdown */
.nav__dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-primary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-4px);
    transition: all var(--t-base);
    z-index: 10;
}
.nav__item:hover > .nav__dropdown,
.nav__item:focus-within > .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    font-size: 15px;
    color: var(--color-text-body);
    border-radius: var(--radius-md);
    white-space: nowrap;
}
.nav__dropdown a::before {
    content: "›";
    color: var(--color-primary);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    transition: transform var(--t-fast);
}
.nav__dropdown a:hover {
    background: var(--color-bg-muted);
    color: var(--color-primary);
}
.nav__dropdown a:hover::before {
    transform: translateX(2px);
}

/* ── Header Actions ── */
.header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header__search,
.header__menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: background var(--t-fast);
}
.header__search:hover,
.header__menu-toggle:hover {
    background: var(--color-bg-muted);
}
.header__menu-toggle {
    display: none;
}

/* =========================================================
   HERO SLIDER (Swiper)  — labors.or.kr 스타일 (파스텔·좌텍스트/우비주얼)
   ========================================================= */
.hero {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    color: #0f172a;
}
.hero .swiper,
.hero .swiper-wrapper {
    width: 100%;
    height: 550px;
}

.hero__slide {
    display: flex !important;
    align-items: center;
    padding: 40px 0 100px;
    position: relative;
}
.hero__slide::before {
    display: none;
}

/* 파스텔 배경 팔레트 */
.hero__slide--mint {
    background-color: #dff0e4;
}
.hero__slide--sky {
    background-color: #dee8f0;
}
.hero__slide--peach {
    background-color: #f5e5d5;
}

/* 내부 그리드 — 좌측 텍스트 / 우측 비주얼 */
.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.hero__text {
    text-align: left;
}

.hero__kicker {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.18);
    border-radius: 100px;
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}
.hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #0f172a;
    max-width: 560px;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__lead {
    font-size: 18px;
    color: #475569;
    max-width: 520px;
    margin: 0 0 36px;
    line-height: 1.75;
}
.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* 우측 비주얼 버블 (이모지) */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__visual__bubble {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 24px 48px -30px rgba(15, 23, 42, 0.35);
    font-size: 160px;
    line-height: 1;
}
.hero__visual__bubble::before {
    content: "";
    position: absolute;
    inset: -14px;
    border: 2px dashed rgba(15, 23, 42, 0.12);
    border-radius: 50%;
}

/* 슬라이드별 kicker / em 색상 변주 */
.hero__slide--mint .hero__kicker {
    background: rgba(6, 95, 70, 0.1);
    border-color: rgba(6, 95, 70, 0.2);
    color: #065f46;
}
.hero__slide--mint .hero__title em {
    background: linear-gradient(90deg, #059669, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__slide--sky .hero__kicker {
    background: rgba(29, 78, 216, 0.1);
    border-color: rgba(29, 78, 216, 0.22);
    color: #1d4ed8;
}
.hero__slide--sky .hero__title em {
    background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__slide--peach .hero__kicker {
    background: rgba(194, 65, 12, 0.1);
    border-color: rgba(194, 65, 12, 0.22);
    color: #c2410c;
}
.hero__slide--peach .hero__title em {
    background: linear-gradient(90deg, #c2410c, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 밝은 배경용 .btn--ghost 재정의 */
.hero__slide .btn--ghost {
    background: rgba(255, 255, 255, 0.7);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.15);
    backdrop-filter: none;
}
.hero__slide .btn--ghost:hover {
    background: #fff;
    transform: translateY(-1px);
}

/* =========================================================
   HERO CONTROLS — 좌우 화살표 + 하단 페이지네이션 + 일시정지
   ========================================================= */
.hero__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    z-index: 5;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.hero__controls .swiper-pagination {
    position: static !important;
    width: auto !important;
    bottom: auto !important;
    transform: none !important;
    display: flex;
    gap: 8px;
}
.hero__controls .swiper-pagination-bullet {
    width: 28px !important;
    height: 3px !important;
    border-radius: 2px !important;
    background: rgba(15, 23, 42, 0.2) !important;
    opacity: 1 !important;
    transition:
        background var(--t-fast),
        width var(--t-slow) !important;
    margin: 0 !important;
}
.hero__controls .swiper-pagination-bullet:hover {
    background: rgba(15, 23, 42, 0.4) !important;
}
.hero__controls .swiper-pagination-bullet-active {
    background: #0f172a !important;
    width: 44px !important;
}

/* 좌우 화살표 버튼 */
.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -10px rgba(15, 23, 42, 0.25);
    transition:
        background var(--t-fast),
        transform var(--t-fast);
}
.hero__nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}
.hero__nav--prev {
    left: 24px;
}
.hero__nav--next {
    right: 24px;
}
.hero__nav svg {
    width: 18px;
    height: 18px;
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
    display: none;
}

/* 일시정지 버튼 (밝은 배경용) */
.hero__pause {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast);
}
.hero__pause:hover {
    background: rgba(15, 23, 42, 0.15);
}
.hero__pause-icon {
    width: 11px;
    height: 11px;
}

@media (max-width: 960px) {
    .hero {
        min-height: 470px;
    }
    .hero .swiper,
    .hero .swiper-wrapper {
        height: 470px;
    }
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero__text {
        text-align: center;
    }
    .hero__title {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__lead {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__cta {
        justify-content: center;
        gap: 10px;
    }
    .hero__cta .btn {
        padding: 12px 22px;
        font-size: 14px;
    }
    .hero__cta .btn--lg {
        padding: 13px 24px;
        font-size: 14.5px;
    }
    .hero__visual {
        display: none;
    }
    .hero__nav {
        width: 40px;
        height: 40px;
    }
    .hero__nav--prev {
        left: 12px;
    }
    .hero__nav--next {
        right: 12px;
    }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--t-fast);
    white-space: nowrap;
    border: 1px solid transparent;
}
.btn--primary {
    background: var(--color-accent);
    color: #fff;
}
.btn--primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn--blue {
    background: var(--color-primary);
    color: #fff;
}
.btn--blue:hover {
    background: var(--color-primary-hover);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary-light);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* =========================================================
   SECTION BASICS
   ========================================================= */
.section {
    padding: 80px 0;
}
.section--alt {
    background: var(--color-bg-alt);
}
.section__head {
    text-align: center;
    margin-bottom: 56px;
}
.section__kicker {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}
.section__title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    color: var(--color-text);
}
.section__desc {
    color: var(--color-text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================================
   QUICK SERVICES
   ========================================================= */
.quick-services {
    margin-top: -60px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}
.quick-service {
    text-align: center;
    padding: 20px 12px;
    border-radius: var(--radius-lg);
    transition: all var(--t-fast);
}
.quick-service:hover {
    background: var(--color-bg-muted);
    transform: translateY(-2px);
}
.quick-service__icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick-service--accent .quick-service__icon {
    background: #d1fae5;
    color: var(--color-accent);
}
.quick-service--warm .quick-service__icon {
    background: #fef3c7;
    color: #d97706;
}
.quick-service--purple .quick-service__icon {
    background: #e9d5ff;
    color: #7c3aed;
}
.quick-service__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

/* =========================================================
   TABBED NOTICE BOARD
   ========================================================= */
.notice-board {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.notice-tabs {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-alt);
    position: relative;
}
.notice-tab {
    flex: 1;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--t-fast);
    position: relative;
}
.notice-tab:hover {
    color: var(--color-text);
}
.notice-tab.is-active {
    background: #fff;
    color: var(--color-primary);
    font-weight: 700;
}
.notice-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--color-primary);
}

.notice-panels {
    padding: 8px 0;
}
.notice-panel {
    display: none;
}
.notice-panel.is-active {
    display: block;
}

.notice-panel__head {
    display: flex;
    justify-content: flex-end;
    padding: 12px 24px 4px;
}
.notice-panel__more {
    color: var(--color-text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 2px;
}
.notice-panel__more:hover {
    color: var(--color-primary);
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    border-top: 1px solid var(--color-bg-muted);
    transition: background var(--t-fast);
}
.notice-item:first-child {
    border-top: none;
}
.notice-item:hover {
    background: var(--color-bg-alt);
}
.notice-item__title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 15px;
    color: var(--color-text-body);
}
.notice-item__title strong {
    color: var(--color-text);
    font-weight: 500;
}
.notice-item__badge {
    flex-shrink: 0;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
}
.notice-item__badge--new {
    background: #fee2e2;
    color: var(--color-danger);
}
.notice-item__date {
    flex-shrink: 0;
    color: var(--color-text-light);
    font-size: 13px;
}

/* =========================================================
   STATS RIBBON
   ========================================================= */
.stats-ribbon {
    background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 100%);
    color: #fff;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.stats-ribbon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 85% 50%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 40%
        );
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item:last-child {
    border-right: none;
}
.stat-item__num {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.stat-item__num span {
    font-size: 20px;
    font-weight: 500;
    margin-left: 2px;
    opacity: 0.8;
}
.stat-item__label {
    font-size: 14px;
    color: #cbd5e1;
}

/* =========================================================
   BANNER CARDS
   ========================================================= */
.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.banner-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius-lg);
    color: #fff;
    transition:
        transform var(--t-base),
        box-shadow var(--t-base);
    position: relative;
    overflow: hidden;
}
.banner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.banner-card::after {
    content: "→";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    opacity: 0.4;
    transition:
        opacity var(--t-fast),
        right var(--t-fast);
}
.banner-card:hover::after {
    opacity: 0.9;
    right: 16px;
}

.banner-card--blue {
    background: linear-gradient(135deg, #1e40af 0%, #1a56db 100%);
}
.banner-card--green {
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
}
.banner-card--purple {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
}

.banner-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.banner-card__icon svg {
    width: 28px;
    height: 28px;
}
.banner-card__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.banner-card__content p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}

/* =========================================================
   SCHEDULE
   ========================================================= */
.schedule-wrap {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.schedule-head {
    padding: 24px 28px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-bg-alt);
}
.schedule-head h3 {
    font-size: 20px;
    font-weight: 700;
}
.schedule-head h3 span {
    color: var(--color-primary);
}
.schedule-list {
    padding: 8px 0;
}
.schedule-row {
    display: grid;
    grid-template-columns: 120px 1fr 180px 120px;
    align-items: center;
    gap: 20px;
    padding: 16px 28px;
    border-bottom: 1px solid var(--color-bg-muted);
    transition: background var(--t-fast);
}
.schedule-row:last-child {
    border-bottom: none;
}
.schedule-row:hover {
    background: var(--color-bg-alt);
}
.schedule-date {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.schedule-date__day {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}
.schedule-date__sub {
    font-size: 13px;
    color: var(--color-text-muted);
}
.schedule-title {
    font-size: 16px;
    font-weight: 500;
}
.schedule-meta {
    color: var(--color-text-muted);
    font-size: 14px;
}
.schedule-cta {
    text-align: right;
}

/* =========================================================
   SERVICE HIGHLIGHT BLOCKS
   ========================================================= */
.service-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-block {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--t-base);
    position: relative;
    cursor: pointer;
}
.service-block:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-block__cover {
    height: 180px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}
.service-block__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-base);
}
.service-block:hover .service-block__cover img {
    transform: scale(1.04);
}
.service-block__body {
    padding: 28px;
}
.service-block__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-block__desc {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.service-block__link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.service-block__link:hover {
    gap: 8px;
}
.service-block__link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* =========================================================
   FAMILY SITES (관련 사이트)
   ========================================================= */
.family-sites {
    background: #0a1020;
    border-bottom: 1px solid #1e293b;
}
.family-sites__inner {
    display: flex;
    justify-content: flex-end;
    padding: 12px 0;
}
.family-sites__group {
    position: relative;
}
.family-sites__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 16px;
    min-width: 220px;
    background: transparent;
    border: 1px solid #334155;
    border-radius: var(--radius-md);
    color: #cbd5e1;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
}
.family-sites__trigger:hover {
    color: #fff;
    border-color: #475569;
}
.family-sites__trigger svg {
    width: 12px;
    height: 12px;
    transition: transform var(--t-fast);
}
.family-sites__group.open .family-sites__trigger svg {
    transform: rotate(180deg);
}

.family-sites__menu {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: var(--radius-md);
    padding: 6px;
    box-shadow: var(--shadow-lg);
}
.family-sites__menu[hidden] {
    display: none;
}
.family-sites__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 14px;
    color: #cbd5e1;
    border-radius: 4px;
}
.family-sites__menu a::after {
    content: "↗";
    color: #64748b;
    font-size: 12px;
}
.family-sites__menu a:hover {
    background: #334155;
    color: #fff;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--color-secondary);
    color: #cbd5e1;
    padding: 60px 0 40px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer__brand-text {
    font-size: 15px;
    line-height: 1.8;
    color: #94a3b8;
}
.footer__brand-text strong {
    color: #fff;
    display: block;
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer__sns {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    list-style: none;
    padding: 0;
}
.footer__sns-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform var(--t-fast),
        box-shadow var(--t-fast),
        filter var(--t-fast);
    color: #fff;
}
.footer__sns-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.45);
    filter: brightness(1.08);
}
.footer__sns-link svg {
    width: 20px;
    height: 20px;
}
.footer__sns-letter {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}
.footer__sns-link--kakao {
    background: #fee500;
    color: #3c1e1e;
}
.footer__sns-link--youtube {
    background: #ff0000;
    color: #fff;
}
.footer__sns-link--instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    color: #fff;
}
.footer__sns-link--naver {
    background: #03c75a;
    color: #fff;
}
.footer__col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
}
.footer__col ul li {
    margin-bottom: 8px;
}
.footer__col a {
    color: #94a3b8;
    transition: color var(--t-fast);
}
.footer__col a:hover {
    color: #fff;
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
}
.footer__bottom a:hover {
    color: #fff;
}
.footer__bottom strong {
    color: #cbd5e1;
}

/* =========================================================
   SUBPAGE HEADER (서브페이지 상단 타이틀)
   ========================================================= */
.subpage-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.subpage-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 15% 30%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}
.subpage-header__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.subpage-header__title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.subpage-header__desc {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
}
.subpage-header__crumb {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.subpage-header__crumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--t-fast);
}
.subpage-header__crumb a:hover {
    color: #fff;
}
.subpage-header__crumb .sep {
    margin: 0 8px;
    opacity: 0.7;
}
.subpage-header__crumb strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 640px) {
    .subpage-header {
        padding: 40px 0;
    }
    .subpage-header__title {
        font-size: 26px;
    }
}

/* =========================================================
   SUBPAGE LAYOUT (좌측 사이드네비 + 메인 콘텐츠)
   ========================================================= */
.subpage-wrap {
    padding: 60px 0 80px;
}

.subpage-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

/* 좌측 사이드 네비게이션 */
.subpage-side-nav {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + var(--util-h) + 16px);
}
.subpage-side-nav__title {
    padding: 22px 24px;
    font-size: 19px;
    font-weight: 800;
    color: var(--color-text);
    background: var(--color-bg-alt);
    border-bottom: 2px solid var(--color-primary);
}
.subpage-side-nav__list {
    padding: 8px 0;
}
.subpage-side-nav__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 15px;
    color: var(--color-text-body);
    border-left: 3px solid transparent;
    transition: all var(--t-fast);
}
.subpage-side-nav__item::after {
    content: "›";
    opacity: 0;
    color: var(--color-primary);
    font-weight: 700;
    transition:
        opacity var(--t-fast),
        transform var(--t-fast);
}
.subpage-side-nav__item:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}
.subpage-side-nav__item:hover::after {
    opacity: 1;
    transform: translateX(2px);
}
.subpage-side-nav__item.is-active {
    border-left-color: var(--color-primary);
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 700;
}
.subpage-side-nav__item.is-active::after {
    opacity: 1;
}

/* 메인 콘텐츠 영역 */
.subpage-content {
    min-width: 0;
}

.subpage-content__head {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}
.subpage-content__head h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: var(--color-text);
    letter-spacing: -0.3px;
}

.subpage-content__lead {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 32px;
    padding: 22px 26px;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    border-radius: 4px;
}

.subpage-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.subpage-content h3::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 3px;
}

.subpage-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 24px 0 10px;
    color: var(--color-text);
}

.subpage-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 14px;
}

.subpage-content ul,
.subpage-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}
.subpage-content ul li {
    list-style: disc;
    margin-bottom: 6px;
    line-height: 1.7;
}
.subpage-content ol li {
    list-style: decimal;
    margin-bottom: 6px;
    line-height: 1.7;
}

/* 정보 테이블 */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
}
.info-table th,
.info-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
    font-size: 15px;
    line-height: 1.7;
}
.info-table th {
    background: var(--color-bg-alt);
    text-align: left;
    width: 160px;
    font-weight: 700;
    color: var(--color-text);
}
.info-table td {
    color: var(--color-text-body);
}
.info-table tr:first-child th,
.info-table tr:first-child td {
    border-top: 2px solid var(--color-primary);
}
.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: 2px solid var(--color-border-strong);
}

/* 아이콘 카드 그리드 */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.icon-card {
    padding: 28px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--t-fast);
}
.icon-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.icon-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text);
}
.icon-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* 연혁 타임라인 */
.timeline {
    position: relative;
    padding-left: 24px;
    margin-top: 16px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--color-border);
}
.timeline-item {
    position: relative;
    margin-bottom: 20px;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
}
.timeline-item__year {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 17px;
}
.timeline-item__text {
    color: var(--color-text-body);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 2px;
}

/* 지도 플레이스홀더 */
.map-placeholder {
    background: var(--color-bg-muted);
    border: 2px dashed var(--color-border-strong);
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 14px;
    margin: 16px 0 24px;
}

/* CTA 박스 (사업 소개 페이지 하단) */
.cta-box {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-deep) 100%
    );
    color: #fff;
    border-radius: var(--radius-lg);
    text-align: center;
}
.cta-box h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}
.cta-box p {
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.cta-box .btn {
    background: #fff;
    color: var(--color-primary);
}
.cta-box .btn:hover {
    background: var(--color-bg-alt);
    transform: translateY(-1px);
}

/* Placeholder (콘텐츠 준비중) */
.content-placeholder {
    padding: 60px 40px;
    text-align: center;
    background: var(--color-bg-alt);
    border: 2px dashed var(--color-border-strong);
    border-radius: var(--radius-lg);
    color: var(--color-text-muted);
}
.content-placeholder h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}
.content-placeholder p {
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .subpage-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .subpage-side-nav {
        position: static;
    }
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .subpage-wrap {
        padding: 40px 0 60px;
    }
    .subpage-content__head h2 {
        font-size: 22px;
    }
    .subpage-content h3 {
        font-size: 18px;
    }
    .subpage-content p {
        font-size: 15px;
    }
    .info-table th {
        width: 110px;
        padding: 12px 14px;
        font-size: 14px;
    }
    .info-table td {
        padding: 12px 14px;
        font-size: 14px;
    }
    .icon-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FORMS
   ========================================================= */
.form-group {
    margin-bottom: 20px;
}
.form-group--last {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}
.form-label .required {
    color: var(--color-danger);
    margin-left: 3px;
}
.form-label .optional {
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 500;
    margin-left: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    background: #fff;
    color: var(--color-text);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    transition:
        border-color var(--t-fast),
        box-shadow var(--t-fast);
}
.form-textarea {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}
.form-select {
    padding-right: 36px;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--color-text-muted);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
    outline: none;
}
.form-input[aria-invalid="true"],
.form-select[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
    border-color: var(--color-danger);
}
.form-input[aria-invalid="true"]:focus,
.form-select[aria-invalid="true"]:focus,
.form-textarea[aria-invalid="true"]:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-help {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 6px;
}
.form-error {
    font-size: 13px;
    color: var(--color-danger);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: var(--color-text-body);
    user-select: none;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
}
.form-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 8px 0 2px;
}

.form-row {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}
.form-row--2 {
    grid-template-columns: 1fr 1fr;
}
.form-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.form-row > .form-group {
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 28px 0 0;
    margin-top: 32px;
    border-top: 1px solid var(--color-border);
}
.form-actions .btn {
    min-width: 160px;
}

@media (max-width: 768px) {
    .form-row--2,
    .form-row--3 {
        grid-template-columns: 1fr;
    }
    .form-actions .btn {
        min-width: 0;
        flex: 1;
    }
}

/* =========================================================
   APPLY FORM (교육 신청)
   ========================================================= */
.apply-wrap {
    max-width: 840px;
    margin: 0 auto;
    padding: 60px 0;
}

.apply-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.apply-section {
    margin-bottom: 40px;
}
.apply-section:last-child {
    margin-bottom: 0;
}

.apply-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-primary);
}
.apply-section__title-no {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

/* 개인/기업 선택 카드 */
.type-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.type-picker__option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--t-fast);
}
.type-picker__option:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-alt);
}
.type-picker__option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
}
.type-picker__option input[type="radio"]:checked + .type-picker__info {
    color: var(--color-primary);
}
.type-picker__option:has(input:checked) {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}
.type-picker__info h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}
.type-picker__info p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.type-picker__option:has(input:checked) .type-picker__info h4 {
    color: var(--color-primary);
}

@media (max-width: 640px) {
    .type-picker {
        grid-template-columns: 1fr;
    }
    .apply-card {
        padding: 24px;
    }
}

/* 기업 필드 토글 */
.corp-fields {
    display: none;
}
.corp-fields.show {
    display: block;
}

/* =========================================================
   PRIVACY BOX (개인정보 수집 동의)
   ========================================================= */
.privacy-box {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    max-height: 220px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 16px;
}
.privacy-box h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 14px 0 6px;
    color: var(--color-text);
}
.privacy-box h4:first-child {
    margin-top: 0;
}
.privacy-box p {
    margin-bottom: 8px;
}
.privacy-box ul {
    padding-left: 18px;
    margin-bottom: 8px;
}
.privacy-box ul li {
    margin-bottom: 4px;
    list-style: disc;
}

/* =========================================================
   APPLY COMPLETE (접수 완료)
   ========================================================= */
.complete-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}
.complete-icon {
    width: 96px;
    height: 96px;
    background: #d1fae5;
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}
.complete-icon svg {
    width: 52px;
    height: 52px;
}
.complete-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.complete-desc {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.complete-info {
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.complete-info__label {
    font-size: 14px;
    color: var(--color-primary-hover);
    font-weight: 500;
}
.complete-info__code {
    font-family: monospace;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary-deep);
    letter-spacing: 1px;
}
.complete-next {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-align: left;
    margin-bottom: 40px;
}
.complete-next h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}
.complete-next ol {
    padding-left: 20px;
}
.complete-next ol li {
    margin-bottom: 8px;
    list-style: decimal;
    color: var(--color-text-body);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================================
   MOBILE MENU (모바일 우측 슬라이드 메뉴)
   ========================================================= */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-overlay);
}
.mobile-menu-overlay.show {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 80vw;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    z-index: var(--z-mobile-menu);
    transform: translateX(100%);
    transition: transform var(--t-slow);
    overflow-y: auto;
}
.mobile-menu.show {
    transform: translateX(0);
}
.mobile-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}
.mobile-menu__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.mobile-menu__close:hover {
    background: var(--color-bg-muted);
}
.mobile-menu__body {
    padding: 12px 0;
}
.mobile-menu__item {
    border-bottom: 1px solid var(--color-bg-muted);
}
.mobile-menu__item > a,
.mobile-menu__item > button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
}
.mobile-menu__sub {
    padding: 0 20px 12px 32px;
    display: none;
}
.mobile-menu__item.open .mobile-menu__sub {
    display: block;
}
.mobile-menu__sub a {
    display: block;
    padding: 8px 0;
    color: var(--color-text-body);
    font-size: 14px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .nav,
    .header__search {
        display: none;
    }
    .header__menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 510px;
    }
    .hero__slide {
        padding: 40px 0 90px;
    }
    .hero__title {
        font-size: 36px;
    }
    .hero__lead {
        font-size: 16px;
    }
    .hero__cta .btn {
        padding: 13px 24px;
        font-size: 14.5px;
    }
    .hero__cta .btn--lg {
        padding: 14px 26px;
        font-size: 15px;
    }

    .quick-services {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-blocks {
        grid-template-columns: 1fr;
    }

    .schedule-row {
        grid-template-columns: 100px 1fr;
        gap: 12px;
    }
    .schedule-row > .schedule-meta,
    .schedule-row > .schedule-cta {
        grid-column: 1 / -1;
    }
    .schedule-cta {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .util-bar__left > *:nth-child(n + 3) {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stat-item__num {
        font-size: 36px;
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --header-h: 80px;
        --util-h: 0px;
    }
    .util-bar { display: none; }
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 56px 0;
    }

    .logo__text {
        font-size: 21px;
        font-weight: 800;
    }
    .logo__mark {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    .logo__text small {
        display: none;
    }

    .hero {
        min-height: 430px;
    }
    .hero__slide {
        padding: 30px 0 80px;
    }
    .hero__title {
        font-size: 28px;
    }
    .hero__kicker {
        font-size: 12px;
    }
    .hero__cta {
        gap: 8px;
    }
    .hero__cta .btn,
    .hero__cta .btn--lg {
        padding: 10px 16px;
        font-size: 13px;
    }
    .hero__visual {
        display: none;
    }
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__controls {
        bottom: 76px;
        gap: 10px;
        justify-content: center;
        padding: 0 16px;
    }
    .hero__controls .swiper-pagination-bullet {
        width: 22px !important;
    }
    .hero__controls .swiper-pagination-bullet-active {
        width: 34px !important;
    }
    .hero__pause {
        width: 30px;
        height: 30px;
    }

    .quick-services {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px;
    }
    .quick-service {
        padding: 16px 8px;
    }

    .section__title {
        font-size: 26px;
    }

    .stats-ribbon {
        padding: 32px 0;
    }
    .stat-item {
        padding: 0 8px;
        border-right: none;
    }
    .stat-item__num {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* =========================================================
   CONSULT — FAQ (아코디언 + 필터) / 1:1 문의 상세
   ========================================================= */
.faq-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 24px;
}
.faq-filter__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-body);
    transition: all var(--t-fast);
}
.faq-filter__chip:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.faq-filter__chip.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.faq-list {
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-border-strong);
    margin: 0 0 24px;
    padding: 0;
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
    list-style: none;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 15px;
    color: var(--color-text);
    cursor: pointer;
    transition: background var(--t-fast);
}
.faq-item__question:hover {
    background: var(--color-bg-alt);
}
.faq-item__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}
.faq-item__mark--a {
    background: var(--color-primary-deep);
}
.faq-item__category {
    flex-shrink: 0;
}
.faq-item__title {
    flex: 1;
    font-weight: 600;
    line-height: 1.5;
}
.faq-item__arrow {
    color: var(--color-text-muted);
    transition: transform var(--t-fast);
    flex-shrink: 0;
}
.faq-item.is-open .faq-item__arrow {
    transform: rotate(180deg);
}
.faq-item__answer {
    display: flex;
    gap: 12px;
    padding: 18px 20px 22px 60px;
    background: var(--color-bg-alt);
    color: var(--color-text-body);
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid var(--color-border);
}
.faq-item__answer .faq-item__mark {
    margin-top: -2px;
}
.faq-item__body {
    flex: 1;
    white-space: pre-wrap;
}

/* FAQ 상세 */
.faq-detail {
    margin-bottom: 32px;
}
.faq-detail__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}
.faq-detail__views {
    margin-left: auto;
    font-size: 13px;
    color: var(--color-text-muted);
}
.faq-detail__q,
.faq-detail__a {
    display: flex;
    gap: 14px;
    padding: 20px 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}
.faq-detail__q {
    background: #fff;
}
.faq-detail__a {
    background: var(--color-bg-alt);
}
.faq-detail__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--color-text);
}
.faq-detail__body {
    flex: 1;
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-body);
    white-space: pre-wrap;
}

/* Badge (서브페이지 공용) */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
}
.badge--primary {
    background: #dbeafe;
    color: #1e40af;
}
.badge--info {
    background: #e0f2fe;
    color: #0369a1;
}
.badge--success {
    background: #dcfce7;
    color: #166534;
}
.badge--warning {
    background: #fef3c7;
    color: #92400e;
}
.badge--danger {
    background: #fee2e2;
    color: #991b1b;
}
.badge--gray {
    background: #e5e7eb;
    color: #4b5563;
}

/* type-picker 그리드 확장 (1:1 문의 카테고리 선택 등) */
.type-picker--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 768px) {
    .type-picker--grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .type-picker--grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ 모바일 */
@media (max-width: 640px) {
    .faq-item__question {
        padding: 14px 14px;
        font-size: 14px;
        gap: 8px;
    }
    .faq-item__mark {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    .faq-item__answer {
        padding: 14px 14px 18px 46px;
        font-size: 14px;
    }
    .faq-item__category {
        display: none;
    }
}

/* =========================================================
   BOARD — 목록·상세·페이지네이션 공용 스타일
   ========================================================= */

/* 상단 툴바 (건수 + 검색) */
.board-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 4px 0 16px;
    flex-wrap: wrap;
}
.board-toolbar__count {
    font-size: 14px;
    color: var(--color-text-body);
}
.board-toolbar__count strong {
    color: var(--color-primary);
    font-weight: 800;
}

.board-search {
    display: flex;
    gap: 6px;
    align-items: center;
}
.board-search .form-input--sm {
    padding: 8px 12px;
    font-size: 14px;
    min-width: 220px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

/* 목록 테이블 */
.board-list {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--color-primary);
}
.board-list thead th {
    padding: 14px 12px;
    background: var(--color-bg-alt);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border-strong);
    text-align: center;
}
.board-list tbody td {
    padding: 14px 12px;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}
.board-list__num {
    width: 70px;
    text-align: center;
    color: var(--color-text-muted);
}
.board-list__title {
    text-align: left;
}
.board-list__title a {
    color: var(--color-text);
    font-weight: 500;
}
.board-list__title a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
.board-list__attach-icon {
    margin-left: 6px;
    color: var(--color-text-muted);
    vertical-align: middle;
}
.board-list__date {
    width: 110px;
    text-align: center;
    color: var(--color-text-muted);
}
.board-list__view {
    width: 80px;
    text-align: center;
    color: var(--color-text-muted);
}
.board-list__download {
    width: 140px;
    text-align: center;
}
.board-list tr.is-pinned {
    background: var(--color-bg-alt);
}
.board-list tr.is-pinned .board-list__title a {
    font-weight: 700;
}
.board-list__pin {
    display: inline-block;
    padding: 2px 8px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
}

/* 페이지네이션 */
.board-pagination {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* 상세 뷰 */
.board-view {
    margin-bottom: 32px;
}
.board-view__head {
    padding: 20px 0 18px;
    border-top: 2px solid var(--color-primary);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}
.board-view__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 10px;
    line-height: 1.5;
    padding: 0;
    border: none;
}
.board-view__title::before {
    display: none;
}
.board-view__meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.board-view__attachments {
    padding: 16px 20px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}
.board-view__attachments h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 8px;
}
.board-view__attachments ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.board-view__attachments li {
    margin: 0;
    padding: 4px 0;
}
.board-view__attachments a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-body);
    font-size: 14px;
}
.board-view__attachments a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
.board-view__attachments .file-name {
    font-weight: 600;
}
.board-view__attachments .file-size {
    font-size: 12px;
    color: var(--color-text-muted);
}

.board-view__body {
    padding: 28px 8px;
    min-height: 200px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-body);
    border-bottom: 1px solid var(--color-border-strong);
    white-space: pre-wrap;
}

/* 이전·다음 네비 */
.board-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}
.board-nav__list-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    transition: all var(--t-fast);
}
.board-nav__list-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.board-nav__prev-next {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-width: 0;
}
.board-nav__cell {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-size: 14px;
    min-width: 0;
}
.board-nav__label {
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}
.board-nav__cell a {
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.board-nav__cell a:hover {
    color: var(--color-primary);
}
.board-nav__empty {
    color: var(--color-text-muted);
    font-size: 13px;
}

/* 미디어 자료실 카드 그리드 */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 16px 0;
}
.resource-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t-fast);
    color: var(--color-text);
}
.resource-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.resource-card__thumb {
    aspect-ratio: 16/9;
    background: var(--color-bg-muted);
    position: relative;
}
.resource-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.resource-card__thumb-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}
.resource-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.resource-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.resource-card__meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--color-text-muted);
}

/* 게시판 모바일 반응형 */
@media (max-width: 768px) {
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
@media (max-width: 640px) {
    .board-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }
    .board-search {
        width: 100%;
    }
    .board-search .form-input--sm {
        flex: 1;
        min-width: 0;
    }

    .board-list thead {
        display: none;
    }
    .board-list,
    .board-list tbody,
    .board-list tr,
    .board-list td {
        display: block;
        width: 100%;
    }
    .board-list tr {
        padding: 12px 10px;
        border-bottom: 1px solid var(--color-border);
    }
    .board-list td {
        border: none;
        padding: 2px 0;
        text-align: left;
        font-size: 13px;
    }
    .board-list__num,
    .board-list__date,
    .board-list__view {
        display: inline-block;
        color: var(--color-text-muted);
        font-size: 12px;
    }
    .board-list__num {
        margin-right: 10px;
    }
    .board-list__title a {
        font-size: 15px;
        font-weight: 600;
    }

    .board-view__title {
        font-size: 18px;
    }
    .board-view__meta {
        gap: 10px;
        font-size: 12px;
    }

    .board-nav__prev-next {
        grid-template-columns: 1fr;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ADMIN-SHARED — 첨부파일 리스트 (폼 내)
   ========================================================= */
.attachment-list {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-alt);
    padding: 4px 0;
    list-style: none;
}
.attachment-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}
.attachment-list__item:last-child {
    border-bottom: none;
}
.attachment-list__size {
    color: var(--color-text-muted);
    font-size: 12px;
}
.attachment-list__remove {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--color-text-muted);
}
.attachment-list__remove input:checked ~ span {
    color: var(--color-danger, #b91c1c);
    font-weight: 700;
}

/* =========================================================
   HOME — 3열 위젯 (공지사항 / 센터일정 / 콘텐츠) (B안 참고)
   ========================================================= */
.three-col__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.three-col__grid > * {
    min-width: 0;
}

.tri-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.tri-head__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
    margin: 0;
}
.tri-head__more {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text-muted);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    background: #fff;
    transition:
        border-color var(--t-fast),
        color var(--t-fast);
}
.tri-head__more:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* 좌측: 공지 보드 (B안 스타일) */
.notice-board--b2 {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 4px 0 12px;
    min-height: 360px;
}
.notice-board--b2 .notice-tabs {
    display: flex;
    gap: 0;
    padding: 10px 16px 0;
    background: transparent;
    border-bottom: 1px solid var(--color-border);
}
.notice-board--b2 .notice-tab.is-active {
    background: transparent;
}
.notice-board--b2 .notice-tab.is-active::after {
    display: none;
}
.notice-board--b2 .notice-tab {
    padding: 8px 14px 10px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition:
        color var(--t-fast),
        border-color var(--t-fast);
}
.notice-board--b2 .notice-tab:hover {
    color: var(--color-primary);
}
.notice-board--b2 .notice-tab.is-active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.notice-board--b2 .notice-panels {
    padding: 10px 16px;
}
.notice-board--b2 .notice-panel {
    display: none;
}
.notice-board--b2 .notice-panel.is-active {
    display: block;
}
.notice-board--b2 .notice-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.notice-board--b2 .notice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 4px;
    border-bottom: 1px dashed var(--color-border);
    font-size: 14px;
    min-width: 0;
}
.notice-board--b2 .notice-item:last-child {
    border-bottom: none;
}

.notice-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}
.notice-dot--new {
    background: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.notice-board--b2 .notice-item__title {
    flex: 1;
    min-width: 0;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.notice-board--b2 .notice-item__title:hover {
    color: var(--color-primary);
}
.notice-board--b2 .notice-item__date {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--color-text-light);
}
.notice-board--b2 .notice-item--empty .notice-item__title {
    color: var(--color-text-light);
}

/* 중앙: 센터일정 (녹색 배너) */
.calendar-banner {
    display: block;
    position: relative;
    padding: 26px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    color: #fff;
    min-height: 360px;
    overflow: hidden;
}
.calendar-banner__label {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.calendar-banner__title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 10px;
    color: #fff;
}
.calendar-banner__desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}
.calendar-banner__cta {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.calendar-banner__illust {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 80px;
    height: 80px;
    opacity: 0.9;
}

/* 우측: 콘텐츠 (노란 배너) */
.content-banner {
    display: block;
    position: relative;
    padding: 26px 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    color: #fff;
    min-height: 360px;
    overflow: hidden;
}
.content-banner__tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.content-banner__title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 10px;
    color: #fff;
}
.content-banner__desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}
.content-banner__cta {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 7px 16px;
    background: #fff;
    color: #b45309;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}
.content-banner__illust {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 74px;
    height: 74px;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .three-col__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .three-col .tri-notice {
        grid-column: 1 / -1;
    }
    .notice-board--b2 {
        min-height: auto;
    }
    .calendar-banner,
    .content-banner {
        min-height: 260px;
        padding: 22px 20px;
    }
    .calendar-banner__title,
    .content-banner__title {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .three-col__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .three-col .tri-notice {
        grid-column: auto;
    }
    .tri-head {
        margin-bottom: 10px;
    }
    .tri-head__title {
        font-size: 18px;
    }
    .tri-head__more {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }

    .notice-board--b2 {
        min-height: auto;
        padding-bottom: 8px;
    }
    .notice-board--b2 .notice-tabs {
        padding: 8px 12px 0;
    }
    .notice-board--b2 .notice-tab {
        padding: 7px 10px 9px;
        font-size: 13px;
    }
    .notice-board--b2 .notice-panels {
        padding: 6px 12px;
    }
    .notice-board--b2 .notice-item {
        padding: 10px 2px;
        font-size: 13px;
        gap: 8px;
    }
    .notice-board--b2 .notice-item__date {
        font-size: 11px;
    }

    .calendar-banner,
    .content-banner {
        min-height: 200px;
        padding: 20px 18px;
    }
    .calendar-banner__title,
    .content-banner__title {
        font-size: 18px;
    }
    .calendar-banner__desc,
    .content-banner__desc {
        font-size: 12.5px;
    }
    .calendar-banner__illust {
        width: 64px;
        height: 64px;
        bottom: 14px;
        right: 14px;
    }
    .content-banner__illust {
        width: 60px;
        height: 60px;
        bottom: 14px;
        right: 14px;
    }
    .calendar-banner__cta {
        bottom: 18px;
        left: 18px;
        font-size: 12px;
    }
    .content-banner__cta {
        bottom: 18px;
        left: 18px;
        padding: 6px 14px;
        font-size: 11.5px;
    }
}
@media (max-width: 480px) {
    .notice-board--b2 .notice-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .notice-board--b2 .notice-tabs::-webkit-scrollbar {
        display: none;
    }
    .notice-board--b2 .notice-tab {
        flex: 0 0 auto;
    }
    .calendar-banner,
    .content-banner {
        min-height: 180px;
    }
}

/* =========================================================
   HOME — 신청 가능 프로그램 카드 4개 (B안 참고)
   ========================================================= */
.program-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.program-card2 {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    color: var(--color-text);
}
.program-card2:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}
.program-card2__thumb {
    aspect-ratio: 16/10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}
.program-card2__thumb--illust-safety::after {
    content: "🛡️";
}
.program-card2__thumb--illust-construction {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}
.program-card2__thumb--illust-construction::after {
    content: "🏗️";
}
.program-card2__thumb--illust-law {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}
.program-card2__thumb--illust-law::after {
    content: "⚖️";
}
.program-card2__thumb--illust-chemical {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}
.program-card2__thumb--illust-chemical::after {
    content: "🧪";
}

.program-card2__status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 1;
}
.program-card2__status--on {
    background: #dc2626;
    color: #fff;
}
.program-card2__status--soon {
    background: #6b7280;
    color: #fff;
}

.program-card2__body {
    padding: 16px 18px 18px;
}
.program-card2__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
}
.program-card2__meta {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 12px;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .program-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .program-strip__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HOME — 상담 3종 수평 카드 (B안 참고)
   ========================================================= */
.consult-strip__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}
.consult-strip__cell {
    background: #fff;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.consult-strip__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    flex-shrink: 0;
}
.consult-strip__label svg {
    color: var(--color-primary);
}
.consult-strip__number {
    flex: 1;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.3px;
    min-width: 150px;
}
.consult-strip__number--sm {
    font-size: 15px;
}
.consult-strip__btn {
    padding: 8px 18px;
    border: 1.5px solid var(--color-primary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    background: #fff;
    transition:
        background var(--t-fast),
        color var(--t-fast);
    flex-shrink: 0;
}
.consult-strip__btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.consult-strip__hours {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 16px 20px;
    margin-top: 14px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-bg-alt);
    font-size: 14px;
    color: var(--color-text);
    flex-wrap: wrap;
}
.consult-strip__hours strong {
    color: var(--color-primary);
    font-weight: 800;
}
.consult-strip__hours-sub {
    color: var(--color-text-muted);
    font-size: 13px;
}
.consult-strip__hours svg {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .consult-strip__row {
        grid-template-columns: 1fr;
    }
    .consult-strip__cell {
        padding: 18px 20px;
    }
}
@media (max-width: 480px) {
    .consult-strip__cell {
        flex-wrap: wrap;
    }
    .consult-strip__number {
        min-width: 100%;
        font-size: 20px;
    }
}
