/**
 * 2026 리뉴얼 공통 스타일 (메인/서브 페이지 공용)
 * 포함: page wrap 오버라이드, header_2026, footer_2026, section_head
 */

/* ===== 2026 page wrap 오버라이드 ===== */
.page_2026 {
    background: #fff;
}

#wrap.page_2026 {
    padding-top: 0 !important;
    max-width: none !important;
    width: 100% !important;
    overflow: visible !important;
}

/* ===== 2026 헤더 ===== */
.header_2026 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
    z-index: 1000;
}

.header_2026.scrolled {
    background: rgba(15, 23, 42, 0.92);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
    border-color: transparent;
}

.header_2026 .hdr_container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.header_2026 .hdr_logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header_2026 .hdr_logo img {
    height: 34px;
    filter: brightness(0) invert(1);
}

.header_2026 .hdr_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.header_2026 .hdr_nav a {
    position: relative;
    padding: 12px 22px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color .2s;
}

.header_2026 .hdr_nav a::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 4px;
    height: 2px;
    background: #05c2ae;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.header_2026 .hdr_nav a:hover {
    color: #a8e063;
}

.header_2026 .hdr_nav a:hover::after {
    transform: scaleX(1);
}

.header_2026 .hdr_utils {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header_2026 .util_link {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    transition: color .2s;
}

.header_2026 .util_link:hover {
    color: #fff;
}

.header_2026 .util_divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
}

.header_2026 .util_lang {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.header_2026 .util_lang_btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 4px;
    cursor: pointer;
    height: 32px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header_2026 .util_lang_btn .caret {
    font-size: 10px;
    opacity: .8;
    transition: transform .2s;
}

.header_2026 .util_lang.open .util_lang_btn .caret {
    transform: rotate(180deg);
}

.header_2026 .util_lang_menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    list-style: none;
    padding: 8px 0;
    min-width: 140px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 10;
}

.header_2026 .util_lang.open .util_lang_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header_2026 .util_lang_menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    color: #334155;
    font-size: 13px;
    text-decoration: none;
}

.header_2026 .util_lang_menu a:hover {
    background: #f1f5f9;
    color: #05c2ae;
}

.header_2026 .util_lang_menu a.on {
    color: #05c2ae;
    font-weight: 700;
}

.header_2026 .util_lang_menu a .wip {
    font-size: 10px;
    color: #94a3b8;
    padding: 2px 6px;
    background: #f1f5f9;
    border-radius: 4px;
}

.header_2026 .util_btn {
    padding: 9px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background .2s, color .2s, transform .2s;
}

.header_2026 .util_btn.login {
    background: #05c2ae;
    color: #fff;
}

.header_2026 .util_btn.login:hover {
    background: #0a8e7e;
    transform: translateY(-1px);
}

.header_2026 .util_btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.header_2026 .util_btn.ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.header_2026 .util_icon {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: none;
    /* PC 에선 숨김 — 메인 내비/메가메뉴로 충분 */
    align-items: center;
    justify-content: center;
    transition: background .2s;
    border-radius: 8px;
}

.header_2026 .util_icon:hover {
    background: rgba(255, 255, 255, 0.12);
}

.header_2026 .util_icon .menu_btn {
    position: relative;
    display: block;
    width: 20px;
    height: 14px;
}

.header_2026 .util_icon .menu_btn span,
.header_2026 .util_icon .menu_btn .line-top,
.header_2026 .util_icon .menu_btn .line-middle,
.header_2026 .util_icon .menu_btn .line-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff !important;
    border-radius: 1px;
    transition: transform .2s, opacity .2s;
}

.header_2026 .util_icon .menu_btn .line-top {
    top: 0;
}

.header_2026 .util_icon .menu_btn .line-middle {
    top: 6px;
}

.header_2026 .util_icon .menu_btn .line-bottom {
    top: 12px;
}

/* 메가메뉴 - hover 시 등장 (mega-menu-new.css의 !important 방어용) */
.header_2026 .mega-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    border-top: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-6px) !important;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease !important;
    z-index: 999 !important;
}

.header_2026:has(.hdr_nav:hover) .mega-menu,
.header_2026 .mega-menu:hover,
.header_2026.open .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.header_2026 .mega-menu-container {
    max-width: 1560px !important;
    margin: 0 auto !important;
    padding: 36px 32px 44px !important;
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 30px !important;
}

