* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans KR", Arial, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 공통 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 헤더 */
.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    height: 88px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #1d3557;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.logo span {
    color: #3aa0ff;
}

.main-nav {
    height: 100%;
}

.gnb {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.gnb > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.gnb > li > a {
    display: flex;
    align-items: center;
    height: 88px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    transition: color 0.2s ease;
}

.gnb > li > a:hover {
    color: #2f80ed;
}

/* 고객센터 드롭다운 */
.submenu {
    display: none;
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 190px;
    background: #fff;
    border-top: 2px solid #2f80ed;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    padding: 6px 0;
}

.submenu li a {
    display: block;
    padding: 12px 18px;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
}

.submenu li a:hover {
    background: #f4f8ff;
    color: #2f80ed;
}

.has-submenu:hover .submenu {
    display: block;
}

/* 메인 히어로 */
.hero {
    padding: 70px 0;
    background: linear-gradient(135deg, #08142f 0%, #121c3b 100%);
    color: #fff;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-right img {
    max-height: 520px;
    object-fit: contain;
}

.hero-sub {
    font-size: 22px;
    margin-bottom: 16px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badges span {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 14px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 span {
    color: #2fb2ff;
}

.hero-desc {
    font-size: 24px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-main {
    display: inline-block;
    padding: 14px 28px;
    background: #2f80ed;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
}

.btn-main:hover {
    background: #1668d1;
}

/* 일반 섹션 */
.section {
    padding: 80px 0;
}

.section-light {
    background: #f7f9fc;
}

.section h2,
.container h2 {
    font-size: 36px;
    margin-bottom: 36px;
    text-align: center;
}

/* 카드 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.card p {
    color: #555;
}

/* 고객센터 내부 페이지용 */
.page-hero {
    padding: 60px 0 30px;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* Korean service subpage hero */
.kor-subpage-hero {
    position: relative;
    overflow: hidden;
    padding: 28px 0;
    border-bottom: 1px solid #d9e5f2;
    background:
        linear-gradient(90deg, rgba(241, 247, 252, 0.94) 0%, rgba(241, 247, 252, 0.66) 48%, rgba(241, 247, 252, 0.9) 100%),
        url("../img/korean-board-head-bg.jpg?v=20260726") center 48% / 860px auto repeat-x;
}

.kor-subpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.58));
}

.kor-subpage-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 76px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    text-align: right;
}

.kor-subpage-hero h1 {
    margin: 0;
    color: #051126;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.kor-subpage-crumb {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: #354862;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    flex-wrap: wrap;
}

.kor-subpage-crumb a {
    color: #3f526b;
}

.kor-subpage-crumb span {
    color: #7c8ca1;
}

.kor-subpage-crumb strong {
    color: #051126;
    font-weight: 900;
}

.contact-page .contact-hero {
    display: none;
}

.page-hero p {
    color: #666;
    font-size: 18px;
}

.page-section {
    padding: 30px 0 80px;
}

.page-card {
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

/* 반응형 */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        justify-content: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: auto;
        padding: 16px 20px;
        flex-direction: column;
        gap: 14px;
    }

    .gnb {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gnb > li > a {
        height: auto;
        padding: 8px 0;
    }

    .submenu {
        top: calc(100% + 8px);
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section h2,
    .container h2 {
        font-size: 28px;
    }
}


.auth-area {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login-btn {
    border: none;
    background: none;
    cursor: pointer;
}

.my-class {
    padding: 8px 14px;
    background: #ddd;
    border-radius: 6px;
}

.my-class.active {
    background: #4da3ff;
    color: #fff;
}

.modal {
    display: none;
}

.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 300px;
}

.modal-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

.modal-box button {
    width: 100%;
    background: #4da3ff;
    color: #fff;
    border: none;
    padding: 10px;
}


.my-class {
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

/* 로그인 상태 (파랑) */
.my-class.active {
    background: #4da3ff;
    color: #fff;
}

/* 비로그인 상태 (회색) */
.my-class.disabled {
    background: #ccc;
    color: #666;
    cursor: pointer;
}

.auth-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-class {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-sizing: border-box;
}

.my-class.active {
    background: #4da3ff;
    color: #fff;
}

.my-class.disabled {
    background: #ccc;
    color: #666;
    cursor: pointer;
}

.my-class.disabled:hover {
    background: #bdbdbd;
}

.my-class.admin-btn {
    background: #2f80ed;
    color: #fff;
}

.welcome-text {
    font-size: 15px;
    color: #333;
    white-space: nowrap;
}

.login-btn,
.logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* 로그인 버튼 */
.login-btn {
    border: 1px solid #4da3ff;
    background: #fff;
    color: #4da3ff;
}

.login-btn:hover {
    background: #eef6ff;
}

/* 로그아웃 버튼 */
.logout-btn {
    border: 1px solid #d0d7e2;
    background: #fff;
    color: #333;
}

.logout-btn:hover {
    background: #f5f7fa;
    border-color: #b8c2d1;
}

/* 관리자 버튼 */
.admin-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    background: #2f80ed;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

/* 유저 이름 */
.user-name {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.user-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    background: #eef3fb;
    color: #2a4f77;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #d0d7e2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-btn:hover {
    background: #dbeafe;
    border-color: #a8c9f0;
}

/* =========================
   대표 강의 영상
========================= */
.featured-lecture {
    background: #f8fafc;
}

.featured-lecture-head {
    text-align: center;
    margin-bottom: 42px;
}

.featured-lecture-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #e8f0ff;
    color: #2f6fed;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.featured-lecture-head h2 {
    margin-bottom: 14px;
}

.featured-lecture-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.featured-lecture-content {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.featured-lecture-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.featured-lecture-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.featured-lecture-info {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 34px 30px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.lecture-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 800;
}

.featured-lecture-info h3 {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
}

.featured-lecture-info p {
    margin: 0 0 18px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.lecture-points {
    margin: 0 0 24px;
    padding-left: 18px;
    color: #374151;
}

.lecture-points li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.lecture-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.lecture-link-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .featured-lecture-content {
        grid-template-columns: 1fr;
    }

    .featured-lecture-head h2 {
        font-size: 34px;
    }
}

@media (max-width: 560px) {
    .featured-lecture-head h2 {
        font-size: 28px;
    }

    .featured-lecture-subtitle,
    .featured-lecture-info p,
    .lecture-points li {
        font-size: 14px;
    }

    .featured-lecture-info {
        padding: 24px 20px;
    }

    .featured-lecture-info h3 {
        font-size: 23px;
    }
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    display: none;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
}

.submenu a:hover {
    background: #f3f6fb;
}

.youtube-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #ffd6d6;
    background: #fff;
    color: #dc2626;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.youtube-link-btn:hover {
    background: #fff5f5;
    border-color: #fca5a5;
    box-shadow: 0 8px 18px rgba(220, 38, 38, 0.12);
    transform: translateY(-1px);
}

.nav-locked,
.locked-link {
    cursor: not-allowed !important;
}

a.nav-locked,
.youtube-link-btn.nav-locked {
    pointer-events: none;
    opacity: 0.48;
    filter: grayscale(0.35);
    box-shadow: none !important;
    transform: none !important;
}

.youtube-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 18px;
    border-radius: 6px;
    background: #ff0000;
    color: #fff;
}

.youtube-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.tuition-page {
    min-height: calc(100vh - 120px);
    padding: 70px 20px 90px;
    background:
        linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f8fbff 100%);
    color: #102033;
}

.tuition-container {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.tuition-hero {
    margin-bottom: 30px;
}

.tuition-kicker {
    display: inline-flex;
    align-items: center;
    height: 32px;
    margin-bottom: 14px;
    padding: 0 13px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
}

.tuition-hero h1 {
    margin: 0 0 13px;
    color: #07172f;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: 0;
}

.tuition-hero p {
    width: min(760px, 100%);
    margin: 0;
    color: #48617f;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    word-break: keep-all;
}

.tuition-guide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.tuition-guide-offline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tuition-guide-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 92px;
    padding: 18px;
    border: 1px solid #d7e6f7;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.tuition-guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
}

.tuition-guide-icon svg,
.tuition-payment-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tuition-guide-item strong,
.tuition-guide-item span {
    display: block;
}

.tuition-guide-item strong {
    margin: 1px 0 6px;
    color: #102033;
    font-size: 15px;
    font-weight: 900;
}

.tuition-guide-item span {
    color: #5f728c;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    word-break: keep-all;
}

.tuition-board {
    padding: 26px 28px 28px;
    border: 1px solid #cfe0f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.tuition-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #dfe7f2;
}

.tuition-card-head h2 {
    margin: 0 0 7px;
    color: #102033;
    font-size: 24px;
    font-weight: 900;
    text-align: left;
}

.tuition-card-head p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    word-break: keep-all;
}

