/*
 * 파일명 : common.css
 * 설명   : 공통 스타일 (fonts / header / footer)
 * 작성자 : 이주연
 * 작성일 : 2026-08-05
 */

/* ---- Font ---- */
@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-display: swap;
    src: local('Pretendard Bold'), url(../../fonts/Pretendard/Pretendard-Bold.woff2) format('woff2'), url(../../fonts/Pretendard/Pretendard-Bold.woff) format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-display: swap;
    src: local('Pretendard SemiBold'), url(../../fonts/Pretendard/Pretendard-SemiBold.woff2) format('woff2'), url(../../fonts/Pretendard/Pretendard-SemiBold.woff) format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-display: swap;
    src: local('Pretendard Medium'), url(../../fonts/Pretendard/Pretendard-Medium.woff2) format('woff2'), url(../../fonts/Pretendard/Pretendard-Medium.woff) format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-display: swap;
    src: local('Pretendard Regular'), url(../../fonts/Pretendard/Pretendard-Regular.woff2) format('woff2'), url(../../fonts/Pretendard/Pretendard-Regular.woff) format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-display: swap;
    src: local('Pretendard Light'), url(../../fonts/Pretendard/Pretendard-Light.woff2) format('woff2'), url(../../fonts/Pretendard/Pretendard-Light.woff) format('woff');
}

html, html *, body {
    font-family: 'Pretendard', 'Malgun Gothic', 'Nanum Gothic', sans-serif;
}

/* ---- variables ---- */
:root {
    --d26-primary: #5670f6;
    --d26-primary-dark: #00199c;
    --d26-text: #000;
    --d26-border: #d6dae7;
    --d26-bg-soft: #f5f7f9;
    --d26-header-h: 84px;
}

/* ---- Common ---- */
.container {
    width: auto;
    max-width: 1200px;
}

body.d26-no-scroll {
    overflow: hidden;
}

a, button {
    border: 0;
    cursor: pointer;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

/* ---- Icons ---- */
.ico {
    display: inline-block;
    background-size: cover;
}

.ico-global-search {
    width: 19px;
    height: 18px;
    background-image: url(../img/common/ico-global-search.svg);
}

.ico-mypage {
    width: 16px;
    height: 16px;
    background-image: url(../img/common/ico-mypage.svg);
}

.ico-lock {
    width: 15px;
    height: 18px;
    background-image: url(../img/common/ico-lock.svg);
}

.ico-unlock {
    width: 15px;
    height: 18px;
    background-image: url(../img/common/ico-unlock.svg);
}

.ico-user {
    width: 16px;
    height: 16px;
    background-image: url(../img/common/ico-user.svg);
}

.ico-center {
    width: 21px;
    height: 22px;
    background-image: url(../img/common/ico-center.png);
}

.ico-info {
    width: 14.3px;
    height: 16px;
    background-image: url(../img/common/ico-document.svg);
}

.ico-top-btn {
    width: 10px;
    height: 6px;
    background-image: url(../img/common/ico-top-btn.png);
}

.ico-all-menu-close {
    width: 20px;
    height: 20px;
    background-image: url(../img/common/ico-all-menu-close.png);
}

/* ---- Header ---- */
.d26-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
}

#contents,
#d26Gnb {
    scroll-margin-top: var(--d26-header-h);
}

#contents:focus,
#d26Gnb:focus {
    outline: none;
}

.d26-header a {
    color: inherit;
    text-decoration: none;
}

.d26-header a:focus {
    outline-offset: -2px;
}

.d26-skip-nav a {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: var(--d26-primary-dark);
    z-index: 200;
}

.d26-skip-nav a:focus {
    top: 0;
}

/* ---- 상단 유틸 바 ---- */
.d26-topbar {
    background: #fff;
    border-bottom: 1px solid #dadada;
}

.d26-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0 15px 15px;
}

.d26-topbar-links {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.d26-topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 3px 4px 3px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--d26-text);
    background: var(--d26-bg-soft);
    border: 1px solid transparent;
    border-radius: 16px;
}