.header_2026 .mega-menu-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #05c2ae;
}

.header_2026 .mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_2026 .mega-menu-column li {
    padding: 6px 0;
}

.header_2026 .mega-menu-column a {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    transition: color .15s;
}

.header_2026 .mega-menu-column a:hover {
    color: #05c2ae;
}

/* ===== 섹션 헤더 (eyebrow + title + sub) ===== */
.section_head {
    text-align: center;
    margin-bottom: 50px;
}

.section_head .eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    color: #05c2ae;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section_head .eyebrow::before,
.section_head .eyebrow::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #05c2ae;
    vertical-align: middle;
    margin: 0 12px;
}

.section_head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -.02em;
}

.section_head p.sub {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ===== 다크 푸터 ===== */
.footer_2026 {
    position: relative;
    background: #0f172a;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

.footer_2026 .ft_links {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_2026 .ft_inner {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

.footer_2026 .ft_links .ft_inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.footer_2026 .ft_dropdown {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_2026 .ft_dropdown:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_2026 .ft_dd_btn {
    width: 100%;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.footer_2026 .ft_dd_btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.footer_2026 .ft_dd_btn .caret {
    color: #64748b;
    transition: transform .2s, color .2s;
}

.footer_2026 .ft_dropdown.open .ft_dd_btn .caret {
    transform: rotate(180deg);
    color: #05c2ae;
}

.footer_2026 .ft_dropdown.open .ft_dd_btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.footer_2026 .ft_dd_menu {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    max-height: 260px;
    overflow-y: auto;
}

.footer_2026 .ft_dropdown.open .ft_dd_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer_2026 .ft_dd_menu li a {
    display: block;
    padding: 10px 24px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    transition: background .15s, color .15s;
}

.footer_2026 .ft_dd_menu li a:hover {
    background: rgba(5, 194, 174, 0.12);
    color: #05c2ae;
}

.footer_2026 .ft_main {
    padding: 48px 0 52px;
}

.footer_2026 .ft_main .ft_inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

.footer_2026 .ft_logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
    margin-bottom: 16px;
}

.footer_2026 .ft_slogan {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    letter-spacing: -.01em;
}

.footer_2026 .ft_policy {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_2026 .ft_policy li {
    position: relative;
}

.footer_2026 .ft_policy li+li::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.footer_2026 .ft_policy a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color .15s;
}

.footer_2026 .ft_policy a:hover {
    color: #05c2ae;
}

.footer_2026 .ft_policy a.highlight {
    color: #05c2ae;
    font-weight: 700;
}

.footer_2026 address {
    font-style: normal;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.footer_2026 address b {
    color: #e2e8f0;
    font-weight: 600;
}

.footer_2026 address .sep {
    display: inline-block;
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.18);
    margin: 0 10px;
    vertical-align: middle;
}

.footer_2026 .ft_copy {
    color: #64748b;
    font-size: 12px;
    letter-spacing: 0.3px;
    margin: 0;
    text-transform: uppercase;
}

.footer_2026 .ft_gotop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #05c2ae;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(5, 194, 174, 0.4);
    transition: transform .2s, background .2s;
    opacity: 0;
    visibility: hidden;
    z-index: 900;
}

.footer_2026 .ft_gotop.show {
    opacity: 1;
    visibility: visible;
}

.footer_2026 .ft_gotop:hover {
    background: #0a8e7e;
    transform: translateY(-3px);
}

/* ===== 반응형 (헤더/푸터) ===== */
@media (max-width: 1180px) {
    .header_2026 .hdr_container {
        gap: 18px;
        padding: 0 20px;
    }

    .header_2026 .hdr_nav a {
        padding: 12px 14px;
        font-size: 15px;
    }

    .header_2026 .util_link {
        display: none;
    }

    .header_2026 .util_divider {
        display: none;
    }
}

@media (max-width: 1024px) {
    .section_head h2 {
        font-size: 30px;
    }

    .footer_2026 .ft_links .ft_inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_2026 .ft_dropdown {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer_2026 .ft_dropdown:first-child {
        border-left: none;
    }

    .footer_2026 .ft_dropdown:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer_2026 .ft_main .ft_inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .header_2026 .hdr_container {
        height: 64px;
        grid-template-columns: auto 1fr;
        padding: 0 6px 0 16px;
        /* 모바일은 [로고, 햄버거] 2열만 필요. hdr_nav는 display:none 이므로 제외 */
    }

    .header_2026 .hdr_utils {
        justify-self: end;
        margin-right: -6px;
        /* 1fr 2번째 컬럼 안에서 우측 끝으로 정렬 */
    }

    .header_2026 .hdr_nav {
        display: none;
    }

    .header_2026 .hdr_logo img {
        height: 28px;
    }

    .header_2026 .util_lang {
        display: none;
    }

    .header_2026 .util_btn.ghost {
        display: none;
    }

    .header_2026 .util_icon {
        display: inline-flex;
    }

    /* 모바일에서만 햄버거 노출 */
}

@media (max-width: 768px) {
    .section_head {
        margin-bottom: 32px;
    }

    .section_head h2 {
        font-size: 24px;
    }

    .footer_2026 .ft_inner {
        padding: 0 16px;
    }

    .footer_2026 .ft_links .ft_inner {
        grid-template-columns: 1fr;
    }

    .footer_2026 .ft_dropdown,
    .footer_2026 .ft_dropdown:nth-child(odd) {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer_2026 .ft_dd_btn {
        padding: 16px 20px;
        font-size: 13px;
    }

    .footer_2026 .ft_main {
        padding: 36px 0 40px;
    }

    .footer_2026 .ft_policy {
        gap: 0 16px;
    }

    .footer_2026 .ft_policy li+li::before {
        left: -9px;
    }

    .footer_2026 address .sep {
        display: none;
    }

    .footer_2026 address span {
        display: inline-block;
        margin-right: 10px;
    }
}

/* ============================================================
   사이드 메뉴 2026 (slide_menu_2026)
   - layout.css 의 다크 테마 .slide_menu_wrap 오버라이드
   ============================================================ */
.slide_menu_2026 {
    width: 88% !important;
    max-width: 420px !important;
    background: #fff !important;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18) !important;
}

.slide_menu_2026 .slide_menu_inner {
    background: #fff !important;
    padding: 0 !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
}

/* 상단 — 로고 + 닫기 */
.slide_menu_2026 .sm_top {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #eef2f7;
}

.slide_menu_2026 .sm_logo img {
    height: 30px;
    width: auto;
    display: block;
}

.slide_menu_2026 .sm_close {
    position: static !important;
    margin: 0 auto !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s;
}

.slide_menu_2026 .sm_close:hover {
    background: #e2e8f0;
}

.slide_menu_2026 .sm_close_ico {
    position: relative;
    width: 16px;
    height: 16px;
    display: block;
}

.slide_menu_2026 .sm_close_ico::before,
.slide_menu_2026 .sm_close_ico::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
}

.slide_menu_2026 .sm_close_ico::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.slide_menu_2026 .sm_close_ico::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* 로그인/조인 버튼 영역 */
.slide_menu_2026 .sm_account {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 18px 22px 14px;
}

.slide_menu_2026 .sm_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
}

.slide_menu_2026 .sm_btn.primary {
    background: linear-gradient(135deg, #05c2ae, #0a8e7e);
    color: #fff;
    box-shadow: 0 4px 12px rgba(5, 194, 174, 0.28);
}

.slide_menu_2026 .sm_btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(5, 194, 174, 0.36);
}

.slide_menu_2026 .sm_btn.ghost {
    background: transparent;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.slide_menu_2026 .sm_btn.ghost:hover {
    border-color: #05c2ae;
    color: #05c2ae;
}

/* 언어 선택 — 세그먼트 토글 */
.slide_menu_2026 .sm_lang {
    flex: 0 0 auto;
    margin: 0 22px 18px;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 999px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.slide_menu_2026 .sm_lang_btn {
    height: 34px;
    border: none;
    background: transparent;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #64748b;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.slide_menu_2026 .sm_lang_btn.on {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.slide_menu_2026 .sm_lang_btn:not(.on):hover {
    color: #0f172a;
}

/* 메인 메뉴 영역 */
.slide_menu_2026 .sm_nav {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 12px 24px;
    border-top: 1px solid #eef2f7;
}

/* gnb 다크 테마 오버라이드 (layout.css 우선순위 차단) */
.slide_menu_2026 .gnb {
    background: transparent;
}

.slide_menu_2026 .gnb > ul {
    padding: 0;
    margin: 0;
}

.slide_menu_2026 .gnb > ul > li {
    border-bottom: 1px solid #f1f5f9 !important;
    transform: none !important;
    transition: none !important;
}

.slide_menu_2026 .gnb > ul > li:last-child {
    border-bottom: none !important;
}

.slide_menu_2026 .gnb > ul > li > a {
    background: none !important;
    color: #0f172a !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 16px 12px !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: relative;
    text-decoration: none;
    transition: color .15s, background .15s;
}

.slide_menu_2026 .gnb > ul > li > a:hover {
    color: #05c2ae !important;
    background: #f8fafc !important;
    border-radius: 10px;
}

/* 플러스/마이너스 토글 아이콘 (CSS-only, 기존 png 대체) */
.slide_menu_2026 .gnb > ul > li > a::after {
    content: "";
    width: 14px;
    height: 14px;
    background-image:
        linear-gradient(#94a3b8, #94a3b8),
        linear-gradient(#94a3b8, #94a3b8);
    background-position: center, center;
    background-size: 14px 2px, 2px 14px;
    background-repeat: no-repeat;
    transition: transform .25s ease, background-size .25s ease;
}

.slide_menu_2026 .gnb > ul > li > a.on::after {
    background-size: 14px 2px, 0 0;
    transform: rotate(180deg);
}

.slide_menu_2026 .gnb > ul > li > a.on {
    color: #05c2ae !important;
    background: #ecfdf9 !important;
    border-radius: 10px;
}

/* 서브 메뉴 */
.slide_menu_2026 .gnb .sub_menu {
    background: transparent !important;
    border: none !important;
    padding: 4px 0 12px !important;
    list-style: none;
    margin: 0;
}

.slide_menu_2026 .gnb .sub_menu > li > a {
    padding: 10px 14px 10px 24px !important;
    color: #475569 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    text-decoration: none;
    display: block;
    border-radius: 8px;
    transition: color .15s, background .15s;
}

.slide_menu_2026 .gnb .sub_menu > li > a:hover {
    color: #05c2ae !important;
    background: #f8fafc !important;
}

.slide_menu_2026 .gnb .sub_menu > li > a::before {
    display: none !important;
}

/* 하단 부가 링크 */
.slide_menu_2026 .sm_foot {
    flex: 0 0 auto;
    border-top: 1px solid #eef2f7;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #94a3b8;
    font-size: 12px;
    background: #fafbfc;
}

.slide_menu_2026 .sm_foot a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .5px;
    transition: color .15s;
}

.slide_menu_2026 .sm_foot a:hover {
    color: #05c2ae;
}

.slide_menu_2026 .sm_foot_div {
    width: 1px;
    height: 12px;
    background: #cbd5e1;
}

/* ============================================================
   서브페이지 공통 (sub_content_2026 / title_bar_2026)
   ============================================================ */
.sub_content_2026 {
    padding: 80px 0 100px;
    background: #fff;
}

.sub_content_2026 .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

.sub_content_2026 .title_bar_2026 {
    text-align: center;
    margin-bottom: 50px;
}

.sub_content_2026 .title_bar_2026 .eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    color: #05c2ae;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.sub_content_2026 .title_bar_2026 .eyebrow::before,
.sub_content_2026 .title_bar_2026 .eyebrow::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #05c2ae;
    vertical-align: middle;
    margin: 0 12px;
}

.sub_content_2026 .title_bar_2026 h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -.02em;
}

/* ============================================================
   서브페이지 공통 컴포넌트 (lead, tabs, table, gallery)
   ============================================================ */
.lead_card_2026 {
    background: linear-gradient(135deg, rgba(5,194,174,0.08), rgba(168,224,99,0.08));
    border: 1px solid rgba(5,194,174,0.18);
    border-left: 4px solid #05c2ae;
    padding: 24px 28px;
    border-radius: 12px;
    margin-bottom: 36px;
}
.lead_card_2026 p {
    margin: 0;
    font-size: 16px; line-height: 1.7; color: #0f172a;
    font-weight: 500; word-break: keep-all;
}

/* 서브 탭 (페이지 내부 전환) */
.tabs_2026 {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 32px;
}
.tabs_2026 a {
    display: inline-flex; align-items: center;
    padding: 11px 22px; border-radius: 50px;
    border: 1px solid #e2e8f0; background: #fff;
    color: #475569;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
    letter-spacing: -.01em;
}
.tabs_2026 a:hover {
    border-color: #05c2ae; color: #05c2ae;
}
.tabs_2026 a.on {
    background: linear-gradient(135deg, #05c2ae, #0a8e7e);
    color: #fff; border-color: transparent;
    box-shadow: 0 6px 16px rgba(5,194,174,0.32);
}

/* 섹션 제목 (서브페이지 내부 H3) */
.section_title_2026 {
    font-size: 22px; font-weight: 800; color: #0f172a;
    letter-spacing: -.02em; margin: 40px 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #05c2ae;
    display: flex; align-items: center; gap: 10px;
}
.section_title_2026::before {
    content: ""; display: inline-block;
    width: 6px; height: 22px; border-radius: 3px;
    background: linear-gradient(180deg, #05c2ae, #0a8e7e);
}

/* 모던 테이블 */
.table_2026 {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
    margin-bottom: 24px;
}
.table_2026 table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.table_2026 thead th {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: #0f172a;
    font-weight: 700;
    padding: 14px 16px;
    text-align: center;
    border-bottom: 2px solid #05c2ae;
    font-size: 13px;
    letter-spacing: .3px;
    white-space: nowrap;
}
.table_2026 tbody th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #eef2f7;
    border-right: 1px solid #eef2f7;
    font-size: 14px;
    white-space: nowrap;
}
.table_2026 tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #eef2f7;
    color: #334155;
    text-align: center;
    word-break: keep-all;
    line-height: 1.5;
}
.table_2026 tbody td.subject {
    text-align: left;
}
.table_2026 tbody tr:hover td,
.table_2026 tbody tr:hover th {
    background: rgba(5,194,174,0.04);
}
.table_2026 tbody tr:last-child td,
.table_2026 tbody tr:last-child th {
    border-bottom: none;
}
.table_2026 tbody td img {
    max-width: 100%; height: auto; display: block; margin: 0 auto;
    border-radius: 8px;
}
.table_2026 ul.bul01 {
    list-style: none; padding: 0; margin: 0;
    text-align: left;
}
.table_2026 ul.bul01 li {
    position: relative;
    padding: 4px 0 4px 14px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}
.table_2026 ul.bul01 li::before {
    content: ""; position: absolute; left: 0; top: 13px;
    width: 5px; height: 5px; border-radius: 50%;
    background: #05c2ae;
}

/* 이미지 갤러리 */
.gallery_2026 {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
    margin-bottom: 36px;
    list-style: none; padding: 0;
}
.gallery_2026 li {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}
.gallery_2026 li img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .4s ease;
}
.gallery_2026 li:hover img { transform: scale(1.06); }

@media (max-width: 1024px) {
    .gallery_2026 { grid-template-columns: repeat(3, 1fr); }
    .table_2026 table { font-size: 13px; }
}
@media (max-width: 768px) {
    .lead_card_2026 { padding: 18px 20px; }
    .lead_card_2026 p { font-size: 14px; }
    .tabs_2026 a { padding: 9px 18px; font-size: 13px; }
    .section_title_2026 { font-size: 18px; margin: 28px 0 14px; }
    .gallery_2026 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .table_2026 thead th { padding: 10px 8px; font-size: 12px; }
    .table_2026 tbody th { padding: 10px 8px; font-size: 12px; }
    .table_2026 tbody td { padding: 10px 8px; font-size: 12px; }
}

/* 서브페이지 모바일 공통 */
@media (max-width: 1024px) {
    .sub_content_2026 {
        padding: 60px 0 80px;
    }
    .sub_content_2026 .title_bar_2026 h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .sub_content_2026 {
        padding: 40px 0 60px;
    }
    .sub_content_2026 .inner {
        padding: 0 16px;
    }
    .sub_content_2026 .title_bar_2026 {
        margin-bottom: 28px;
    }
    .sub_content_2026 .title_bar_2026 h2 {
        font-size: 22px;
    }
    .sub_content_2026 .title_bar_2026 .eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
    .sub_content_2026 .title_bar_2026 .eyebrow::before,
    .sub_content_2026 .title_bar_2026 .eyebrow::after {
        width: 18px;
        margin: 0 8px;
    }
}