.tuition-card-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 34px;
    padding: 0 13px;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: #f0fdf4;
    color: #15803d;
    font-size: 13px;
    font-weight: 900;
}

.tuition-list {
    display: grid;
    gap: 0;
}

.tuition-payment-message {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
}

.tuition-payment-message.success {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.tuition-payment-message.error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.tuition-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 150px;
    align-items: center;
    gap: 20px;
    min-height: 86px;
    padding: 16px 0;
    border-bottom: 1px solid #e3e9f2;
    background: #ffffff;
    color: #1f2937;
}

.tuition-item-no-action {
    grid-template-columns: minmax(0, 1fr) 150px;
}

.tuition-item:last-child {
    border-bottom: 0;
}

.tuition-item-main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.tuition-level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.tuition-level-elementary {
    background: #eef6ff;
    color: #2563eb;
}

.tuition-level-middle {
    background: #ecfdf5;
    color: #0f766e;
}

.tuition-level-high {
    background: #fff7ed;
    color: #c2410c;
}

.tuition-subject-group,
.tuition-price-group {
    display: grid;
    gap: 4px;
}

.tuition-subject-label,
.tuition-price-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.tuition-subject-value {
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.35;
}

.tuition-price-group {
    flex-shrink: 0;
    text-align: right;
}

