/* CSS Variables */
:root {
    --color-bg-base: #f5f2e8;
    --color-text-main: #222222;
    --color-accent: #0065ce;
    --color-dim-line: rgba(0, 0, 0, 0.1);
    --color-gray-50: #f8f9fb;
    --color-gray-100: #f4f5f7;
    --color-gray-150: #e9ebef;
    --color-gray-200: #e9ebef;
    --color-gray-300: #cfd4da;
    --color-gray-400: #adb6bd;
    --color-gray-500: #868f96;
    --color-gray-600: #6b7278;
    --color-gray-800: #262b32;
    --color-gray-900: #020403;
    --color-blue-main: #005eff;
    --color-blue-ddp: #688acb;
    --color-bg-gray: #fbfcfd;
    --color-icon: #292929;
    --color-white: #ffffff;
    --color-ddp-blue: #005eff;
    --color-sdf-red: #e54837;

    --font-suit: "SUIT", sans-serif;
    --font-pretendard: "Pretendard", sans-serif;

    --max-width: 1920px;
    --header-height: 60px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-width: 320px;
    height: auto;
}

/* override original css */
.sub_cont_wrap {
    margin-top: 110px;
}

.skip_menu {
    display: none;
}

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

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-blue-main);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
    font-weight: 700;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Styles */
*:focus-visible {
    outline: 3px solid var(--color-blue-main);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-blue-main);
    outline-offset: 2px;
}

@font-face {
    font-family: "SUIT";
    font-weight: 100;
    src: url("/resources/font/SUIT/SUIT-Thin.woff2") format("woff2");
}

@font-face {
    font-family: "SUIT";
    font-weight: 200;
    src: url("/resources/font/SUIT/SUIT-ExtraLight.woff2") format("woff2");
}

@font-face {
    font-family: "SUIT";
    font-weight: 300;
    src: url("/resources/font/SUIT/SUIT-Light.woff2") format("woff2");
}