.d26-topbar-links li:nth-child(1) a {
    background: #dfe6f9;
    color: #000;
}

.d26-topbar-links li:nth-child(2) a {
    background: #d7ecf1;
    color: #468e94;
}

.d26-topbar-links li:nth-child(3) a {
    background: #d3e5f6;
    color: #205ac9;
}

.d26-topbar-links a::after {
    content: '';
    background-image: url(../img/common/ico-topbar-link.png);
    background-size: cover;
    width: 24px;
    height: 24px;
}

.d26-topbar-links a:hover {
    color: var(--d26-primary);
    border-color: var(--d26-primary);
}

.d26-topbar-mobile-links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.d26-topbar-mobile-pill {
    display: flex;
    align-items: center;
    color: #fff;
}

.d26-topbar-mobile-pill a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
}

.d26-topbar-mobile-pill .d26-topbar-mobile-border {
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 2px 20px;
}

.d26-topbar-mobile-pill-group a + a {
    position: relative;
}

.d26-topbar-mobile-pill-group a:first-child {
    margin-left: 14px;
    margin-right: 14px;
}

.d26-topbar-mobile-pill-group a:last-child {
    margin-left: 14px;
}

.d26-topbar-mobile-pill-group a + a::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 12px;
    background: #fff;
}

.d26-topbar-mobile-links a {
    color: inherit;
}

/* ---- 로고 / 검색 / 퀵링크 ---- */
.d26-headmain {
    position: relative;
}

.d26-headmain-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.d26-headmain-inner h1 {
    margin: 0;
}

.d26-logo {
    display: block;
}

.d26-logo img {
    display: block;
    height: 44px;
}

.d26-search {
    flex: 1;
    max-width: 460px;
    position: relative;
}

.d26-header .d26-search input {
    width: 100%;
    height: 46px;
    line-height: 42px;
    padding: 0 55px 0 25px;
    border: 3px solid var(--d26-primary);
    border-radius: 23px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
}

.d26-header .d26-search input:focus,
.d26-header .d26-search input:focus-visible {
    outline: none;
    border: 5px solid #2F48C7;
}

.d26-header .d26-search input::placeholder {
    color: #a6a6a6;
}

.d26-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.d26-quicklink {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--d26-text);
    white-space: nowrap;
}

.d26-quicklink[data-auth="member"] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    white-space: nowrap;
}

.d26-logout-timer {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -.75px;
    color: var(--d26-text);
}

.d26-logout-timer.is-visible {
    display: flex;
}

.d26-logout-timer::before {
    content: '';
    width: 16px;
    height: 16px;
    background-size: cover;
    background-image: url(../img/common/ico-timer.svg);
}

.d26-logout-timer strong {
    color: var(--d26-primary);
    font-weight: 700;
}

.d26-quicklink[data-auth="member"] ul {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: var(--d26-text);
}

.d26-quicklink a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.d26-quicklink .name {
    color: var(--d26-primary);
}

/* ---- GNB ---- */
.d26-gnb {
    /*border-top: 1px solid var(--d26-border);*/
    border-bottom: 1px solid var(--d26-border);
    position: relative;
}

.d26-gnb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 15px;
    display: flex;
    align-items: center;
}

.d26-gnb-all-toggle {
    display: flex;
    align-items: center;
    gap: 9px;
    height: 80px;
    border: none;
    background: none;
    font-size: 22px;
    font-weight: 700;
    color: var(--d26-primary);
    cursor: pointer;
    margin-right: 120px;
}

.d26-gnb-all-icon {
    position: relative;
    width: 19px;
    height: 3px;
    background: var(--d26-primary);
    margin-top: -2px;
}

.d26-gnb-all-icon::before,
.d26-gnb-all-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 19px;
    height: 3px;
    background: var(--d26-primary);
}

.d26-gnb-all-icon::before {
    top: -7px;
}

.d26-gnb-all-icon::after {
    top: 7px;
}

.d26-gnb-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.d26-gnb-item {
    position: static;
}