.tuition-price-value {
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}

.tuition-payment-form {
    margin: 0;
    flex-shrink: 0;
}

.tuition-payment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 96px;
    height: 42px;
    padding: 0 17px;
    border: 1px solid #2563eb;
    border-radius: 12px;
    background: linear-gradient(180deg, #3388ff 0%, #2467e8 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.16);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.tuition-payment-btn:hover {
    background: linear-gradient(180deg, #2877ef 0%, #1f58d2 100%);
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(37, 99, 235, 0.22);
}

.tuition-payment-btn.muted {
    border-color: #d7e3f3;
    background: #ffffff;
    color: #2563eb;
    box-shadow: none;
}

.tuition-payment-btn:disabled,
.tuition-payment-btn.muted:disabled {
    border-color: #e2e8f0;
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tuition-item-elementary,
.tuition-item-middle,
.tuition-item-high {
    box-shadow: none;
}

@media (max-width: 920px) {
    .tuition-guide {
        grid-template-columns: 1fr;
    }

    .tuition-item {
        grid-template-columns: minmax(0, 1fr) 130px 140px;
    }

    .tuition-item-no-action {
        grid-template-columns: minmax(0, 1fr) 130px;
    }
}

@media (max-width: 768px) {
    .tuition-page {
        padding: 48px 16px 70px;
    }

    .tuition-board {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .tuition-card-head {
        flex-direction: column;
    }

    .tuition-item {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 0;
    }

    .tuition-item-main {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .tuition-price-group {
        width: 100%;
        text-align: left;
    }

    .tuition-payment-form,
    .tuition-payment-btn {
        width: 100%;
    }

    .tuition-price-value {
        font-size: 21px;
    }

    .auth-area {
        flex-wrap: wrap;
        justify-content: center;
    }

    .youtube-link-btn {
        width: 100%;
    }
}

/* Header override */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    max-width: 1400px;
    min-height: 88px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 900;
    color: #1d3557;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-logo-img {
    display: block;
    width: 126px;
    height: auto;
}

.site-logo-mark {
    display: block;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    filter: drop-shadow(0 4px 8px rgba(58, 160, 255, 0.22));
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
}

.logo-text {
    display: inline-flex;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.logo-brand-en {
    gap: 6px;
    font-size: 27px;
    font-weight: 950;
    letter-spacing: 0;
}

.brand-word {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 950;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand-word::after {
    content: "";
    width: 0.22em;
    flex: 0 0 0.22em;
}

.brand-hi {
    color: #3aa0ff;
}

.brand-sky {
    color: #123a7a;
}

.gnb .brand-word {
    font-size: 1.12em;
    filter: drop-shadow(0 5px 10px rgba(58, 160, 255, 0.12));
}

.main-nav {
    min-width: 0;
    height: 100%;
}

.gnb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    height: 100%;
    flex-wrap: nowrap;
}

.gnb > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.gnb > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    white-space: nowrap;
}

.auth-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
}

.my-class,
.login-btn,
.logout-btn,
.youtube-link-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.my-class {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
}

.my-class.active {
    background: #4da3ff;
    color: #fff;
}

.my-class.disabled {
    background: #d1d5db;
    color: #4b5563;
}

.login-btn,
.logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #d0d7e2;
    background: #fff;
    color: #333;
}

.youtube-link-btn {
    order: 99;
}

.submenu {
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 190px;
}

@media (max-width: 1220px) {
    .header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 16px 20px;
        gap: 14px;
    }

    .main-nav,
    .auth-area {
        width: 100%;
    }

    .gnb {
        flex-wrap: wrap;
        gap: 18px 24px;
    }

    .auth-area {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }

    .gnb {
        gap: 12px 18px;
    }

    .gnb > li > a {
        min-height: auto;
        font-size: 15px;
    }

    .auth-area {
        justify-content: center;
    }
}