@font-face {
    font-family: "SUIT";
    font-weight: 400;
    src: url("/resources/font/SUIT/SUIT-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "SUIT";
    font-weight: 500;
    src: url("/resources/font/SUIT/SUIT-Medium.woff2") format("woff2");
}

@font-face {
    font-family: "SUIT";
    font-weight: 600;
    src: url("/resources/font/SUIT/SUIT-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "SUIT";
    font-weight: 700;
    src: url("/resources/font/SUIT/SUIT-Bold.woff2") format("woff2");
}

@font-face {
    font-family: "SUIT";
    font-weight: 800;
    src: url("/resources/font/SUIT/SUIT-ExtraBold.woff2") format("woff2");
}

@font-face {
    font-family: "SUIT";
    font-weight: 900;
    src: url("/resources/font/SUIT/SUIT-Heavy.woff2") format("woff2");
}

@font-face {
    font-family: "Pretendard Variable";
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
    src: url("/resources/font/Pretendard/PretendardVariable.woff2") format("woff2-variations");
}

html {
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    font-family: var(--font-suit);
    color: var(--color-text-main);
    overflow: hidden;
    overflow-x: hidden;
    min-width: 0;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    text-decoration: none;
}

/* Typography - SUIT Font Classes */
/* Display Styles */
.display-1 {
    font-family: var(--font-suit);
    font-size: 60px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.display-2 {
    font-family: var(--font-suit);
    font-size: 54px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.display-3 {
    font-family: var(--font-suit);
    font-size: 40px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.04em;
}

/* Headline Styles */
.headline-1 {
    font-family: var(--font-suit);
    font-size: 36px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.headline-2 {
    font-family: var(--font-suit);
    font-size: 30px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.04em;
}

/* Body Styles */
.body-1 {
    font-family: var(--font-suit);
    font-size: 24px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.body-2 {
    font-family: var(--font-suit);
    font-size: 20px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.body-3,
.news-list>li>a {
    font-family: var(--font-suit);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.body-3-article {
    font-family: var(--font-suit);
    font-size: 16px;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0;
}

.body-4 {
    font-family: var(--font-suit);
    font-size: 15px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Label Styles */
.label-lg-bold {
    font-family: var(--font-suit);
    font-size: 14px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.label-lg-light {
    font-family: var(--font-suit);
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.label-md-bold {
    font-family: var(--font-suit);
    font-size: 12px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.label-md-light {
    font-family: var(--font-suit);
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.04em;
}

/* Color Styles */

.color-gray-400 {
    color: var(--color-gray-400);
}

.color-blue-main {
    color: var(--color-blue-main);
}

.bg-gray-50 {
    background-color: var(--color-gray-50);
}

.bg-gray-400 {
    background-color: var(--color-gray-400);
}

.bg-gray-500 {
    background-color: var(--color-gray-500);
}

.bg-blue-main {
    background-color: var(--color-blue-main);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: var(--header-height); */
    height: auto;
    min-height: 60px;
    min-width: 360px;
    z-index: 50;
    background: rgba(2, 4, 3, 0.1);
    backdrop-filter: blur(25px);
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease,
        filter 0.01s ease;
    overflow: visible;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 0 2px;
    overflow: visible;
}

.header-logo {
    min-width: 64px;
}

.header-logo img {
    width: 64px;
    height: 32px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.header-nav {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    /* gap: 40px; */
    color: white;
    font-weight: 500;
    position: relative;
    overflow: visible;
}

.header-nav a {
    width: 100%;
    position: relative;
    max-width: 160px;
    text-align: center;
    transition: color 0.3s;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-nav a:hover,
.header-nav a.active {
    color: black;
}

.header-nav a:hover:after,
.header-nav a.active:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    border-bottom: 4px solid var(--color-blue-main);
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 20px;
    color: var(--color-white);
}

.header-actions button {
    display: flex;
    align-items: center;
    gap: 4px;
    width: auto;
    height: 24px;
    transition: color 0.3s;
    /* margin-right: 20px; */
}

.header-actions button:last-of-type {
    margin-right: 0;
}

.header-actions button:hover {
    color: black;
}

.header-actions button img {
    width: auto;
    min-width: 24px;
    height: 24px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.mega-menu-open .header-actions button img {
    filter: invert(1);
}

.mega-menu-open .header-actions button span {
    filter: invert(1);
}

/* .header-action-sdf {
  } */

.header-nav .vr-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.vr-badge span {
    background: white;
    color: var(--color-gray-800);
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 9999px;
    font-weight: 800;
}

.header-action-wrapper {
    position: relative;
    display: inline-block;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(2, 4, 3, 0.4);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
    border-radius: 8px;
    padding: 8px;
    min-width: 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1000;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
}

.language-separator {
    width: 100%;
    height: 2px;
    max-width: 48px;
    width: 100%;
    background-color: #ffffff80;
    margin: 8px 0;
}

.language-dropdown .lang-option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    /* padding: 10px 12px; */
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #333;
    font-size: 14px;
    margin: 0;
    height: auto;
}

.language-dropdown .lang-option:hover {
    background-color: #262b3212;
    filter: brightness(0) saturate(100%) invert(100%);
}

/* .language-dropdown .lang-option.active {
      background-color: #e8f4ff;
      color: #0066cc;
  } */

.language-dropdown .lang-option img {
    width: 24px;
    height: 24px;
}

.language-selector .arrow-icon {
    /* transition: transform 0.2s; */
    transition: filter 0.3s ease;
}

.language-selector.active .arrow-icon {
    transform: rotate(180deg);
}

/*  sub-menu*/
.line_nav_wrap {
    display: block;
    opacity: 0;
    width: 100%;
    height: 0px;
    transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease,
        height 0.3s ease, opacity 0.7s ease, filter 0.01s ease;
    color: white;
}

.line_nav_wrap.is-main {
    display: none !important;
}

.line_nav_wrap.active {
    display: block;
    opacity: 1;
    height: 50px;
    border-bottom: none;
}

.common_inner {
    max-width: 1600px;
    margin: 0 auto;
}

/* 
  .sub_line_nav {
  } */

.sub_line_nav>ul {
    display: flex;
}

.sub_line_nav>ul>li:first-child {
    border: none;
}

.sub_line_nav>ul>li {
    height: 50px;
    border-right: 1px solid var(--color-gray-800);
    float: left;
    max-width: 221px;
    width: 100%;
    border: none;
}

.sub_line_nav>ul>li>a {
    line-height: 50px;
    background: url(/resources/img/common/line_nav_arrow.png) right 20px center no-repeat;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    padding: 0 0 0 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    text-decoration: none;
}

header.scrolled .sub_line_nav>ul>li>ul {
    filter: invert(1);
}

header.scrolled .full-menu {
    filter: invert(1);
}

.sub_line_nav>ul>li>ul {
    border: 1px solid var(--color-gray-800);
    border-top: 0;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 13px 0;
}

.sub_line_nav>ul>li>ul>li {
    height: 38px;
}

.sub_line_nav>ul>li>ul>li>a {
    color: var(--color-gray-800);
    display: block;
    font-size: 14px;
    font-weight: 400;
    height: 100%;
    line-height: 38px;
    overflow: hidden;
    padding: 0 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.sub_line_nav>ul>li>ul>li>a:hover {
    color: var(--color-blue-ddp);
}

.line_nav_wrap .home {
    width: 51px;
    border-left: 1px solid var(--color-gray-800);
}

.line_nav_wrap .home>a {
    width: 100%;
    height: 100%;
    background: url(/resources/img/common/line_nav_home.png) center no-repeat;
    overflow: hidden;
    padding: 0;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.line_nav_wrap .home .blind {
    position: absolute;
    left: -9999px;
    width: 0.01px;
    height: 0.01px;
    font-size: 0.1px;
    line-height: 0.01px;
    overflow: hidden;
}

/* .line_nav_wrap.active .sub_line_nav>ul>li>a {
      color: var(--color-gray-800);
      filter: invert(1);
  } */

/* 
  .line_nav_wrap.active .sub_line_nav>ul>li.home>a {
      filter: invert(1);
  } */

/* .line_nav_wrap #depth1_menu {
  } */

/* .line_nav_wrap #depth2_menu {
  } */

/* mega-menu*/
/* 메가메뉴 */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #f8f9fb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform-origin: top;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, filter 0.01s ease;
    z-index: 1000;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mega-menu.container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.mega-menu>.mega-menu-content-left {
    min-width: 64px;
    opacity: 0;
    z-index: -1;
}

.mega-menu>.mega-menu-content-right {
    opacity: 0;
    z-index: -1;
}

.mega-menu>.mega-menu-content-right img {
    min-width: 25px;
}

.mega-menu.active,
.mega-menu.hover {
    border-top: 1px solid var(--color-gray-800);
    max-height: 800px;
    opacity: 1;
}

.mega-menu-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.mega-menu-column {
    flex: 1;
    max-width: 160px;
    width: 100%;
    padding: 20px 16px 60px;
    border-right: 1px solid #e9ebef;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu.active .mega-menu-column,
.mega-menu.hover .mega-menu-column {
    opacity: 1;
    transform: translateY(0);
}

.mega-menu.active .mega-menu-column:nth-child(1),
.mega-menu.hover .mega-menu-column:nth-child(1) {
    transition-delay: 0.15s;
}

.mega-menu.active .mega-menu-column:nth-child(2),
.mega-menu.hover .mega-menu-column:nth-child(2) {
    transition-delay: 0.2s;
}

.mega-menu.active .mega-menu-column:nth-child(3),
.mega-menu.hover .mega-menu-column:nth-child(3) {
    transition-delay: 0.25s;
}

.mega-menu.active .mega-menu-column:nth-child(4),
.mega-menu.hover .mega-menu-column:nth-child(4) {
    transition-delay: 0.3s;
}

.mega-menu.active .mega-menu-column:nth-child(5),
.mega-menu.hover .mega-menu-column:nth-child(5) {
    transition-delay: 0.35s;
}

.mega-menu-column:first-child {
    border-left: 1px solid #e9ebef;
}

.mega-menu-column:last-child {
    border-right: 1px solid #e9ebef;
}

.mega-menu-column-highlight {
    background: #fbfcfd;
}

.mega-menu-section {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

.mega-menu-section:a {
    color: var(--color-blue-main);
}

.mega-menu-title {
    color: var(--color-gray-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu-title:hover {
    color: var(--color-blue-main);
}

/* 
  .mega-menu-title-primary {
      color: #688acb;
  } */

.mega-menu-divider {
    border: none;
    border-top: 1px solid #e9ebef;
    margin: 0;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-menu-list li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.56px;
    color: #6b7278;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu-list li a:hover {
    color: var(--color-blue-main);
}

header.scrolled {
    filter: invert(1);
    background-color: var(--color-gray-900);
    border-bottom: 1px solid var(--color-white);
}

header.scrolled>.header-container {
    border-bottom: 1px solid var(--color-gray-800);
    border-bottom: none;
}

/* header.mega-menu-open>.header-container {
      border-bottom: 1px solid var(--color-gray-800);
  } */

header.mega-menu-open {
    background-color: #ffffff;
    backdrop-filter: none;
    border-bottom: 1px solid var(--color-gray-800);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    filter: invert(0);
}

header.mega-menu-open .header-logo img {
    filter: brightness(0) saturate(100%);
}

header.mega-menu-open .header-nav a {
    color: #262b32;
}

header.mega-menu-open .header-nav .vr-badge span {
    background: black;
    color: white;
}

header.mega-menu-open .header-nav a:hover,
header.mega-menu-open .header-nav a.active {
    color: var(--color-blue-main);
}

/* Full Menu Language Selector */
.full-menu-language {
    display: none;
}

@media (max-width: 768px) {
    .full-menu .full-menu-language {
        display: none;
    }

    .full-menu.active .full-menu-language {
        display: flex;
        position: relative;
        width: 100%;
        background-color: var(--color-gray-50);
        z-index: 100;
        /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
        /* box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05); */
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        /* padding: 0 16px; */
        flex-shrink: 0;
    }

    .full-menu-language-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--color-gray-800);
    }

    .full-menu-language-button img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(0);
    }

    .full-menu-language-button .language-arrow-icon {
        transition: transform 0.3s ease;
    }

    .full-menu-language.active .language-arrow-icon {
        transform: rotate(180deg);
    }

    .full-menu-language-dropdown {
        position: absolute;
        bottom: 55px;
        right: 0;
        background-color: var(--color-gray-50);
        /* border: 1px solid rgba(0, 0, 0, 0.1); */
        border-bottom: none;
        /* border-radius: 8px 8px 0 0; */
        /* box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); */
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        z-index: 101;
    }

    .full-menu-language.active .full-menu-language-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .full-menu-language-option {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        min-width: 120px;
        padding: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--color-gray-800);
        transition: background-color 0.2s ease;
    }

    .full-menu-language-option:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .full-menu-language-option.active {
        /* background-color: rgba(0, 0, 0, 0.08); */
        background-color: transparent;
    }

    .full-menu-language-option img {
        width: 24px;
        height: 24px;
        filter: brightness(0);
    }

    .full-menu-language-separator {
        width: 100%;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 1601px) and (max-width: 1919px) {
    .header-container {
        padding: 0 2px;
    }
}

/* Desktop Large (1400px ~ 1600px) */
@media (min-width: 1400px) and (max-width: 1600px) {
    .header-container {
        padding: 0 24px;
    }
}

/* Desktop (1200px ~ 1399px) */
@media (max-width: 1399px) {
    .header-container {
        padding: 0 24px;
    }
}

/* Tablet Large (1024px ~ 1199px) */
@media (max-width: 1199px) {
    .header-container {
        padding: 0 60px;
    }

    .mega-menu {
        padding: 0 60px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 24px;
    }

    .mega-menu {
        padding: 0 24px;
    }
}

@media (max-width: 1023px) {

    /* override original css */
    .line_nav_wrap {
        display: none !important;
    }

    .sub_cont_wrap {
        margin-top: 60px;
    }

    /* Typography Responsive */
    .display-1 {
        font-size: 48px;
    }

    .display-2 {
        font-size: 44px;
    }

    .display-3 {
        font-size: 32px;
    }

    .headline-1 {
        font-size: 28px;
    }

    .headline-2 {
        font-size: 24px;
    }

    .body-1 {
        font-size: 20px;
    }

    .body-2 {
        font-size: 18px;
    }

    .body-3,
    .body-3-article,
    .news-list>li>a {
        font-size: 15px;
    }

    .body-4 {
        font-size: 14px;
    }

    /* Header */
    .header-nav {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }
}

/* Mobile Large (481px ~ 767px) */
@media (max-width: 767px) {

    html,
    body {
        font-size: 14px;
        overflow-x: hidden !important;
        width: 100%;
        height: auto;
        max-width: 100vw;
        position: relative;
    }

    .header-container {
        padding: 0 16px;
        width: 100%;
    }

    .mega-menu-content {
        padding: 0 16px;
        width: 100%;
    }

    /* Typography Responsive */
    .display-1 {
        font-size: 40px;
    }

    .display-2 {
        font-size: 36px;
    }

    .display-3 {
        font-size: 28px;
    }

    .headline-1 {
        font-size: 24px;
    }

    .headline-2 {
        font-size: 20px;
    }

    .body-1 {
        font-size: 18px;
    }

    .body-2 {
        font-size: 16px;
    }

    .body-3,
    .body-3-article,
    .news-list>li>a {
        font-size: 14px;
    }

    .body-4 {
        font-size: 13px;
    }

    .label-lg-bold,
    .label-lg-light {
        font-size: 12px;
    }

    .label-md-bold,
    .label-md-light {
        font-size: 11px;
    }

    /* Header - 이미 위에서 설정됨 */

    .header-logo img {
        width: 64px;
        height: 32px;
        object-fit: contain;
    }

    .header-actions button {
        /* width: 36px; */
        height: 36px;
        flex-shrink: 0;
    }

    .header-actions img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .full-menu-sublist>li>a:before {
        content: none;
    }
}

/* Mobile (375px ~ 480px) */
@media (max-width: 480px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    .header-container {
        padding: 0 16px;
        width: 100%;
    }

    .mega-menu-content {
        padding: 0 16px;
        width: 100%;
    }
}

/* Full Menu (햄버거 메뉴) */
.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

.full-menu.active {
    opacity: 1;
    visibility: visible;
}

.full-menu-overlay {
    display: none;
}

.full-menu-content {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.full-menu-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 32px 24px;
    margin: 0;
    border-bottom: none;
}

.full-menu-header>.full-menu-close {
    align-self: flex-end;
}

.full-menu-sub {
    display: flex;
    width: 100%;
    flex: 1;
}

.full-menu-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.full-menu-login-description {
    width: 100%;
    text-align: center;
    padding: 20px 0 0 0;
}

.full-menu-login-description>p {
    color: #ffffff;
}

.full-menu-login-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.full-menu-login-button {
    width: 100%;
    height: 42px;
    border: 1px solid #e9ebef;
    background: #ffffff;
    color: var(--color-gray-800);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.full-menu-login-button>span {
    color: var(--color-gray-800);
}

.full-menu-sub,
.full-menu-login {
    display: none;
}

.full-menu-sub .full-menu-sub-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.full-menu-sub .full-menu-sub-buttons button {
    display: flex;
    background: none;
    /* width: 24px;
      height: 24px; */
}

.full-menu-sub .full-menu-sub-buttons button.full-menu-close img,
.full-menu-sub .full-menu-sub-buttons button img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.full-menu-header .header-logo img {
    width: 64px;
    height: 24px;
    filter: none;
}

.full-menu-close {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
}

.full-menu-close img {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

.full-menu-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue-main);
    text-align: center;
    margin: 32px 0 0 0;
    padding: 0;
}

.full-menu-nav {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* gap: 80px; */
    padding: 60px 16px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    align-content: stretch;
}

.full-menu-section {
    min-width: 160px;
    padding: 0 16px;
    margin-bottom: 0;
    border-right: 1px solid #e9ebef;
}

.full-menu-section:first-child {
    border-left: 1px solid #e9ebef;
}

.full-menu-section:last-child {
    /* border-right: 1px solid transparent; */
    margin-bottom: 0;
}

.full-menu-category {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.full-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-menu-list>li {
    margin-bottom: 16px;
}

.full-menu-list>li:last-child {
    /* border-bottom: none; */
    margin-bottom: 0;
}

.full-menu-list>li>a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.full-menu-list>li>a:hover {
    color: var(--color-blue-main);
}

.full-menu-sublist {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.full-menu-sublist>li>a:before {
    content: "- ";
}

.full-menu-sublist li {
    min-width: 160px;
    padding: 0 16px;
    margin-bottom: 12px;
}

.full-menu-sublist li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.full-menu-sublist a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-gray-400);
    text-decoration: none;
    padding: 2px 0;
    transition: color 0.3s ease;
}

.full-menu-sublist a:hover {
    color: var(--color-blue-main);
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .full-menu-content {
        padding: 0 80px;
    }

    /* .full-menu-header {
          padding: 28px 80px;
          margin: 0 -80px;
      } */

    .full-menu-nav {
        /* gap: 50px; */
        padding: 50px 16px;
        grid-template-columns: repeat(5, 1fr);
    }

    .full-menu-category {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .full-menu-list>li>a {
        font-size: 15px;
    }

    .full-menu-sublist a {
        font-size: 13px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .full-menu-content {
        padding: 0 60px;
    }

    /* .full-menu-header {
          padding: 24px 60px;
          margin: 0 -60px;
      } */

    .full-menu-nav {
        /* gap: 30px; */
        padding: 40px 16px;
        grid-template-columns: repeat(5, 1fr);
    }

    .full-menu-category {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .full-menu-list>li>a {
        font-size: 14px;
        padding: 3px 0;
    }

    .full-menu-sublist {
        margin-top: 8px;
    }

    .full-menu-sublist a {
        font-size: 12px;
    }
}

/* Desktop Navigation Display */
@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .full-menu {
        color: #262b32;
    }

    .full-menu-content {
        padding: 0;
        /* padding: 0 40px; */
    }

    /* .full-menu-header {
          padding: 20px 0;
          margin: 0;
      } */

    .full-menu-nav {
        /* gap: 20px; */
        padding: 32px 16px;
        grid-template-columns: repeat(5, 1fr);
    }

    .full-menu-section {
        min-width: 130px;
    }

    .full-menu-category {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .full-menu-list>li {
        margin-bottom: 8px;
    }

    .full-menu-list>li>a {
        font-size: 12px;
        padding: 2px 0;
    }

    .full-menu-sublist {
        margin-top: 4px;
    }

    .full-menu-sublist li {
        margin-bottom: 6px;
    }

    .full-menu-sublist a {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .full-menu {
        background: #ffffff;
        color: #262b32;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .full-menu-close {
        width: 24px;
        height: 24px;
        display: none;
    }

    .full-menu-content {
        padding: 0;
        overflow: hidden;
        height: 100dvh;
        display: flex;
        flex-direction: column;
    }

    .full-menu-header {
        background-color: var(--color-blue-main);
        padding: 24px 16px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 100;
        flex-shrink: 0;
    }

    .full-menu-sub,
    .full-menu-login {
        display: flex;
    }

    .full-menu-subtitle {
        display: none;
    }

    .sub-buttons {
        margin-right: 12px;
    }

    .sub-buttons:last-of-type {
        margin-right: 0;
    }

    .sub-buttons-sdf,
    .sub-buttons-sdf>img {
        width: auto !important;
    }

    .full-menu-nav {
        width: 100%;
        padding: 0;
        gap: 0;
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .full-menu-section {
        margin-bottom: 0;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .full-menu-section:last-child {
        border-bottom: none;
    }

    .full-menu-category {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 0;
        padding: 24px 16px;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        color: var(--color-gray-800);
        border-bottom: 1px solid var(--color-gray-200);
    }

    .full-menu-category::after {
        width: 24px;
        height: 24px;
        content: "";
        font-size: 28px;
        font-weight: 300;
        line-height: 1;
        transition: transform 0.3s ease;
        background-image: url("/resources/main-new/icons/icon-arrow-down.png");
        color: var(--color-gray-800);
    }

    .full-menu-section.active .full-menu-category::after {
        width: 24px;
        text-align: center;
        content: "";
        background-image: url("/resources/main-new/icons/icon-arrow-up.png");
        color: var(--color-gray-800);
    }

    .full-menu-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--color-gray-800);
    }

    .full-menu-section.active .full-menu-list {
        max-height: 2000px;
    }

    .full-menu-list>li {
        margin-bottom: 0;
        border-bottom: 1px solid var(--color-gray-200);
    }

    .full-menu-list>li>a {
        font-size: 14px;
        font-weight: 500;
        padding: 16px 24px;
        color: var(--color-gray-800);
        display: block;
    }

    .full-menu-list>li:last-child>a {
        border-bottom: none;
    }

    .full-menu-sublist {
        border-top: 1px solid var(--color-gray-200);
        /* border-bottom: 1px solid var(--color-gray-200); */
        margin: 0 0 0 0;
        /* padding-left: 24px; */
    }

    .full-menu-sublist li {
        padding-left: 24px;
        border-bottom: 1px solid var(--color-gray-200);
        margin-bottom: 0;
    }

    .full-menu-sublist a {
        font-size: 13px;
        font-weight: 400;
        padding: 12px 0;
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
        display: block;
    }

    .full-menu-sublist li:last-child a {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    /* .full-menu-content {
          padding: 0 20px;
      } */

    .full-menu-header {
        padding: 20px;
        /* margin: 0 -20px; */
    }

    .full-menu-sub-logo header-logo {
        flex: 1;
    }

    .full-menu-sub-buttons {
        flex: 1;
    }

    .full-menu-sub-buttons>button {
        width: auto;
        min-width: 24px;
        height: 24px;
    }

    .sub-buttons {
        margin-right: 12px;
    }

    .sub-buttons:last-of-type {
        margin-right: 0;
    }

    .sub-buttons-sdf,
    .sub-buttons-sdf>img {
        width: auto !important;
    }

    .full-menu-close {
        width: 24px;
        height: 24px;
    }

    .full-menu-nav {
        padding: 0 16px;
    }

    .full-menu-section:first-child {
        border: none;
    }

    .full-menu-category {
        font-size: 15px;
        padding: 20px 0;
    }

    .full-menu-list>li>a {
        font-size: 13px;
        padding: 12px 0;
    }

    .full-menu-sublist {
        padding-left: 12px;
    }

    .full-menu-sublist a {
        font-size: 12px;
        padding: 10px 0;
    }
}