.d26-gnb-link {
    display: flex;
    align-items: center;
    height: 80px;
    font-size: 22px;
    font-weight: 700;
    color: var(--d26-text);
    white-space: nowrap;
}

.d26-gnb-item.is-open .d26-gnb-link,
.d26-gnb-item:focus-within .d26-gnb-link,
.d26-gnb-item.is-current .d26-gnb-link {
    color: var(--d26-primary);
}

.d26-gnb-item.is-current .d26-gnb-link {
    font-weight: 800;
}

/* 아코디언 드롭다운 */
.d26-gnb-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--d26-border);
    box-shadow: 0 20px 20px 0 rgba(113, 115, 152, 0.15);
    z-index: 50;
}

.d26-gnb-dropdown.is-open {
    display: block;
}

.d26-gnb-dropdown-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
}

.d26-gnb-group-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 250px;
    flex-shrink: 0;
}

.d26-gnb-group-list::after {
    content: '';
    position: absolute;
    right: -50px;
    width: 1px;
    height: 100%;
    background-color: #dadada;
}

.d26-gnb-group-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--d26-primary);
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: .2s;
}

.d26-gnb-group-tit::after {
    content: '';
    width: 7px;
    height: 12px;
    background-image: url(../img/common/ico-tit-arrow.png);
    background-size: cover;
}

.d26-gnb-group-tit.is-active,
.d26-gnb-group-tit:hover {
    color: #fff;
    background: var(--d26-primary);
    border-color: var(--d26-primary);
}

.d26-gnb-group-tit.is-active::after,
.d26-gnb-group-tit:hover::after {
    background-image: url(../img/common/ico-tit-arrow-active.png);
}

.d26-gnb-group-panels {
    flex: 1;
    padding-left: 100px;
}

.d26-gnb-sub {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 30px;
    list-style: none;
    margin: 0;
}

.d26-gnb-sub.is-active {
    display: grid;
}

.d26-gnb-sub a {
    display: block;
    font-size: 20px;
    letter-spacing: -1px;
    color: #373b50;
    padding: 15px 0;
    transition: .2s
}

.d26-gnb-sub a:hover, .d26-gnb-sub a.is-active {
    color: var(--d26-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
}

.d26-header.is-all-open .d26-gnb-all-toggle {
    color: var(--d26-primary);
}

.d26-gnb-all-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 142px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-top: 1px solid var(--d26-border);
    box-shadow: 0 20px 20px 0 rgba(113, 115, 152, 0.15);
    z-index: 60;
}

.d26-header.is-all-open .d26-gnb-all-panel {
    display: block;
}

.d26-gnb-all-panel-mobile-head {
    display: none;
}

.d26-gnb-all-panel-mobile-utility {
    display: none;
}

.d26-gnb-all-panel-mobile-quick {
    display: none;
}

.d26-gnb-all-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #dadada;
}

.d26-gnb-all-panel-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.d26-gnb-all-panel-tabs a {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    font-size: 18px;
    letter-spacing: -.9px;
    color: var(--d26-text);
    background: #fff;
    border: 1px solid #454755;
    border-radius: 20.5px;
    transition: .2s;
}

.d26-gnb-all-panel-tabs a.is-active,
.d26-gnb-all-panel-tabs a:hover {
    color: #fff;
    background: #454755;
    font-weight: 700;
}

.d26-gnb-all-panel-close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 41px;
    border: 1px solid #dadada;
    border-radius: 5px;
    background: #fff;
    color: var(--d26-text);
    transition: .2s;
    padding-bottom: 2px;
    margin-left: auto;
}

.d26-gnb-all-panel-close:hover {
    background-color: #eeeeee;
}

.d26-gnb-all-panel-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.d26-gnb-all-panel-top-inner {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 20px 50px;
}

.d26-gnb-all-section + .d26-gnb-all-section {
    margin-top: 8px;
}

.d26-gnb-all-section-tit {
    padding: 17px 20px 17px 60px;
    font-size: 22px;
    font-weight: 700;
    color: var(--d26-text);
    background: #ecf4f7;
    border-radius: 27px;
    letter-spacing: -1.1px;
    transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}