/* Ppakong-inspired simple top and footer */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #edf0f4;
    box-shadow: none;
}

.header-inner {
    max-width: 1200px;
    min-height: 64px;
    height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.logo {
    gap: 8px;
    color: #101828;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}

.site-logo-img {
    width: 118px;
}

.site-logo-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
}

.site-logo-image {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.portrait-logo {
    width: auto;
    height: 52px;
    padding: 0;
    gap: 6px;
    flex: 0 0 auto;
    border-radius: 999px;
    overflow: visible;
}

.portrait-logo .site-logo-image {
    width: 52px;
    height: 52px;
    border: 1px solid #bfdbfe;
    background: #fff;
}

.site-context-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    min-width: 32px;
    padding: 0 6px;
    border: 1px solid #dbe7f7;
    border-radius: 999px;
    background: #f8fbff;
    color: #123a7a;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.site-context-badge.korean {
    border-color: #fecaca;
    background: #fff5f5;
    color: #dc2626;
}

.site-context-badge.english {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #15803d;
}

.logo-mark {
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 1;
}

.logo-text {
    color: #101828;
}

.logo-brand-en {
    gap: 6px;
    font-size: 27px;
    font-weight: 950;
}

.logo-text .brand-hi,
.brand-word .brand-hi {
    color: #3aa0ff;
}

.logo-text .brand-sky,
.brand-word .brand-sky {
    color: #123a7a;
}

.main-nav {
    height: 100%;
    min-width: 0;
}

.gnb {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    flex-wrap: nowrap;
}

.gnb > li {
    height: 100%;
}

.gnb > li > a {
    min-height: 64px;
    height: 64px;
    padding: 0;
    color: #44546a;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    transition: color 0.18s ease;
}

.gnb > li > a:hover {
    color: #0b5db3;
}

.submenu {
    top: calc(100% - 2px);
    left: 50%;
    min-width: 180px;
    padding: 8px 0;
    transform: translateX(-50%);
    border: 1px solid #e6ebf1;
    border-top: 2px solid #0b5db3;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 14px 26px rgba(16, 24, 40, 0.1);
}

.submenu a,
.submenu li a {
    padding: 10px 16px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.submenu a:hover,
.submenu li a:hover {
    background: #f7f9fc;
    color: #0b5db3;
}

.auth-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
    color: #344054;
    font-size: 15px;
    font-weight: 800;
}

.login-btn,
.logout-btn,
.my-class,
.youtube-link-btn {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #344054;
    box-shadow: none;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.login-btn:hover,
.logout-btn:hover,
.my-class:hover,
.youtube-link-btn:hover {
    background: transparent;
    color: #0b5db3;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.signup-link-btn::before,
.logout-btn::before {
    content: "/";
    margin-right: 6px;
    color: #98a2b3;
    font-weight: 700;
}

.my-class.active,
.my-class.disabled {
    color: #344054;
}

.my-class.disabled {
    display: none;
}

.auth-area .my-class.active {
    height: 34px;
    gap: 6px;
    padding: 0 12px;
    border: 1px solid #d7e7ff;
    border-radius: 8px;
    background: #f2f7ff;
    color: #155fba;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.08);
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.auth-area .my-class.active::before {
    content: "";
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    background: currentColor;
}

.auth-area .my-class.active:hover {
    background: #e8f2ff;
    color: #0b5db3;
    border-color: #bfd9ff;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

.header-point-balance {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: #102033;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.header-payment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid #dc2626;
    border-radius: 6px;
    background: linear-gradient(180deg, #ff5a5a 0%, #e11d48 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 16px rgba(225, 29, 72, 0.24);
}

.header-payment-btn:hover {
    background: linear-gradient(180deg, #ef4444 0%, #be123c 100%);
    color: #fff;
    transform: translateY(-1px);
}

.auth-area .classroom-btn::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5.5h16v10H4zM8 19h8M12 15.5V19' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5.5h16v10H4zM8 19h8M12 15.5V19' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.auth-area .my-class.active + .my-class.active {
    border-color: #dce5f1;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #2d3a4d;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}

.auth-area .user-menu-btn::before {
    width: 16px;
    height: 16px;
    color: #5c728e;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 7.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0ZM4.5 20a7.5 7.5 0 0 1 15 0' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 7.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0ZM4.5 20a7.5 7.5 0 0 1 15 0' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.auth-area .my-class.active + .my-class.active:hover {
    background: #f1f6ff;
    color: #102033;
    border-color: #cbd9ec;
}

.account-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 44px;
}

.account-dropdown-trigger {
    cursor: pointer;
    font-family: inherit;
}

.account-dropdown-trigger::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: 0.65;
}

.account-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1200;
    width: 214px;
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.account-dropdown:hover .account-dropdown-menu,
.account-dropdown:focus-within .account-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown-menu .account-dropdown-profile {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background: #f8fafc;
    height: auto;
    color: #0f172a;
}

.account-dropdown-profile .account-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 20px;
    font-weight: 900;
    overflow: hidden;
}

.account-profile-photo {
    display: block;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    object-fit: cover;
    background: #e2e8f0;
}

.account-dropdown-menu .account-dropdown-profile > div strong,
.account-dropdown-menu .account-dropdown-profile > div span {
    display: block;
    max-width: 136px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-dropdown-menu .account-dropdown-profile > div strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.account-dropdown-menu .account-dropdown-profile > div span {
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.account-dropdown-menu .account-dropdown-profile:hover {
    background: #eef6ff;
    color: #0f172a;
}

.account-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 38px;
    padding: 0 10px;
    border-radius: 9px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    transition: background 0.15s ease, color 0.15s ease;
}

.account-dropdown-menu a:hover {
    background: #eff6ff;
    color: #0b5db3;
}

.account-dropdown-menu a:last-child {
    margin-top: 6px;
    border-top: 1px solid #eef2f7;
    border-radius: 0 0 9px 9px;
    color: #dc2626;
}

.account-dropdown-menu a:last-child:hover {
    background: #fff1f2;
    color: #b91c1c;
}

.account-menu-icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    background: currentColor;
}

.account-menu-profile {
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM4.5 21a7.5 7.5 0 0 1 15 0' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM4.5 21a7.5 7.5 0 0 1 15 0' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-menu-history {
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h10v18l-2-1.2-2 1.2-2-1.2-2 1.2-2-1.2V3ZM9 8h6M9 12h6M9 16h4' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h10v18l-2-1.2-2 1.2-2-1.2-2 1.2-2-1.2V3ZM9 8h6M9 12h6M9 16h4' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-menu-cart {
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6h2l1.2 9.2a2 2 0 0 0 2 1.8h6.7a2 2 0 0 0 1.9-1.4L21 8H8M10 21h.1M18 21h.1' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6h2l1.2 9.2a2 2 0 0 0 2 1.8h6.7a2 2 0 0 0 1.9-1.4L21 8H8M10 21h.1M18 21h.1' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-menu-logout {
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 4h3a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-3M10 8l-4 4 4 4M6 12h10' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 4h3a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-3M10 8l-4 4 4 4M6 12h10' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.youtube-link-btn {
    display: none;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid #dfe4ea;
    background: #fff;
    color: #102033;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 46px 24px 48px;
}

.footer-link-group {
    display: grid;
    gap: 8px;
    align-content: start;
}

.footer-link-group h2 {
    margin: 0 0 2px;
    color: #102033;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

.footer-link-group a {
    color: #102033;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.footer-link-group a:hover,
.footer-policy a:hover {
    color: #0b5db3;
}

.footer-info {
    margin-bottom: 24px;
}

.footer-info strong {
    display: block;
    margin-bottom: 10px;
    color: #102033;
    font-size: 17px;
    font-weight: 900;
}

.footer-info p {
    margin: 4px 0;
    color: #526173;
    font-size: 14px;
    line-height: 1.65;
}

.footer-bottom-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px auto;
    align-items: start;
    gap: 54px;
}

.footer-business {
    min-width: 0;
}

.footer-customer {
    align-self: start;
}

.footer-policy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-policy a {
    color: #102033;
    font-size: 15px;
    font-weight: 900;
}

.footer-copy {
    margin: 0;
    color: #526173;
    font-size: 14px;
    white-space: nowrap;
    align-self: end;
    padding-bottom: 2px;
}

.legal-page {
    background: #fff;
    color: #102033;
}

.legal-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 72px 24px 24px;
}

.legal-container h1 {
    margin: 0 0 72px;
    color: #102033;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
}

.legal-body {
    color: #102033;
    font-size: 16px;
    line-height: 1.72;
    word-break: keep-all;
}

.legal-body h2 {
    margin: 0 0 28px;
    padding-top: 24px;
    color: #102033;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    text-align: left;
}

.legal-body h3 {
    margin: 30px 0 22px;
    color: #102033;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.4;
}

.legal-body p {
    margin: 0 0 22px;
}

.legal-body ol {
    margin: 0 0 26px;
    padding-left: 22px;
    list-style: decimal;
}

.legal-body li {
    margin: 5px 0;
}

.legal-table-wrap {
    width: 100%;
    margin: 10px 0 18px;
    overflow-x: auto;
}

.legal-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: #102033;
    font-size: 14px;
    line-height: 1.45;
}

.legal-table th,
.legal-table td {
    padding: 8px 10px;
    border: 1px solid #d9dde3;
    text-align: left;
    vertical-align: middle;
}

.legal-table th {
    background: #ececec;
    font-weight: 900;
}

@media (max-width: 1120px) {
    .header-inner {
        height: auto;
        min-height: 64px;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 16px 20px;
        gap: 12px;
    }

    .gnb {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 22px;
    }

    .gnb > li > a {
        height: auto;
        min-height: 32px;
    }

    .auth-area {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 14px 12px;
        gap: 10px;
    }

    .gnb {
        gap: 6px 14px;
    }

    .gnb > li > a {
        font-size: 14px;
    }

    .auth-area {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
        line-height: 1.2;
    }

    .auth-area .my-class.active,
    .logout-btn {
        height: auto;
        min-height: 34px;
        line-height: 1.2;
    }

    .auth-area .my-class.active {
        max-width: 100%;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .site-footer {
        margin-top: 56px;
    }

    .footer-inner {
        padding: 36px 20px 40px;
    }

    .footer-bottom-layout {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-policy {
        flex-wrap: wrap;
    }

    .legal-container {
        padding: 54px 20px 8px;
    }

    .legal-container h1 {
        margin-bottom: 48px;
        font-size: 25px;
    }

    .legal-body {
        font-size: 15px;
        line-height: 1.68;
    }

    .legal-body h2 {
        margin-bottom: 22px;
        font-size: 23px;
    }

    .legal-body h3 {
        margin: 26px 0 16px;
        font-size: 19px;
    }

    .kor-subpage-hero {
        padding: 24px 0;
        background-size: 760px auto;
    }

    .kor-subpage-hero-inner {
        min-height: 70px;
        align-items: flex-start;
        text-align: left;
    }

    .kor-subpage-hero h1 {
        font-size: 28px;
    }

    .kor-subpage-crumb {
        justify-content: flex-start;
        gap: 8px;
        font-size: 13px;
    }
}