@keyframes d26SectionPulse {
    0% {
        background-color: #ecf4f7;
        box-shadow: 0 0 0 0 rgba(86, 112, 246, 0);
        transform: translateY(0);
    }
    20% {
        background-color: #d7e4ff;
        color: var(--d26-primary);
        box-shadow: 0 0 0 4px rgba(86, 112, 246, 0.35), 0 4px 16px rgba(86, 112, 246, 0.2);
        transform: translateY(-2px);
    }
    45% {
        background-color: #ecf4f7;
        box-shadow: 0 0 0 1px rgba(86, 112, 246, 0.15);
        transform: translateY(0);
    }
    70% {
        background-color: #e0ecff;
        color: var(--d26-primary);
        box-shadow: 0 0 0 3px rgba(86, 112, 246, 0.25), 0 3px 12px rgba(86, 112, 246, 0.15);
        transform: translateY(-1px);
    }
    100% {
        background-color: #ecf4f7;
        box-shadow: 0 0 0 0 rgba(86, 112, 246, 0);
        transform: translateY(0);
    }
}

.d26-gnb-all-section-tit.is-highlighted {
    animation: d26SectionPulse 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.d26-gnb-all-section-body {
    display: flex;
    flex-direction: column;
    padding: 0 40px;
}

.d26-gnb-all-section-body .d26-gnb-group {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 15px 0;
}

.d26-gnb-all-section-body .d26-gnb-group + .d26-gnb-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    width: calc(100% - 14px);
    height: 1px;
    background-color: #dadada;
}

.d26-gnb-all-section-body .d26-gnb-group-tit {
    width: 190px;
    flex-shrink: 0;
    cursor: default;
}

.d26-gnb-all-section-body .d26-gnb-sub {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.d26-gnb-mobile-btn-group {
    display: none;
    gap: 10px;
}

.d26-mo-search .ico-global-search {
    width: 24px;
    height: 23px;
}

.d26-gnb-mobile-toggle {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.d26-gnb-mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--d26-primary);
    margin: 4px 0;
}

/* ---- Footer ---- */
.d26-footer {
    background: #454755;
    color: #fff;
    margin-top: 150px;
}

.d26-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.d26-footer-top {
    border-bottom: 1px solid #444;
}

.d26-footer-top .d26-footer-inner {
    padding: 37.5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #666;
}

.d26-footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.2;
}

.d26-footer-links a {
    color: #fff;
}

.d26-footer-links-strong {
    font-weight: 700;
    color: #fff;
}

.d26-footer-bottom .d26-footer-inner {
    padding: 40px 0;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #fff;
}

.d26-footer-logo img {
    height: 87px;
}

.d26-footer-info {
    min-width: 240px;
    font-size: 12px;
    line-height: 1.7;
    margin-right: 30px;
}

.d26-footer-contact {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0 0 4px;
    font-size: 18px;
}

.d26-footer-info address {
    font-size: 16px;
    letter-spacing: -.8px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.d26-footer-cs {
    font-size: 16px;
    letter-spacing: -.8px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.d26-footer-copyright {
    color: #d6d7e4;
    font-size: 14px;
    overflow: hidden;
    line-height: 1.2;
}

.d26-footer-wa img {
    width: 106px;
    height: auto;
}

.d26-footer-sns {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.d26-footer-sns a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.d26-footer-related {
    position: relative;
    margin-left: auto;
}

.d26-footer-related-toggle {
    display: flex;
    align-items: center;
    min-width: 208px;
    gap: 8px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    cursor: pointer;
}

.d26-footer-related-toggle:focus,
.d26-footer-related-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.d26-footer-related-icon {
    width: 19px;
    height: 10px;
    background: url(../img/common/ico-footer-arrow.svg) center / contain no-repeat;
    transform: rotate(0deg);
    margin-left: auto;
    transition: transform .2s;
}

.d26-footer-related.is-open .d26-footer-related-icon {
    transform: rotate(180deg);
}

.d26-footer-related-list {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 100%;
    margin-bottom: 8px;
    padding: 8px;
    list-style: none;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.d26-footer-related-list li + li {
    margin-top: 2px;
}

.d26-footer-related.is-open .d26-footer-related-list {
    display: block;
}

.d26-footer-related-list a {
    display: block;
    padding: 8px 10px;
    font-size: 16px;
    color: var(--d26-text);
    border-radius: 4px;
}

.d26-footer-related-list a:hover {
    background: var(--d26-bg-soft);
}

.d26-top-button {
    position: fixed;
    right: 90px;
    bottom: 26px;
    width: 51px;
    height: 52px;
    box-shadow: 0 0 15px 0 rgba(113, 115, 152, 0.25);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    color: #4c4c4c;
    border-radius: 100%;
    cursor: pointer;
    z-index: 9999;
}

.d26-top-button .ico {
    flex-shrink: 0;
}

.d26-chat-button {
    position: fixed;
    right: 25px;
    bottom: 24px;
    width: 54px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.d26-top-button:focus, .d26-chat-button:focus,
.d26-top-button:focus-visible, .d26-chat-button:focus-visible {
    outline: 2px solid var(--d26-primary-dark);
    outline-offset: 2px;
}

/* 반응형 */
@media (max-width: 1200px) {
    /* 검색 */
    .d26-search {
        display: none;
    }

    /* GNB 전체메뉴 */
    .d26-gnb-all-panel-inner {
        padding: 0;
    }

    .d26-gnb-all-panel-mobile-quick {
        display: flex;
        justify-content: center;
        gap: 20px;
        list-style: none;
        margin: 0;
        padding: 40px 15px;
    }

    .d26-gnb-all-panel-mobile-quick a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .d26-gnb-all-panel-mobile-quick .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 80px;
        background-color: #ecf4f7;
        border-radius: 100%;
        padding: 20px;
    }

    .d26-gnb-all-panel-mobile-quick img {
    }

    .d26-gnb-all-panel-mobile-quick span {
        font-size: 13px;
        font-weight: 500;
        color: var(--d26-text);
        text-align: center;
    }

    .d26-gnb-all-panel {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        height: auto;
        max-height: none;
        z-index: 500;
        border-top: 5px solid var(--d26-primary);
    }

    .d26-gnb-all-panel-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border-bottom: 1px solid #dadada;
    }

    .ico-all-menu-close {
        width: 15px;
        height: 15px;
    }

    .d26-gnb-all-panel-mobile-logo img {
        width: 180px;
    }

    .d26-gnb-all-panel-mobile-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: none;
        background: none;
        cursor: pointer;
    }

    .d26-gnb-all-panel-mobile-utility {
        display: block;
        padding: 30px 15px;
        border-bottom: 3px solid #ecf4f7;
    }

    .d26-gnb-all-panel-top {
        display: none;
    }

    .d26-gnb-all-panel-mobile-icons {
        display: flex;
        justify-content: center;
        gap: 30px;
        list-style: none;
        margin: 0 0 16px;
        padding: 0;
    }

    .d26-gnb-all-panel-mobile-icons a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: var(--d26-text);
    }

    .d26-gnb-all-panel-mobile-icons .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        background-color: #eef4ff;
        width: 40px;
        height: 40px;
    }

    .d26-gnb-all-panel-mobile-search {
        position: relative;
    }

    .d26-header .d26-gnb-all-panel-mobile-search input {
        width: 100%;
        height: 44px;
        padding: 0 50px 0 20px;
        border: 2px solid var(--d26-primary);
        border-radius: 22px;
        box-sizing: border-box;
        font-size: 15px;
    }

    .d26-gnb-all-panel-mobile-search input:focus {
        outline: none;
    }

    .d26-gnb-all-panel-mobile-search button {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
        cursor: pointer;
    }

    /* GNB 전체메뉴 - 닫기 버튼 */
    .d26-gnb-all-panel-close {
        display: none;
    }

    /* GNB 전체메뉴 - 섹션/아코디언 */
    .d26-gnb-all-section {
        border-bottom: 3px solid #ecf4f7;
    }
    .d26-gnb-all-section + .d26-gnb-all-section {
        margin-top: 0;
    }

    .d26-gnb-all-section-tit {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 15px 20px;
        font-size: 15px;
        border-radius: 0;
        background-color: #fff;
        transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
    }

    @keyframes d26SectionPulseMo {
        0% {
            background-color: #fff;
            box-shadow: inset 0 0 0 0 rgba(86, 112, 246, 0);
        }
        20% {
            background-color: #eef3ff;
            color: var(--d26-primary);
            box-shadow: inset 4px 0 0 0 var(--d26-primary);
        }
        45% {
            background-color: #fff;
            box-shadow: inset 2px 0 0 0 rgba(86, 112, 246, 0.3);
        }
        70% {
            background-color: #f2f6ff;
            color: var(--d26-primary);
            box-shadow: inset 4px 0 0 0 var(--d26-primary);
        }
        100% {
            background-color: #fff;
            box-shadow: inset 0 0 0 0 rgba(86, 112, 246, 0);
        }
    }

    .d26-gnb-all-section-tit.is-highlighted {
        animation: d26SectionPulseMo 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .d26-gnb-all-section-tit::after {
        content: '';
        width: 12px;
        height: 7px;
        flex-shrink: 0;
        background: url(../img/common/ico-mo-menu-arrow.svg) center / contain no-repeat;
        transition: transform .2s;
    }

    .d26-gnb-all-section.is-open .d26-gnb-all-section-tit::after {
        transform: rotate(180deg);
    }

    .d26-gnb-all-section-body {
        display: none;
        padding: 0 15px;
    }

    .d26-gnb-all-section.is-open .d26-gnb-all-section-body {
        display: flex;
    }

    .d26-gnb-all-section-body .d26-gnb-group {
        flex-direction: column;
        padding: 15px 10px 20px;
        border-top: 1px solid #d4d4d4;
        gap: 15px;
    }

    .d26-gnb-all-section-body .d26-gnb-group + .d26-gnb-group::before {
        content: none;
    }

    .d26-gnb-all-section-body .d26-gnb-group-tit {
        width: auto;
        padding: 0;
        color: var(--d26-text);
        background: none;
        border-radius: 0;
        cursor: default;
        font-size: 15px;
        font-weight: 700;
    }

    .d26-gnb-group-tit::after {
        content: none;
    }

    .d26-gnb-sub li + li {
        margin-top: 15px;
    }

    .d26-gnb-sub a {
        position: relative;
        font-size: 15px;
        letter-spacing: -1.5px;
        padding: 0 0 0 14px;
    }

    .d26-gnb-sub a::before {
        content: '';
        position: absolute;
        top: 7.5px;
        left: 5px;
        width: 4px;
        height: 4px;
        border-radius: 100%;
        background-color: var(--d26-primary);
    }

    .d26-gnb-all-section-body .d26-gnb-sub {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .d26-gnb-all-panel-top-inner {
        padding: 15px 15px 15px 20px;
    }

    .d26-gnb-all-panel-tabs {
        gap: 10px;
    }

    .d26-gnb-all-panel-tabs a {
        padding: 6px 12px;
        font-size: 15px;
    }

    /* 상단 유틸바 / 헤더 / GNB 토글 */
    .d26-topbar {
        background: var(--d26-primary);
    }

    .d26-topbar-inner {
        justify-content: flex-end;
        padding: 8px 15px;
    }

    .d26-topbar-links,
    .d26-logout-timer,
    .d26-logout-timer.is-visible {
        display: none;
    }

    .d26-topbar-mobile-links {
        display: flex;
    }

    .d26-headmain-inner {
        padding: 11px 10px;
    }

    .d26-logo img {
        height: 50px;
    }

    .d26-gnb {
        display: none;
    }

    .d26-gnb-mobile-btn-group {
        display: flex;
    }

    .d26-quicklink,
    .d26-quicklink[data-auth="member"] {
        display: none;
    }

    /* Footer */
    .d26-footer {
        margin-top: 60px;
        display: flex;
        flex-direction: column;
    }

    .d26-footer-top {
        order: 2;
    }

    .d26-footer-bottom {
        order: 1;
    }

    .d26-footer-inner {
        padding: 0 15px;
    }

    .d26-footer-links {
        display: none;
    }

    .d26-footer-top .d26-footer-inner {
        flex-wrap: wrap;
        row-gap: 12px;
        padding: 20px 15px;
    }

    .d26-footer-bottom .d26-footer-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 30px 15px 15px;
    }

    .d26-footer-logo {
        display: none;
    }

    .d26-footer-info {
        min-width: 0;
        margin-right: 0;
    }

    .d26-footer-wa {
        display: none;
    }

    .d26-footer-related {
        order: -1;
        width: 100%;
        margin-left: 0;
        z-index: 2;
    }

    .d26-footer-related-toggle {
        width: 100%;
        height: 40px;
        min-width: 0;
        justify-content: space-between;
        padding: 0 16px;
        color: var(--d26-text);
        background: #fff;
        border: none;
        border-radius: 0;
        font-size: 13px;
    }

    .d26-footer-related-icon {
        background-image: url(../img/common/ico-footer-arrow-black.svg);
        width: 14px;
        height: 9px;
    }

    .d26-footer-contact {
        font-size: 13px;
    }

    .d26-footer-info address {
        font-size: 13px;
    }

    .d26-footer-cs {
        font-size: 13px;
    }

    .d26-footer-copyright {
        font-size: 13px;
    }

    .d26-footer-related-list a {
        font-size: 14px;
        padding: 4px 8px;
    }

    .d26-footer-sns {
        gap: 15px;
    }

    .d26-footer-sns a {
        width: 20px;
        height: 20px;
    }

    .d26-footer-sns img {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 640px) {
    .d26-headmain-inner {
        padding: 7px 10px;
    }

    .d26-topbar-inner {
        padding: 7px 15px;
    }

    .d26-topbar-mobile-pill a {
        font-size: 12px;
    }

    .d26-topbar-mobile-pill .d26-topbar-mobile-border {
        font-size: 12px;
        padding: 1px 18px;
    }

    .d26-logo img {
        width: 150px;
        height: auto;
    }

    .d26-gnb-all-panel-mobile-quick {
        gap: 15px;
        padding: 30px 15px 150px;
    }

    .d26-gnb-all-panel-mobile-quick .icon {
        width: 60px;
        height: 60px;
        padding: 15px;
    }

    .d26-footer {
        margin-top: 30px;
    }

    .d26-chat-button {
        bottom: 84px;
        right: 15px;
    }

    .d26-top-button {
        display: none;
    }
}

/* dream2026 리뉴얼 : 예전 서브내비게이션 바(.sub-top-nav, SubTopNav.jsp의 브레드크럼+SNS 아이콘) 숨김 */
.sub-top-nav {
    display: none !important;
}

/* dream2026 리뉴얼 : 서브페이지 배너 바로 위 여백(레거시 fixed 헤더용 margin-top) 제거 */
.sub-sec-wrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.sub-sec-wrap:has(.d26-sub-heading) {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
#contents:has(.d26-sub-heading) {
    padding-top: 0 !important;
}

/* dream2026 리뉴얼 : "신청하기" 문구를 쓰는 핑크(#e00070) CTA 버튼만 V3 프라이머리로 전환.
   .btn.pink 클래스 자체는 "제출/확인/수강신청" 등 다른 버튼도 같이 쓰므로 건드리지 않고,
   해당 버튼에만 이 클래스를 별도로 붙여서 좁게 적용한다. */
.d26-cta-apply {
    background: var(--d26-primary, #5670f6) !important;
    border-color: var(--d26-primary, #5670f6) !important;
    border-radius: 10px !important;
}
.d26-cta-apply:hover {
    background: var(--d26-primary-dark, #00199c) !important;
    border-color: var(--d26-primary-dark, #00199c) !important;
}