:root {
    --bg: #f3f5f7;
    --surface: #ffffff;
    --surface-soft: #f7f8fa;
    --text: #16181d;
    --muted: #6f7782;
    --line: #dde3ea;
    --line-strong: #c7d0da;
    --brand: #0b57d0;
    --brand-deep: #083b91;
    --accent: #e53935;
    --accent-soft: #fff1ee;
    --shadow: none;
    --radius-lg: 14px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --container: 1380px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    background:
        radial-gradient(circle at 14% 0%, rgba(145, 204, 255, 0.28), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(173, 226, 214, 0.18), transparent 24%),
        radial-gradient(circle at 48% 12%, rgba(255, 255, 255, 0.98), transparent 26%),
        linear-gradient(180deg, #eef6ff 0, #f7fbff 185px, #f3f5f7 360px, #f3f5f7 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    height: 400px;
    background:
        radial-gradient(circle at 12% 10%, rgba(160, 214, 255, 0.34), transparent 23%),
        radial-gradient(circle at 86% 8%, rgba(194, 235, 223, 0.2), transparent 22%),
        radial-gradient(circle at 28% 0%, rgba(255, 244, 225, 0.34), transparent 16%),
        radial-gradient(circle at 55% 16%, rgba(255, 255, 255, 0.95), transparent 17%);
    filter: blur(12px);
    transform-origin: center top;
    animation: heroGlowShift 16s ease-in-out infinite alternate;
}

body::after {
    height: 320px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.72) 32%, rgba(255, 248, 236, 0.26) 39%, rgba(255, 255, 255, 0) 47%);
    opacity: 0;
    transform: translateX(-36%) skewX(-18deg);
    animation: heroSheenSweep 10s ease-in-out infinite;
}

body.page-home {
    background:
        radial-gradient(circle at 14% 0%, rgba(145, 204, 255, 0.18), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(173, 226, 214, 0.12), transparent 24%),
        radial-gradient(circle at 48% 12%, rgba(255, 255, 255, 0.72), transparent 26%),
        linear-gradient(180deg, rgba(238, 246, 255, 0.82) 0, rgba(247, 251, 255, 0.78) 185px, #f3f5f7 360px, #f3f5f7 100%);
}

body.page-home::before {
    height: 400px;
    background:
        radial-gradient(circle at 12% 10%, rgba(160, 214, 255, 0.22), transparent 23%),
        radial-gradient(circle at 86% 8%, rgba(194, 235, 223, 0.12), transparent 22%),
        radial-gradient(circle at 28% 0%, rgba(255, 244, 225, 0.18), transparent 16%),
        radial-gradient(circle at 55% 16%, rgba(255, 255, 255, 0.62), transparent 17%);
    filter: blur(14px);
}

body.page-home::after {
    height: 320px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.4) 32%, rgba(255, 248, 236, 0.14) 39%, rgba(255, 255, 255, 0) 47%);
}

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

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

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    backdrop-filter: none;
    background: transparent;
    border-bottom: 0;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.sticky-shadow {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(210, 219, 229, 0.9);
    box-shadow: 0 10px 30px rgba(32, 54, 86, 0.08);
    backdrop-filter: blur(14px);
}

.header-util {
    padding-top: 50px;
    border-bottom: 0;
    background: transparent;
    font-size: 13px;
    color: var(--muted);
}

.header-util-inner,
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-util-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px;
    min-height: 74px;
}

.header-util-spacer {
    min-width: 0;
}

.header-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    grid-template-areas: "nav search";
    gap: 18px;
}

.main-nav ul,
.util-links,
.trending-list,
.section-list,
.footer-links,
.footer-meta {
    display: flex;
    align-items: center;
}

.footer-meta {
    gap: 16px;
}

.util-links {
    justify-self: end;
    justify-content: flex-end;
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    color: #4b5a6d;
}

.util-links a {
    position: relative;
    transition: color 0.2s ease;
}

.util-links a + a::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 0 12px;
    vertical-align: middle;
    background: rgba(120, 136, 152, 0.45);
}

.header-util a:hover,
.section-link:hover,
.footer-links a:hover {
    color: var(--brand);
}

.header-nav-brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.logo a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 10px 14px 10px 10px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 14% 24%, rgba(114, 186, 255, 0.24), transparent 18%),
        radial-gradient(circle at 84% 26%, rgba(104, 221, 206, 0.16), transparent 20%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 8%, transparent 8%, transparent 16%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.14));
    background-size: auto, auto, 18px 18px, auto;
    border: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), 0 8px 18px rgba(96, 129, 168, 0.08);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.logo a::before,
.logo a::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.logo a:hover {
    transform: translateY(-1px);
    background:
        radial-gradient(circle at 14% 24%, rgba(114, 186, 255, 0.28), transparent 18%),
        radial-gradient(circle at 84% 26%, rgba(104, 221, 206, 0.2), transparent 20%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0.16) 8%, transparent 8%, transparent 16%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 12px 24px rgba(71, 118, 181, 0.12);
}

.logo a::before {
    background:
        radial-gradient(ellipse at 18% 38%, rgba(255, 255, 255, 0.48) 0 14%, rgba(255, 255, 255, 0) 15%),
        radial-gradient(ellipse at 32% 34%, rgba(255, 255, 255, 0.4) 0 12%, rgba(255, 255, 255, 0) 13%),
        radial-gradient(ellipse at 54% 44%, rgba(255, 255, 255, 0.42) 0 15%, rgba(255, 255, 255, 0) 16%),
        radial-gradient(ellipse at 72% 30%, rgba(255, 255, 255, 0.34) 0 13%, rgba(255, 255, 255, 0) 14%),
        linear-gradient(115deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    background-size: 240px 100%, 220px 100%, 260px 100%, 210px 100%, auto;
    background-repeat: repeat-x;
    background-position: 0 0, 40px 0, 120px 0, 180px 0, 0 0;
    opacity: 0.52;
    animation: logoCloudDrift 18s linear infinite;
}

.logo a::after {
    inset: 3px;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent 42%);
    opacity: 0.8;
}

.logo-line {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.logo-line-main {
    gap: 14px;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 7px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 72% 76%, rgba(120, 194, 255, 0.24), rgba(120, 194, 255, 0) 34%),
        repeating-radial-gradient(circle at 50% 50%, rgba(11, 87, 208, 0.08) 0, rgba(11, 87, 208, 0.08) 2px, transparent 2px, transparent 10px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 246, 255, 0.92));
    border: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 24px rgba(71, 118, 181, 0.18);
    animation: logo-float 4.8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.48), transparent 42%),
        conic-gradient(from 210deg at 50% 50%, rgba(11, 87, 208, 0.08), rgba(255, 255, 255, 0), rgba(11, 87, 208, 0.08));
    opacity: 0.72;
    pointer-events: none;
}

.logo-wordmark {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.logo-overline {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.34em;
    color: #32567d;
    line-height: 1;
    text-transform: uppercase;
    padding-left: 2px;
}

.logo-mark {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #0f1724;
    line-height: 1.05;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.logo-image {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
}

@keyframes logo-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes logoCloudDrift {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(120px);
    }
}

@keyframes heroGlowShift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.92;
    }

    50% {
        transform: translate3d(0, 6px, 0) scale(1.04);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, -4px, 0) scale(1.02);
        opacity: 0.88;
    }
}

@keyframes heroSheenSweep {
    0%,
    100% {
        opacity: 0;
        transform: translateX(-38%) skewX(-18deg);
    }

    18% {
        opacity: 0;
    }

    40% {
        opacity: 0.72;
    }

    56% {
        opacity: 0;
        transform: translateX(138%) skewX(-18deg);
    }
}

@keyframes headerStarDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(10px, -6px, 0);
    }

    100% {
        transform: translate3d(-8px, 8px, 0);
    }
}

@keyframes headerStarTwinkle {
    0%,
    100% {
        opacity: 0.32;
    }

    50% {
        opacity: 0.82;
    }
}

@keyframes headerNebulaShift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.28;
    }

    50% {
        transform: translate3d(0, -8px, 0) scale(1.05);
        opacity: 0.42;
    }

    100% {
        transform: translate3d(0, 6px, 0) scale(1.02);
        opacity: 0.3;
    }
}

@keyframes photoFlashBloom {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }

    12% {
        opacity: 0.78;
    }

    28% {
        opacity: 0.16;
        transform: scale(1.18);
    }

    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

@keyframes photoFlashSweep {
    0% {
        opacity: 0;
        transform: translateX(-155%) skewX(-24deg);
    }

    18% {
        opacity: 0;
    }

    36% {
        opacity: 0.72;
    }

    56% {
        opacity: 0.18;
    }

    100% {
        opacity: 0;
        transform: translateX(175%) skewX(-24deg);
    }
}

@keyframes photoFlashExposure {
    0% {
        filter: saturate(0.88) contrast(1.02) brightness(0.96);
    }

    10% {
        filter: saturate(1) contrast(1.08) brightness(1.24);
    }

    22% {
        filter: saturate(0.92) contrast(1.04) brightness(1.02);
    }

    100% {
        filter: saturate(0.88) contrast(1.02) brightness(0.96);
    }
}

@keyframes photoFlashBloomCycle {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }

    2.6% {
        opacity: 0.78;
    }

    5.9% {
        opacity: 0.16;
        transform: scale(1.18);
    }

    21%,
    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

@keyframes photoFlashSweepCycle {
    0% {
        opacity: 0;
        transform: translateX(-155%) skewX(-24deg);
    }

    3.2% {
        opacity: 0;
    }

    6.5% {
        opacity: 0.72;
    }

    10.1% {
        opacity: 0.18;
    }

    18%,
    100% {
        opacity: 0;
        transform: translateX(175%) skewX(-24deg);
    }
}

@keyframes photoFlashExposureCycle {
    0% {
        filter: saturate(0.88) contrast(1.02) brightness(0.96);
    }

    2% {
        filter: saturate(1) contrast(1.08) brightness(1.24);
    }

    4.4% {
        filter: saturate(0.92) contrast(1.04) brightness(1.02);
    }

    20%,
    100% {
        filter: saturate(0.88) contrast(1.02) brightness(0.96);
    }
}

@keyframes headlineTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 8px));
    }
}

@keyframes homeStageDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-12px, 8px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes heroPulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.92;
        transform: scale(1.04);
    }
}

.header-search {
    flex: 1;
    max-width: 480px;
}

.main-nav {
    grid-area: nav;
    display: flex;
    align-items: center;
    justify-self: start;
    min-width: 0;
}

.header-search-inline {
    grid-area: search;
    justify-self: end;
    width: 100%;
}

.header-search form {
    display: flex;
    align-items: center;
    height: 52px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 245, 251, 0.94));
    border: 1px solid rgba(177, 196, 222, 0.9);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(109, 138, 173, 0.12);
    backdrop-filter: blur(10px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-search form:focus-within {
    border-color: rgba(11, 87, 208, 0.45);
    box-shadow: 0 14px 30px rgba(11, 87, 208, 0.16);
    transform: translateY(-1px);
}

.header-search input {
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 20px;
    font-size: 15px;
    color: #1d2735;
}

.header-search input::placeholder {
    color: #7c8898;
}

.header-search button {
    width: 60px;
    height: 100%;
    border: 0;
    background: linear-gradient(135deg, #2d6fdd, #1148a8);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.22);
    transition: background 0.2s ease, filter 0.2s ease;
}

.header-search button:hover {
    filter: brightness(1.05);
}

.header-action-link,
.auth-links a,
.admin-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 0;
    background: var(--surface);
    font-size: 14px;
    font-weight: 600;
}

.admin-link a {
    background: var(--accent-soft);
    color: var(--accent);
}

.header-bottom {
    min-height: 78px;
    gap: 18px;
    padding-top: 4px;
    padding-bottom: 12px;
    background: transparent;
    overflow: visible;
}

.main-nav {
    flex: 1;
    overflow: visible;
    scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.main-nav ul {
    gap: 24px;
    list-style: none;
    white-space: nowrap;
    justify-content: flex-start;
}

.main-nav-list {
    position: relative;
    overflow: visible;
}

.nav-item {
    position: relative;
    flex: 0 0 auto;
}

.nav-item:hover,
.nav-item:focus-within {
    z-index: 20;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #324055;
}

.main-nav a:hover,
.main-nav a.active {
    color: #0d3f93;
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(11, 87, 208, 0.82), rgba(50, 161, 255, 0.82));
}

.nav-item.has-submenu > a {
    gap: 8px;
}

.nav-caret {
    font-size: 11px;
    color: #7f8a98;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret,
.nav-item.is-active .nav-caret {
    color: #0d3f93;
    transform: rotate(180deg);
}

.nav-submenu {
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    min-width: 240px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(210, 219, 229, 0.94);
    box-shadow: 0 22px 44px rgba(26, 46, 79, 0.14);
    display: grid;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 60;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu-link {
    display: grid;
    gap: 3px;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(247, 250, 254, 0.8), rgba(255, 255, 255, 0.96));
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-submenu-link strong {
    font-size: 15px;
    line-height: 1.35;
    color: #203047;
}

.nav-submenu-link span {
    font-size: 12px;
    color: #738093;
}

.nav-submenu-link:hover,
.nav-submenu-link.is-current {
    border-color: rgba(11, 87, 208, 0.16);
    background: linear-gradient(180deg, rgba(240, 247, 255, 0.96), rgba(255, 255, 255, 1));
    transform: translateY(-1px);
}

.nav-submenu-link-parent {
    background: linear-gradient(135deg, rgba(11, 87, 208, 0.08), rgba(50, 161, 255, 0.06));
}

.header-search-inline {
    flex: 0 0 340px;
    margin-left: auto;
    padding-left: 18px;
}

.site-main {
    padding: 28px 0 80px;
}

.home-page {
    display: grid;
    gap: 24px;
}

.page-home .site-main {
    position: static;
}

.page-home .home-page {
    gap: 24px;
}

.page-home .home-page::before,
.page-home .home-page::after {
    content: none;
}

.page-home .home-page::before {
    content: none;
}

.page-home .home-page::after {
    content: none;
}

.breaking-strip,
.content-shell,
.story-section,
.sidebar-widget,
.page-block,
.article-shell,
.category-shell {
    background: var(--surface);
    border: 0;
    box-shadow: var(--shadow);
}

.breaking-strip {
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
}

.page-home .breaking-strip {
    background: var(--surface);
    backdrop-filter: none;
    box-shadow: var(--shadow);
}

.breaking-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #101827, #1f2a3d);
    padding: 9px 14px;
    border-radius: 999px;
    letter-spacing: 0.06em;
}

.trending-list {
    position: relative;
    overflow: hidden;
    min-width: 0;
    scrollbar-width: none;
}

.trending-list::-webkit-scrollbar {
    display: none;
}

.trending-track {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: max-content;
    padding-right: 16px;
    animation: headlineTicker 42s linear infinite;
    will-change: transform;
}

.trending-list:hover .trending-track {
    animation-play-state: paused;
}

.trending-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: #263241;
    font-weight: 600;
    flex: 0 0 auto;
}

.trending-rank {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}

.content-shell {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.page-home .content-shell {
    position: static;
}

.headline-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
    gap: 24px;
}

.headline-main {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 22px;
}

.hero-story {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background: #121d2f;
    box-shadow: none;
    border: 0;
}

.hero-story::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 17, 0.02) 0%, rgba(7, 11, 17, 0.86) 78%);
}

.page-home .hero-story::before {
    content: none;
}

.hero-story img {
    height: 100%;
    object-fit: cover;
}

.hero-story-media,
.compact-story-media,
.mini-card-media,
.section-feature-media {
    display: block;
}

.hero-story-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    padding: 32px;
    color: #fff;
}

.story-kicker,
.section-kicker,
.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.story-kicker {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.hero-story h2 {
    margin-top: 14px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.hero-summary {
    margin-top: 14px;
    max-width: 92%;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.hero-side {
    display: grid;
    gap: 16px;
}

.compact-story {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f8fafc);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .compact-story,
.page-home .sidebar-widget,
.page-home .story-section {
    box-shadow: var(--shadow);
}

.compact-story:hover,
.mini-card:hover,
.section-feature:hover,
.section-item:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.compact-story img {
    height: 170px;
    object-fit: cover;
    border-radius: 0;
}

.compact-story h3 {
    font-size: 22px;
    line-height: 1.34;
    letter-spacing: -0.03em;
}

.story-meta,
.mini-meta,
.section-meta,
.rank-meta,
.article-meta,
.category-header p {
    color: var(--muted);
    font-size: 13px;
}

.sidebar-stack {
    display: grid;
    gap: 18px;
}

.opinion-widget {
    background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.sidebar-widget {
    border-radius: 24px;
    padding: 22px;
}

.widget-head,
.section-head,
.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.widget-head h3,
.section-head h2,
.category-header h1,
.article-title {
    font-size: 24px;
    line-height: 1.28;
    letter-spacing: -0.04em;
}

.widget-head p,
.section-head p {
    color: var(--muted);
    font-size: 13px;
}

.rank-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.rank-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #101827;
    color: #fff;
    font-weight: 800;
}

.rank-item h4 {
    font-size: 16px;
    line-height: 1.4;
}

.rank-item + .rank-item {
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.popular-card-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.popular-card {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popular-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.popular-card-thumb {
    display: block;
}

.popular-card-thumb img {
    height: 188px;
    object-fit: cover;
    border-radius: 0;
}

.popular-card-body {
    min-width: 0;
}

.popular-card-body h4 {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.4;
}

.popular-card-body p {
    margin-top: 10px;
    color: #48505c;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.article-popular-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-popular-list .popular-card-body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: calc(1.6em * 2);
}

.mini-grid {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.mini-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-card img {
    height: 84px;
    object-fit: cover;
    border-radius: 0;
}

.mini-card h4 {
    font-size: 16px;
    line-height: 1.45;
}

.mini-summary {
    margin-top: 6px;
    color: #4f5b6b;
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.flash-video-roller {
    margin-top: 24px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #101827, #1a2942);
    color: #f4f7fb;
}

.flash-video-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 20px;
    align-items: stretch;
}

.flash-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #08111f;
    aspect-ratio: 16 / 9;
}

.flash-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.flash-video-copy {
    display: grid;
    align-content: center;
    gap: 10px;
}

.flash-video-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: rgba(163, 205, 255, 0.84);
}

.flash-video-copy h3 {
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.flash-video-meta {
    color: rgba(244, 247, 251, 0.72);
    font-size: 14px;
}

.flash-video-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f73e0, #0f4fb3);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.flash-video-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.flash-video-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.flash-video-item:hover,
.flash-video-item.is-active {
    transform: translateY(-1px);
    border-color: rgba(125, 191, 255, 0.4);
    background: rgba(82, 144, 235, 0.14);
}

.flash-video-item img {
    width: 92px;
    height: 56px;
    object-fit: cover;
    border-radius: 12px;
}

.flash-video-item span {
    min-width: 0;
}

.flash-video-item strong,
.flash-video-item small {
    display: block;
}

.flash-video-item strong {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.flash-video-item small {
    margin-top: 6px;
    color: rgba(244, 247, 251, 0.66);
    font-size: 12px;
}

.opinion-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.opinion-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 14px;
    align-items: start;
}

.opinion-item + .opinion-item {
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.opinion-item-thumb {
    display: block;
    order: 2;
}

.opinion-item-thumb img {
    height: 108px;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}

.opinion-item-body {
    min-width: 0;
    order: 1;
}

.opinion-item h4 {
    font-size: 17px;
    line-height: 1.45;
}

.opinion-excerpt {
    margin-top: 8px;
    color: #4f5b6b;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.opinion-author {
    margin-top: 10px;
    color: #2f5f96;
    font-size: 13px;
    font-weight: 700;
}

.story-sections {
    display: grid;
    gap: 22px;
    margin-top: 24px;
}

.special-corner-sections {
    margin-top: 28px;
}

.special-corner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.special-corner-card {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f6f9fd);
}

.special-corner-card .section-head {
    align-items: start;
}

.special-corner-card .section-head h3 {
    font-size: 24px;
    line-height: 1.28;
    letter-spacing: -0.04em;
}

.story-section {
    border-radius: 28px;
    padding: 24px;
}

.section-kicker {
    background: rgba(11, 87, 208, 0.08);
    color: var(--brand);
}

.section-link {
    color: var(--brand);
    font-size: 14px;
    font-weight: 700;
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 22px;
    margin-top: 20px;
}

.section-feature {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f8fafc);
    border: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-feature img {
    height: 290px;
    object-fit: cover;
    border-radius: 0;
}

.section-feature h3 {
    font-size: 28px;
    line-height: 1.26;
    letter-spacing: -0.04em;
}

.section-feature p,
.section-item p,
.article-body,
.empty-message,
.sidebar-note {
    color: #424a57;
    font-size: 15px;
}

.section-list {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
}

.section-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 20px;
    border: 0;
    background: var(--surface);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-item-thumb {
    display: block;
}

.section-item-thumb img {
    height: 88px;
    object-fit: cover;
    border-radius: 0;
}

.section-item-body {
    min-width: 0;
}

.section-item-body > p:last-child {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: calc(1.45em * 2);
}

.section-item h4 {
    font-size: 18px;
    line-height: 1.4;
}

.editor-sidebar {
    display: grid;
    gap: 18px;
}

.newsletter-card {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0b1f49, #0b57d0);
    color: #fff;
}

.newsletter-card h3 {
    font-size: 24px;
    line-height: 1.3;
}

.newsletter-card p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.newsletter-card .meta-pill {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.page-block,
.article-shell,
.category-shell {
    border-radius: 30px;
    padding: 28px;
}

.category-shell {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.category-main {
    min-width: 0;
}

.admin-field-group {
    display: grid;
    gap: 10px;
    padding: 4px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.admin-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.7fr);
    gap: 18px;
    margin-top: 24px;
}

.admin-hero-main,
.admin-hero-side,
.admin-stat-card,
.admin-quick-link,
.admin-status-item,
.admin-draft-item,
.admin-table-wrap {
    border: 0;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.admin-hero-main {
    padding: 24px;
    border-radius: 24px;
}

.admin-hero-main h2 {
    margin-top: 12px;
    font-size: 30px;
    line-height: 1.22;
    letter-spacing: -0.04em;
}

.admin-hero-main p {
    margin-top: 10px;
    color: #4a5563;
}

.admin-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.admin-hero-side {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
}

.admin-mini-stat {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 0;
}

.admin-mini-stat span {
    color: var(--muted);
    font-size: 13px;
}

.admin-mini-stat strong {
    font-size: 28px;
    letter-spacing: -0.04em;
}

.admin-page-nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px;
    border-radius: 999px;
    background: #f3f6fa;
    border: 1px solid #dde3ea;
}

.admin-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #516070;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-page-link:hover {
    color: var(--brand);
    transform: translateY(-1px);
}

.admin-page-link.is-active {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
}

.admin-stat-grid,
.admin-dashboard-grid {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.admin-stat-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-stat-card {
    padding: 22px;
    border-radius: 22px;
}

.admin-stat-card h3 {
    margin-top: 8px;
    font-size: 32px;
    letter-spacing: -0.04em;
}

.admin-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-quick-links,
.admin-status-list,
.admin-draft-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.admin-category-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.admin-category-link {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dde3ea;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-category-link:hover {
    border-color: rgba(11, 87, 208, 0.28);
    background: #f8fbff;
    transform: translateY(-1px);
}

.admin-category-link strong {
    font-size: 15px;
}

.admin-category-link span {
    color: var(--muted);
    font-size: 12px;
}

.admin-category-link.is-active {
    border-color: rgba(11, 87, 208, 0.34);
    background: rgba(11, 87, 208, 0.06);
}

.admin-quick-link,
.admin-draft-item {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 18px;
}

.admin-quick-link strong,
.admin-draft-item strong {
    font-size: 16px;
}

.admin-quick-link span,
.admin-draft-item span {
    color: var(--muted);
    font-size: 13px;
}

.admin-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
}

.admin-status-item span {
    color: var(--muted);
    font-size: 14px;
}

.admin-status-item strong {
    font-size: 20px;
}

.admin-table-block {
    margin-top: 30px;
}

.admin-table-wrap {
    overflow-x: auto;
    margin-top: 18px;
    border-radius: 22px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid #e9eef4;
}

.admin-table th {
    font-size: 13px;
    color: var(--muted);
    background: rgba(247, 249, 252, 0.8);
}

.admin-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.admin-status-pill.is-published {
    background: rgba(11, 87, 208, 0.1);
    color: var(--brand);
}

.admin-status-pill.is-draft {
    background: rgba(229, 57, 53, 0.1);
    color: var(--accent);
}

.admin-table-divider {
    color: #c7d0da;
    margin: 0 6px;
}

.article-layout,
.category-layout,
.subpage-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) 320px;
    gap: 24px;
    align-items: start;
}

.article-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    gap: 8px;
}

.category-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(380px, 0.95fr);
    gap: 28px;
}

.subpage-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    gap: 8px;
}

.category-layout .sidebar-widget {
    border-radius: 16px;
}

.subpage-layout .sidebar-widget {
    border-radius: 16px;
}

.category-layout .popular-card-thumb img {
    height: 168px;
}

.category-layout .mini-card {
    border-radius: 14px;
}

.subpage-layout .mini-card {
    border-radius: 0;
}

.category-layout .rank-item + .rank-item,
.category-layout .opinion-item + .opinion-item {
    border-top: 0;
}

.article-title {
    font-size: clamp(28px, 2.7vw, 40px);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 14px;
}

.article-share-tools {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.article-header-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
}

.article-admin-tools,
.article-admin-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-admin-tools {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.article-admin-form {
    margin: 0;
}

.article-share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.article-share-button:hover {
    background: #f7f9fc;
    border-color: #cbd5e1;
    color: var(--brand);
    transform: translateY(-1px);
}

.article-share-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: 0 0 auto;
}

.article-share-button i {
    width: 16px;
    font-size: 14px;
    text-align: center;
    flex: 0 0 16px;
}

.article-share-button.is-copied {
    background: rgba(11, 87, 208, 0.08);
    border-color: rgba(11, 87, 208, 0.22);
    color: var(--brand);
}

.print-article-brand {
    display: none;
}

.article-hero {
    margin-top: 22px;
}

.article-hero img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 0;
}

.article-body {
    margin-top: 24px;
    font-size: 19px;
    line-height: 1.9;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body figure,
.article-body table {
    margin: 0 0 18px;
}

.article-body img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.article-body figure.image {
    margin: 24px 0;
}

.article-body figure.image img {
    display: block;
}

.article-body figcaption {
    margin-top: 10px;
    color: #6a7482;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.article-body figure.media {
    margin: 28px 0;
}

.video-embed {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 18px;
    background: #09111f;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-body blockquote {
    padding: 18px 20px;
    border-left: 4px solid var(--brand);
    background: #f7f9fc;
    border-radius: 0 16px 16px 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
}

.article-body table td,
.article-body table th {
    border: 1px solid var(--line);
    padding: 10px 12px;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: #3f4854;
    font-size: 15px;
}

.article-byline-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f6fa;
    color: #5b6675;
    font-size: 12px;
    font-weight: 800;
}

.article-nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.article-nav-link {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #f8fafc);
    color: #172234;
    border: 1px solid #e1e8f0;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.article-nav-link:hover {
    transform: translateY(-1px);
    border-color: #c8d7ea;
    background: #fbfdff;
}

.article-nav-link.is-disabled {
    color: #8a94a3;
    background: #f7f9fc;
    border-color: #e7edf4;
}

.article-nav-link-center {
    text-align: center;
    align-content: center;
}

.article-nav-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #6b7685;
}

.article-nav-link strong {
    font-size: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@media print {
    @page {
        margin: 16mm 14mm 18mm;
    }

    html,
    body {
        background: #fff !important;
    }

    body {
        color: #000;
    }

    .header-util,
    .site-header,
    .editor-sidebar,
    footer,
    .site-footer,
    .site-footer *,
    .footer-shell,
    .footer-top,
    .footer-brand,
    .footer-panel,
    .footer-copy,
    .footer-bottom-bar,
    .footer-counter-group,
    .footer-counter,
    .article-share-tools,
    .article-header-tools,
    .article-admin-tools,
    .subpage-sidebar,
    .header-action-link,
    .meta-pill,
    .simple-article-header .article-lead,
    .article-body figure.media,
    .article-nav-links,
    .print-article-brand,
    .footer-top-button {
        display: none !important;
    }

    .site-main,
    .container,
    .article-shell,
    .article-layout,
    .article-content {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: 0 !important;
    }

    .article-layout {
        display: block !important;
    }

    .print-article-brand {
        display: none !important;
    }

    .print-article-brand img {
        width: 52px;
        height: 52px;
    }

    .print-article-brand strong {
        font-size: 16px;
        letter-spacing: 0.12em;
        color: #111;
    }

    .article-title {
        margin: 0;
        font-size: 26px;
        line-height: 1.28;
        color: #000;
    }

    .article-meta {
        display: flex !important;
        flex-wrap: wrap;
        gap: 6px 12px;
        margin: 0 0 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #d4d4d4;
        color: #444 !important;
        font-size: 11px;
        line-height: 1.5;
    }

    .article-meta span {
        color: inherit !important;
    }

    .article-hero {
        margin-top: 18px;
    }

    .article-hero img,
    .article-body img {
        max-height: none;
        page-break-inside: avoid;
    }

    .article-body {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.75;
        color: #000;
    }

    .article-body p,
    .article-body ul,
    .article-body ol,
    .article-body blockquote,
    .article-body figure,
    .article-body table {
        color: #000;
    }

    .article-byline {
        margin-top: 24px;
        padding-top: 14px;
        border-top: 1px solid #bbb;
        color: #000;
    }

    .article-byline-label {
        background: #f2f2f2;
        color: #333;
    }
}

.category-header {
    margin-bottom: 20px;
}

.category-header-with-subnav {
    margin-bottom: 14px;
}

.category-header-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 14px;
    font-size: 13px;
    color: var(--muted);
}

.category-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    border: 1px solid #e2e8f0;
}

.category-subnav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dde3ea;
    color: #4a5b70;
    font-size: 14px;
    font-weight: 700;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.category-subnav-link:hover,
.category-subnav-link.is-active {
    border-color: rgba(11, 87, 208, 0.24);
    background: rgba(11, 87, 208, 0.08);
    color: #0d3f93;
    transform: translateY(-1px);
}

.category-list {
    display: grid;
    gap: 18px;
}

.category-list-item-reserve[hidden] {
    display: none !important;
}

.category-list-item {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border-radius: 16px;
    border: 0;
    background: linear-gradient(180deg, #fff, #f8fafc);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-list-item-with-label {
    position: relative;
    grid-template-columns: 260px minmax(0, 1fr);
    overflow: visible;
}

.category-vertical-title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -40px;
    top: 18px;
    bottom: 18px;
    width: 40px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ffffff;
    border-radius: 14px 0 0 14px;
    background: linear-gradient(180deg, #4f8df5 0%, #2c74d8 52%, #46b8c8 100%);
    box-shadow: 0 12px 26px rgba(69, 128, 209, 0.2);
    padding: 10px 0;
}

.category-list-item:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.category-list-thumb {
    display: block;
}

.category-list-thumb img {
    height: 180px;
    object-fit: cover;
    border-radius: 0;
}

.category-layout .mini-card img {
    border-radius: 0;
}

.category-list-body {
    display: grid;
    align-content: center;
}

.category-list-body h3 {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.category-list-body h3 a,
.news-card h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.category-list-body p {
    margin-top: 12px;
    color: #48505c;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    overflow: hidden;
    border-radius: 22px;
    border: 0;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.news-card img {
    height: 210px;
    object-fit: cover;
}

.news-card-content {
    padding: 18px;
}

.news-card h3 {
    font-size: 18px;
    line-height: 1.42;
    margin-top: 10px;
}

.news-card p {
    margin-top: 10px;
    color: #48505c;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    font-weight: 700;
}

.pagination-gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    color: #7a8594;
    font-weight: 700;
}

.pagination a:hover {
    background: var(--brand);
    color: #fff;
}

.site-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    clear: both;
    position: relative;
    z-index: 1;
    margin-top: 32px;
    padding: 0 0 60px;
    background: linear-gradient(135deg, #121a28, #1d2940);
}

.footer-shell {
    background: transparent;
    color: #f4f7fb;
    border-radius: 0;
    padding: 32px;
    box-shadow: none;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(220px, 0.7fr));
    gap: 24px;
}

.footer-brand h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.footer-brand p,
.footer-panel p,
.footer-copy {
    color: rgba(244, 247, 251, 0.72);
}

.footer-panel h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-links {
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 18px;
}

.footer-copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.footer-counter-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-counter {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 18px;
    margin-top: 18px;
}

.footer-counter-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(244, 247, 251, 0.68);
}

.footer-counter-value {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.footer-top-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(11, 31, 73, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(10, 23, 48, 0.22);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, box-shadow 0.2s ease;
}

.footer-top-button.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.footer-top-button:hover {
    background: rgba(8, 59, 145, 0.96);
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(8, 38, 84, 0.26);
}

.empty-message {
    padding: 22px;
    border-radius: 18px;
    background: var(--surface-soft);
}

@media (max-width: 1220px) {
    .headline-grid,
    .article-layout,
    .category-layout,
    .subpage-layout,
    .section-grid,
    .footer-top,
    .special-corner-grid {
        grid-template-columns: 1fr;
    }

    .admin-hero,
    .admin-stat-grid,
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

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

    .header-search {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-top-button {
        right: 16px;
        bottom: 16px;
        min-height: 44px;
        padding: 0 15px;
        font-size: 12px;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .breaking-strip,
    .content-shell,
    .story-section,
    .sidebar-widget,
    .page-block,
    .article-shell,
    .category-shell,
    .footer-shell {
        border-radius: 22px;
    }

    .article-nav-links {
        grid-template-columns: 1fr;
    }

    .header-util-inner,
    .header-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .header-util-inner,
    .header-bottom {
        display: flex;
        gap: 12px;
    }

    .headline-main,
    .category-list,
    .category-list-item,
    .section-item {
        grid-template-columns: 1fr;
    }

    .category-list-item-with-label {
        grid-template-columns: 1fr;
    }

    .category-vertical-title {
        position: static;
        width: auto;
        writing-mode: horizontal-tb;
        justify-content: flex-start;
        border-radius: 12px;
        box-shadow: none;
        padding: 8px 12px;
    }

    .popular-card-list {
        grid-template-columns: 1fr;
    }

    .section-item-thumb img {
        height: 180px;
    }

    .header-bottom {
        min-height: auto;
        padding-bottom: 10px;
    }

    .header-nav-brand,
    .header-search-inline {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        border: 0;
    }

    .nav-submenu {
        display: none !important;
    }

    .main-nav {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .main-nav a {
        min-height: 52px;
        font-size: 18px;
    }

    .logo a {
        padding: 8px 10px 8px 8px;
        background-size: auto, auto, 22px 22px, auto;
    }

    .logo-line-main {
        gap: 10px;
    }

    .logo-badge {
        width: 50px;
        height: 50px;
        padding: 6px;
        border-radius: 18px;
    }

    .logo-image {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .logo-overline {
        font-size: 9px;
        letter-spacing: 0.28em;
    }

    .logo-mark {
        font-size: clamp(26px, 7vw, 34px);
        letter-spacing: 0.06em;
    }

    .breaking-strip {
        grid-template-columns: 1fr;
    }

    .hero-story {
        min-height: 430px;
    }

    .hero-story-content {
        padding: 24px;
    }

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

    .mini-card {
        grid-template-columns: 1fr;
    }

    .mini-card img {
        height: 180px;
    }

    .flash-video-stage {
        grid-template-columns: 1fr;
    }

    .flash-video-item {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .flash-video-item img {
        width: 80px;
        height: 50px;
    }

    .category-header,
    .category-header-meta {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .category-subnav {
        gap: 8px;
        padding: 12px;
    }

    .category-subnav-link {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }

    .opinion-item {
        grid-template-columns: 1fr;
    }

    .opinion-item-thumb img {
        height: 180px;
    }

    .category-list-thumb img {
        height: 220px;
    }
}

body[data-theme] {
    --theme-accent-rgb: 43, 112, 255;
    --theme-panel: rgba(255, 255, 255, 0.9);
    --theme-panel-strong: rgba(255, 255, 255, 0.98);
    --theme-soft: rgba(var(--theme-accent-rgb), 0.1);
    --theme-line: rgba(var(--theme-accent-rgb), 0.16);
    --theme-shadow: none;
}

body[data-theme="special-briefing"] {
    --brand: #2b70ff;
    --brand-deep: #0e429c;
    --theme-accent-rgb: 43, 112, 255;
    background:
        radial-gradient(circle at 14% 0%, rgba(104, 162, 255, 0.22), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(160, 212, 255, 0.16), transparent 24%),
        radial-gradient(circle at 48% 12%, rgba(255, 255, 255, 0.86), transparent 26%),
        linear-gradient(180deg, #edf5ff 0, #f7fbff 185px, #f3f5f7 360px, #f3f5f7 100%);
}

body[data-theme="cosmos-civilization"] {
    --brand: #169cb0;
    --brand-deep: #0a6278;
    --theme-accent-rgb: 22, 156, 176;
    background:
        radial-gradient(circle at 14% 0%, rgba(74, 202, 213, 0.2), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(102, 144, 255, 0.16), transparent 24%),
        radial-gradient(circle at 48% 12%, rgba(255, 255, 255, 0.82), transparent 26%),
        linear-gradient(180deg, #edfafd 0, #f5fbff 185px, #f2f6f8 360px, #f2f6f8 100%);
}

body[data-theme="space-life"] {
    --brand: #76b8ff;
    --brand-deep: #295b91;
    --theme-accent-rgb: 118, 184, 255;
    background:
        radial-gradient(circle at 14% 0%, rgba(116, 184, 255, 0.24), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(182, 231, 255, 0.16), transparent 24%),
        radial-gradient(circle at 48% 12%, rgba(255, 255, 255, 0.84), transparent 26%),
        linear-gradient(180deg, #eef7ff 0, #f7fbff 185px, #f2f5f8 360px, #f2f5f8 100%);
}

body[data-theme="migration-survival"] {
    --brand: #e8773d;
    --brand-deep: #a24a22;
    --theme-accent-rgb: 232, 119, 61;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 184, 120, 0.26), transparent 28%),
        radial-gradient(circle at 84% 8%, rgba(255, 222, 194, 0.18), transparent 24%),
        radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.86), transparent 28%),
        linear-gradient(180deg, #fff4ec 0, #fffaf6 185px, #f7f3ee 360px, #f7f3ee 100%);
}

body[data-theme="beom-legend"] {
    --brand: #b57a1d;
    --brand-deep: #6c4512;
    --theme-accent-rgb: 181, 122, 29;
    background:
        radial-gradient(circle at 12% 0%, rgba(220, 174, 99, 0.24), transparent 28%),
        radial-gradient(circle at 84% 8%, rgba(255, 227, 174, 0.16), transparent 24%),
        radial-gradient(circle at 46% 12%, rgba(255, 255, 255, 0.84), transparent 27%),
        linear-gradient(180deg, #fbf3e5 0, #fffaf1 185px, #f7f4ee 360px, #f7f4ee 100%);
}

body[data-theme="media-state"] {
    --brand: #d7565c;
    --brand-deep: #832735;
    --theme-accent-rgb: 215, 86, 92;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 152, 158, 0.22), transparent 28%),
        radial-gradient(circle at 84% 8%, rgba(255, 209, 220, 0.18), transparent 24%),
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.86), transparent 26%),
        linear-gradient(180deg, #fff0f2 0, #fff9fa 185px, #f6f2f4 360px, #f6f2f4 100%);
}

body[data-theme="tech-foundation"] {
    --brand: #18957d;
    --brand-deep: #0b6154;
    --theme-accent-rgb: 24, 149, 125;
    background:
        radial-gradient(circle at 12% 0%, rgba(99, 219, 192, 0.22), transparent 28%),
        radial-gradient(circle at 84% 8%, rgba(155, 238, 220, 0.18), transparent 24%),
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.84), transparent 26%),
        linear-gradient(180deg, #eefbf7 0, #f7fffb 185px, #f1f6f4 360px, #f1f6f4 100%);
}

body[data-theme]::before {
    height: 420px;
    background:
        radial-gradient(circle at 12% 10%, rgba(var(--theme-accent-rgb), 0.22), transparent 23%),
        radial-gradient(circle at 82% 8%, rgba(var(--theme-accent-rgb), 0.12), transparent 22%),
        radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.34), transparent 16%),
        radial-gradient(circle at 55% 16%, rgba(255, 255, 255, 0.9), transparent 17%);
}

body[data-theme]::after {
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.64) 32%, rgba(var(--theme-accent-rgb), 0.08) 39%, rgba(255, 255, 255, 0) 47%);
}

.page-block,
.story-section,
.sidebar-widget,
.article-shell,
.category-shell,
.compact-story,
.popular-card,
.mini-card,
.section-feature,
.section-item,
.admin-stat-card,
.admin-hero-main,
.admin-hero-side,
.admin-mini-stat,
.admin-quick-link,
.admin-status-item,
.admin-draft-item,
.admin-table-wrap,
.news-card,
.atlas-stat-card,
.atlas-card,
.section-atlas-hero,
.page-masthead,
.page-stat-card {
    border: 1px solid rgba(var(--theme-accent-rgb), 0.1);
    background: #fff;
    box-shadow: none;
}

.page-home .content-shell,
.page-home .headline-main,
.page-home .story-sections {
    position: relative;
}

.story-kicker,
.section-kicker,
.meta-pill {
    background: var(--theme-soft);
    color: var(--brand);
}

.hero-story .story-kicker {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.main-nav a.active,
.main-nav a:hover,
.section-link,
.header-util a:hover,
.footer-links a:hover,
.category-subnav-link.is-active,
.category-subnav-link:hover,
.page-stat-link,
.form-helper a {
    color: var(--brand);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    background: linear-gradient(90deg, rgba(var(--theme-accent-rgb), 0.9), rgba(var(--theme-accent-rgb), 0.45));
}

.section-atlas {
    margin-top: 18px;
    margin-bottom: 24px;
    display: grid;
    gap: 18px;
}

.section-atlas-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 18px;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(90deg, rgba(var(--theme-accent-rgb), 0.94), rgba(var(--theme-accent-rgb), 0.28)) top left / 100% 4px no-repeat,
        #fff;
    border: 1px solid var(--theme-line);
    box-shadow: none;
}

.section-atlas-copy h1 {
    margin-top: 12px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.section-atlas-copy p {
    margin-top: 14px;
    max-width: 760px;
    color: #495364;
    font-size: 16px;
    line-height: 1.75;
}

.section-atlas-route {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(15, 25, 43, 0.06);
    color: #374253;
    font-size: 13px;
    font-weight: 700;
}

.section-atlas-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-content: start;
}

.atlas-stat-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.12);
}

.atlas-stat-card span,
.page-stat-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.atlas-stat-card strong,
.page-stat-card strong {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #122033;
}

.section-atlas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

[data-card-theme="special-briefing"],
[data-section-theme="special-briefing"] {
    --card-accent-rgb: 43, 112, 255;
}

[data-card-theme="cosmos-civilization"],
[data-section-theme="cosmos-civilization"] {
    --card-accent-rgb: 22, 156, 176;
}

[data-card-theme="space-life"],
[data-section-theme="space-life"] {
    --card-accent-rgb: 118, 184, 255;
}

[data-card-theme="migration-survival"],
[data-section-theme="migration-survival"] {
    --card-accent-rgb: 232, 119, 61;
}

[data-card-theme="beom-legend"],
[data-section-theme="beom-legend"] {
    --card-accent-rgb: 181, 122, 29;
}

[data-card-theme="media-state"],
[data-section-theme="media-state"] {
    --card-accent-rgb: 215, 86, 92;
}

[data-card-theme="tech-foundation"],
[data-section-theme="tech-foundation"] {
    --card-accent-rgb: 24, 149, 125;
}

.atlas-card,
.story-section[data-section-theme],
.sidebar-widget[data-card-theme],
.newsletter-card[data-card-theme],
.page-masthead[data-section-theme],
.category-shell[data-section-theme],
.article-shell[data-section-theme] {
    --card-accent-rgb: var(--card-accent-rgb, var(--theme-accent-rgb));
}

.atlas-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    min-height: 220px;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(var(--card-accent-rgb), 0.94), rgba(var(--card-accent-rgb), 0.3)) top left / 100% 4px no-repeat,
        #fff;
    border: 1px solid rgba(var(--card-accent-rgb), 0.16);
    box-shadow: none;
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.atlas-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--card-accent-rgb), 0.3);
}

.atlas-card-index,
.atlas-card-count,
.atlas-card-trace,
.page-masthead-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.atlas-card-index,
.page-masthead-eyebrow {
    color: rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.92);
}

.atlas-card strong {
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -0.04em;
    color: #122033;
}

.atlas-card p {
    color: #4f5867;
    font-size: 15px;
    line-height: 1.7;
}

.atlas-card-trace {
    color: #576274;
    letter-spacing: 0.04em;
}

.atlas-card-count {
    color: #142845;
}

.page-masthead {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.94), rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.3)) top left / 100% 4px no-repeat,
        #fff;
    border: 1px solid rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.18);
    box-shadow: none;
}

.page-masthead-copy {
    min-width: 0;
}

.page-masthead-copy .section-kicker,
.page-masthead-copy .meta-pill {
    margin-top: 10px;
}

.page-masthead h1,
.page-masthead .article-title {
    margin-top: 14px;
    font-size: clamp(32px, 3.8vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-masthead p {
    margin-top: 14px;
    color: #4d5868;
    font-size: 15px;
    line-height: 1.75;
}

.page-masthead-route {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(14, 24, 41, 0.05);
    color: #314051;
    font-size: 13px;
    font-weight: 700;
}

.page-masthead-route strong {
    color: rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.7);
}

.page-masthead-meta {
    display: grid;
    align-content: start;
    gap: 12px;
}

.home-video-masthead {
    margin-bottom: 18px;
}

.home-video-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 18px;
    align-items: start;
    padding: 0 22px;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.home-video-frame {
    position: relative;
    align-self: start;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    isolation: isolate;
    border-radius: 28px;
    background:
        radial-gradient(circle at 14% 16%, rgba(122, 168, 216, 0.24), transparent 24%),
        radial-gradient(circle at 84% 82%, rgba(210, 161, 123, 0.14), transparent 22%),
        linear-gradient(145deg, rgba(5, 11, 18, 0.96), rgba(14, 24, 37, 0.84));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 24px 52px rgba(0, 0, 0, 0.34);
    perspective: 1400px;
}

.home-video-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 9% 14%, rgba(255, 255, 255, 0.92) 0 1.2px, transparent 2.2px),
        radial-gradient(circle at 87% 18%, rgba(196, 226, 255, 0.82) 0 1.4px, transparent 2.5px),
        radial-gradient(circle at 18% 86%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px),
        radial-gradient(circle at 78% 78%, rgba(182, 214, 245, 0.74) 0 1.3px, transparent 2.4px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 26%, transparent 72%, rgba(255, 255, 255, 0.08));
    opacity: 0.74;
    transition: opacity 0.8s ease;
}

.home-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 0 24px rgba(122, 168, 216, 0.08),
        0 0 0 1px rgba(122, 168, 216, 0.06);
    pointer-events: none;
    transition: border-color 0.8s ease, box-shadow 0.8s ease;
}

.home-video-frame.is-switching::before {
    opacity: 0.94;
}

.home-video-frame.is-switching::after {
    border-color: rgba(196, 226, 255, 0.28);
    box-shadow:
        inset 0 0 28px rgba(122, 168, 216, 0.15),
        0 0 0 1px rgba(122, 168, 216, 0.12),
        0 0 46px rgba(122, 168, 216, 0.12);
}

.home-video-frame [data-video-iframe] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.034) translate3d(0, 0, 0);
    filter: saturate(0.82) contrast(1) brightness(0.88) blur(14px);
    backface-visibility: hidden;
    will-change: opacity, transform, filter;
    transition:
        opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.96s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.96s cubic-bezier(0.22, 1, 0.36, 1);
    animation: photoFlashExposureCycle 10s linear 0.12s infinite both;
}

.home-video-frame [data-video-iframe].is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translate3d(0, 0, 0);
    filter: saturate(0.9) contrast(1.02) brightness(0.96) blur(0);
}

.home-video-flash {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.home-video-flash::before,
.home-video-flash::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.home-video-flash::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.16) 16%, rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 82% 18%, rgba(192, 224, 255, 0.22), rgba(192, 224, 255, 0) 28%);
    mix-blend-mode: screen;
    animation: photoFlashBloomCycle 10s linear 0s infinite both;
}

.home-video-flash::after {
    inset: -12% -18%;
    background: linear-gradient(108deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.78) 36%, rgba(196, 229, 255, 0.26) 42%, rgba(255, 255, 255, 0) 56%);
    mix-blend-mode: screen;
    animation: photoFlashSweepCycle 10s linear 0.05s infinite both;
}

.home-video-frame:hover .home-video-flash::before {
    animation: photoFlashBloom 1.1s ease-out 0s 1 both;
}

.home-video-frame:hover .home-video-flash::after {
    animation: photoFlashSweep 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) 0.02s 1 both;
}

.home-video-frame:hover [data-video-iframe].is-visible {
    animation: photoFlashExposure 1s ease-out 0s 1 both;
}

.home-video-copy {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
}

.home-video-copy [data-video-title],
.home-video-copy [data-video-meta] {
    transition:
        opacity 0.52s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.72s ease;
    will-change: opacity, transform, filter;
}

.home-video-copy.is-switching [data-video-title],
.home-video-copy.is-switching [data-video-meta] {
    opacity: 0.24;
    transform: translateY(10px);
    filter: blur(8px);
}

.home-video-copy h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    max-width: 10.5ch;
    line-height: 1.12;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-wrap: balance;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.home-video-copy p {
    margin: 0;
    max-width: 43ch;
    color: rgba(242, 247, 252, 0.82);
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: -0.01em;
}

.home-video-note-grid {
    display: grid;
    gap: 10px;
}

.home-video-note {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 0;
    backdrop-filter: none;
}

.home-video-note strong {
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.home-video-note p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(242, 247, 252, 0.68);
}

.home-video-route {
    display: inline-grid;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 0;
    color: rgba(242, 247, 252, 0.76);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.home-video-route strong {
    color: rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.92);
    letter-spacing: 0.12em;
}

.home-video-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.home-video-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 0;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.home-video-item:hover,
.home-video-item.is-active {
    transform: translateY(-1px);
    background: rgba(122, 168, 216, 0.14);
}

.home-video-item img {
    width: 88px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
}

.home-video-item span {
    min-width: 0;
}

.home-video-item strong,
.home-video-item small {
    display: block;
}

.home-video-item strong {
    font-size: 13px;
    line-height: 1.4;
    color: #ffffff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.home-video-item small {
    margin-top: 5px;
    color: rgba(242, 247, 252, 0.6);
    font-size: 11px;
    line-height: 1.4;
}

.page-stat-card {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.12);
}

.page-stat-card-trace strong {
    font-size: 18px;
    line-height: 1.4;
}

.page-stat-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.16);
    font-size: 14px;
    font-weight: 800;
}

.section-compass-band {
    margin-top: 6px;
    margin-bottom: 8px;
}

.section-compass-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;
    align-items: stretch;
}

.section-compass-current,
.section-compass-chip {
    background:
        linear-gradient(90deg, rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.94), rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.3)) top left / 100% 4px no-repeat,
        #fff;
    border: 1px solid rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.14);
    border-radius: 24px;
    box-shadow: none;
}

.section-compass-current {
    display: grid;
    gap: 10px;
    padding: 20px 22px;
}

.section-compass-eyebrow,
.section-compass-chip-name,
.category-panel-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-compass-eyebrow,
.category-panel-eyebrow {
    color: rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.92);
}

.section-compass-current strong {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #132136;
}

.section-compass-current p {
    color: #556173;
    font-size: 14px;
    line-height: 1.7;
}

.section-compass-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.section-compass-chip {
    display: grid;
    gap: 8px;
    min-height: 118px;
    padding: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.section-compass-chip:hover,
.section-compass-chip.is-active {
    transform: translateY(-2px);
    border-color: rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.28);
}

.section-compass-chip-name {
    color: rgba(var(--card-accent-rgb, var(--theme-accent-rgb)), 0.82);
}

.section-compass-chip strong {
    color: #122033;
    font-size: 17px;
    line-height: 1.45;
}

.section-compass-chip-meta {
    color: #617082;
    font-size: 13px;
    line-height: 1.55;
}

.category-shell[data-section-theme] {
    padding: 0;
}

.article-masthead {
    margin-bottom: 18px;
}

.article-lead {
    max-width: 820px;
}

.content-only-shell {
    padding: 28px;
    border-radius: 30px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.content-only-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
    margin-bottom: 24px;
}

.content-only-head-compact {
    align-items: center;
}

.content-only-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(11, 87, 208, 0.08);
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.page-home .content-only-kicker {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
}

.page-home .content-only-head h1 {
    font-size: clamp(24px, 2.9vw, 32px);
}

.content-only-head h1 {
    margin-top: 12px;
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: -0.05em;
}

.content-only-head p {
    max-width: 460px;
    color: #5b6675;
    line-height: 1.7;
}

.content-only-card-media {
    display: block;
}

.pagination a.is-active {
    background: var(--brand);
    color: #fff;
}

.article-shell-simple {
    max-width: 980px;
    margin: 0 auto;
}

.article-layout .article-shell-simple {
    max-width: none;
    margin: 0;
}

.subpage-sidebar {
    position: sticky;
    top: 124px;
}

.simple-article-header {
    display: grid;
    gap: 14px;
}

.simple-article-header .article-meta {
    margin-top: 0;
    color: var(--muted);
    font-size: 14px;
}

.simple-article-header .article-title,
.simple-article-header .article-lead {
    margin: 0;
}

.simple-article-header .article-lead {
    color: #48505c;
    font-size: 18px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .article-header-tools {
        align-items: flex-start;
    }

    .article-admin-tools {
        justify-content: flex-start;
    }
}

.story-section[data-section-theme],
.sidebar-widget[data-card-theme] {
    background:
        linear-gradient(90deg, rgba(var(--card-accent-rgb), 0.94), rgba(var(--card-accent-rgb), 0.28)) top left / 100% 4px no-repeat,
        #fff;
    border-color: rgba(var(--card-accent-rgb), 0.16);
}

.story-section[data-section-theme] .section-kicker,
.sidebar-widget[data-card-theme] .section-kicker,
.sidebar-widget[data-card-theme] .meta-pill,
.newsletter-card[data-card-theme] .meta-pill {
    background: rgba(var(--card-accent-rgb), 0.1);
    color: rgb(var(--card-accent-rgb));
}

.newsletter-card[data-card-theme] {
    background:
        linear-gradient(90deg, rgba(var(--card-accent-rgb), 0.94), rgba(var(--card-accent-rgb), 0.28)) top left / 100% 4px no-repeat,
        #fff;
    border-color: rgba(var(--card-accent-rgb), 0.16);
    color: #152235;
}

.newsletter-card[data-card-theme] .section-kicker {
    background: rgba(var(--card-accent-rgb), 0.1);
    color: rgb(var(--card-accent-rgb));
}

.newsletter-card[data-card-theme] h3 {
    color: #132036;
}

.newsletter-card[data-card-theme] p {
    color: #4e5968;
}

.flash-video-roller {
    background:
        linear-gradient(90deg, rgba(var(--theme-accent-rgb), 0.94), rgba(var(--theme-accent-rgb), 0.28)) top left / 100% 4px no-repeat,
        #fff;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.14);
    box-shadow: none;
    color: #152235;
}

.flash-video-frame {
    background: #fff;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.12);
}

.flash-video-kicker {
    color: rgb(var(--theme-accent-rgb));
}

.flash-video-meta {
    color: #677284;
}

.flash-video-item {
    background: #fff;
    border-color: rgba(var(--theme-accent-rgb), 0.14);
    box-shadow: none;
    color: #152235;
}

.flash-video-item:hover,
.flash-video-item.is-active {
    background: rgba(var(--theme-accent-rgb), 0.04);
    border-color: rgba(var(--theme-accent-rgb), 0.24);
}

.flash-video-item strong {
    color: #152235;
}

.flash-video-item small {
    color: #66717f;
}

.category-subnav {
    border-top: 1px solid rgba(var(--theme-accent-rgb), 0.08);
    border-bottom: 1px solid rgba(var(--theme-accent-rgb), 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.category-subnav-link {
    border: 1px solid transparent;
}

.category-subnav-link.is-active,
.category-subnav-link:hover {
    background: rgba(var(--theme-accent-rgb), 0.08);
    border-color: rgba(var(--theme-accent-rgb), 0.14);
}

.category-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin: 16px 0 22px;
}

.category-panel-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(var(--theme-accent-rgb), 0.94), rgba(var(--theme-accent-rgb), 0.3)) top left / 100% 4px no-repeat,
        #fff;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.14);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-panel-card:hover,
.category-panel-card.is-active {
    transform: translateY(-2px);
    border-color: rgba(var(--theme-accent-rgb), 0.28);
}

.category-panel-card strong {
    font-size: 22px;
    line-height: 1.28;
    letter-spacing: -0.04em;
    color: #132136;
}

.category-panel-card p {
    color: #566274;
    font-size: 14px;
    line-height: 1.7;
}

.category-panel-meta {
    color: #24364d;
    font-size: 13px;
    font-weight: 800;
}

.search-utility-form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 0;
    padding: 14px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.12);
}

.search-utility-form input {
    flex: 1;
    min-width: 0;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.12);
    background: #fff;
    color: #162234;
}

.search-utility-form input:focus {
    outline: none;
    border-color: rgba(var(--theme-accent-rgb), 0.3);
}

.search-utility-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.14);
    background: #fff;
    color: var(--brand);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.search-utility-form button:hover {
    background: rgba(var(--theme-accent-rgb), 0.05);
}

.auth-shell {
    width: min(720px, 100%);
    margin: 0 auto;
}

.auth-masthead {
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.field-input,
.field-select,
.field-textarea,
.field-file {
    width: 100%;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.14);
    border-radius: 16px;
    background: #fff;
    color: #162234;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.field-input,
.field-select {
    min-height: 54px;
    padding: 0 16px;
}

.field-textarea {
    min-height: 220px;
    padding: 16px;
    resize: vertical;
}

.field-file {
    padding: 12px 14px;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus,
.field-file:focus {
    outline: none;
    border-color: rgba(var(--theme-accent-rgb), 0.36);
    transform: translateY(-1px);
}

.form-label {
    font-size: 14px;
    font-weight: 800;
    color: #223347;
}

.form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.primary-button {
    border: 0;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
    cursor: pointer;
    box-shadow: none;
}

.secondary-button {
    border: 1px solid rgba(var(--theme-accent-rgb), 0.14);
    background: #fff;
    color: #203247;
}

.site-header.sticky-shadow,
.logo a,
.logo a:hover,
.logo-badge,
.header-search form,
.header-search form:focus-within,
.nav-submenu,
.footer-top-button,
.footer-top-button:hover {
    box-shadow: none;
}

.header-search form {
    background: #fff;
    border-color: rgba(var(--theme-accent-rgb), 0.14);
    backdrop-filter: none;
}

.header-search form:focus-within {
    border-color: rgba(var(--theme-accent-rgb), 0.28);
    transform: none;
}

.header-search button {
    background: #fff;
    color: var(--brand);
    border-left: 1px solid rgba(var(--theme-accent-rgb), 0.14);
}

.header-search button:hover {
    background: rgba(var(--theme-accent-rgb), 0.04);
    filter: none;
}

.breaking-label {
    background: #fff;
    color: var(--brand);
    border: 1px solid rgba(var(--theme-accent-rgb), 0.16);
}

.nav-submenu {
    background: #fff;
    border-color: rgba(var(--theme-accent-rgb), 0.12);
}

.nav-submenu-link {
    background: #fff;
    border-color: rgba(var(--theme-accent-rgb), 0.08);
}

.nav-submenu-link:hover,
.nav-submenu-link.is-current {
    background: rgba(var(--theme-accent-rgb), 0.05);
    border-color: rgba(var(--theme-accent-rgb), 0.16);
}

.nav-submenu-link-parent {
    background: rgba(var(--theme-accent-rgb), 0.06);
}

.form-helper {
    margin-top: 16px;
    color: #697282;
}

.form-helper a {
    font-weight: 800;
}

.form-message.is-error {
    color: #b42318;
    background: rgba(180, 35, 24, 0.06);
    border: 1px solid rgba(180, 35, 24, 0.12);
}

.form-message.is-success {
    color: #166534;
    background: rgba(22, 101, 52, 0.06);
    border: 1px solid rgba(22, 101, 52, 0.12);
}

.admin-editor-form {
    margin-top: 24px;
}

.admin-form-grid {
    max-width: 640px;
    margin-top: 20px;
}

.image-preview-card {
    display: grid;
    gap: 8px;
}

.image-preview-card img {
    max-width: 260px;
    border-radius: 18px;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.14);
}

.admin-table-wrap-spacious {
    margin-top: 24px;
}

.admin-table-actions {
    white-space: nowrap;
}

.admin-tree-mark {
    color: #8a96a5;
    margin-right: 8px;
}

.empty-message {
    background: #fff;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.12);
}

.site-footer {
    background: transparent;
}

.footer-shell {
    padding: 0;
    color: #172535;
}

.footer-top {
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(180px, 0.75fr));
    gap: 18px;
}

.footer-brand,
.footer-panel,
.footer-copy,
.footer-counter {
    background: #fff;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.12);
    box-shadow: none;
}

.footer-brand,
.footer-panel {
    padding: 24px;
    border-radius: 26px;
}

.footer-brand {
    background:
        linear-gradient(90deg, rgba(var(--theme-accent-rgb), 0.94), rgba(var(--theme-accent-rgb), 0.3)) top left / 100% 4px no-repeat,
        #fff;
}

.footer-brand h3,
.footer-panel h4 {
    color: #132031;
}

.footer-brand p,
.footer-panel p,
.footer-copy {
    color: #5f6c7b;
}

.footer-copy {
    margin-top: 18px;
    padding: 18px 22px;
    border-top: 0;
    border-radius: 22px;
}

.footer-counter {
    background: #fff;
    border-radius: 999px;
}

.footer-counter-label {
    color: #7b8796;
}

.footer-counter-value {
    color: #132031;
}

.footer-top-button {
    background: #fff;
    border-color: rgba(var(--theme-accent-rgb), 0.16);
    color: var(--brand);
    backdrop-filter: none;
}

.footer-top-button:hover {
    background: #fff;
    border-color: rgba(var(--theme-accent-rgb), 0.3);
    transform: translateY(-2px);
}

.admin-page-nav {
    background: #fff;
    border-color: rgba(var(--theme-accent-rgb), 0.12);
}

.admin-page-link.is-active {
    background: rgba(var(--theme-accent-rgb), 0.08);
    color: var(--brand);
}

@media (max-width: 1220px) {
    .section-compass-shell {
        grid-template-columns: 1fr;
    }

    .section-compass-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-atlas-hero,
    .page-masthead,
    .home-video-stage {
        grid-template-columns: 1fr;
    }

    .section-atlas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .section-compass-grid {
        grid-template-columns: 1fr;
    }

    .content-only-shell {
        padding: 22px;
        border-radius: 24px;
    }

    .content-only-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-atlas-hero,
    .page-masthead {
        padding: 22px;
        border-radius: 24px;
    }

    .home-video-stage {
        padding: 0 22px;
        border-radius: 0;
    }

    .section-atlas-grid,
    .section-atlas-stats {
        grid-template-columns: 1fr;
    }

    .home-video-track {
        grid-template-columns: 1fr;
    }

    .atlas-card strong,
    .page-masthead h1,
    .page-masthead .article-title,
    .home-video-copy h1,
    .section-atlas-copy h1 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .page-masthead-route {
        gap: 8px;
    }

    .search-utility-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-utility-form button {
        width: 100%;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }
}

/* Borderless public surfaces */
.site-header.sticky-shadow {
    border-bottom: 0 !important;
}

.page-block,
.story-section,
.sidebar-widget,
.article-shell,
.category-shell,
.compact-story,
.popular-card,
.mini-card,
.section-feature,
.section-item,
.news-card,
.atlas-stat-card,
.atlas-card,
.section-atlas-hero,
.page-masthead,
.page-stat-card,
.page-stat-link,
.section-compass-current,
.section-compass-chip,
.flash-video-roller,
.flash-video-frame,
.flash-video-item,
.category-subnav,
.category-subnav-link,
.category-panel-card,
.search-utility-form,
.search-utility-form input,
.search-utility-form button,
.field-input,
.field-select,
.field-textarea,
.field-file,
.secondary-button,
.empty-message,
.footer-brand,
.footer-panel,
.footer-copy,
.footer-counter,
.footer-top-button,
.header-search form,
.header-search button,
.nav-submenu,
.nav-submenu-link,
.nav-submenu-link-parent,
.breaking-label,
.article-share-button,
.article-nav-link,
.pagination a,
.form-message.is-error,
.form-message.is-success {
    border: 0 !important;
}

.header-search button {
    border-left: 0 !important;
}

.category-subnav,
.article-byline,
.rank-item + .rank-item,
.opinion-item + .opinion-item {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.article-body blockquote {
    border-left: 0 !important;
    border-radius: 16px;
}

.article-body table td,
.article-body table th {
    border: 0 !important;
    background: #f7f8fa;
}

.article-body table tr + tr td,
.article-body table tr + tr th {
    border-top: 0 !important;
}

.article-share-button,
.article-nav-link,
.pagination a,
.category-subnav-link,
.nav-submenu-link,
.search-utility-form input,
.search-utility-form button,
.field-input,
.field-select,
.field-textarea,
.field-file,
.secondary-button,
.footer-top-button {
    background: #f7f8fa;
}

.header-search form,
.search-utility-form,
.nav-submenu,
.category-subnav,
.empty-message {
    background: rgba(255, 255, 255, 0.92);
}

.section-compass-current,
.section-compass-chip,
.category-panel-card,
.footer-brand,
.footer-panel,
.footer-copy,
.footer-counter {
    box-shadow: none;
}

/* Flatten nested card compositions */
.article-shell,
.category-shell {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.section-atlas-hero .atlas-stat-card,
.page-masthead .page-stat-card,
.page-masthead .page-stat-link,
.sidebar-widget .popular-card,
.sidebar-widget .mini-card,
.story-section .mini-card,
.story-section .section-feature,
.story-section .section-item {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.section-atlas-hero .atlas-stat-card,
.page-masthead .page-stat-card {
    gap: 4px;
}

.page-masthead .page-stat-link {
    min-height: 0;
    justify-content: flex-start;
    padding-top: 6px !important;
}

.page-masthead .page-stat-card strong,
.section-atlas-hero .atlas-stat-card strong {
    font-size: 20px;
}

.sidebar-widget .popular-card:hover,
.sidebar-widget .mini-card:hover,
.story-section .mini-card:hover,
.story-section .section-feature:hover,
.story-section .section-item:hover {
    transform: none;
}

.sidebar-widget .popular-card-list,
.sidebar-widget .mini-grid,
.story-section .mini-grid,
.story-section .section-list {
    gap: 18px;
}

/* Cinematic tone refresh inspired by netcity.co.kr/page/디자인.php */
:root {
    --accent-rgb: 182, 214, 245;
    --accent-warm-rgb: 210, 161, 123;
    --bg: #0f141b;
    --surface: rgba(9, 14, 20, 0.68);
    --surface-soft: rgba(13, 19, 27, 0.78);
    --text: #f2f7fc;
    --muted: rgba(242, 247, 252, 0.68);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --brand: rgb(var(--accent-rgb));
    --brand-deep: #6f98c6;
    --accent: rgb(var(--accent-warm-rgb));
    --accent-soft: rgba(var(--accent-warm-rgb), 0.12);
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    --glass-fill: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    --glass-bg: rgba(7, 12, 18, 0.62);
    --glass-bg-soft: rgba(7, 12, 18, 0.46);
    --container: 1440px;
}

body[data-theme] {
    --theme-accent-rgb: var(--accent-rgb);
    --theme-soft: rgba(var(--accent-rgb), 0.12);
    --theme-line: rgba(255, 255, 255, 0.14);
}

[data-card-theme],
[data-section-theme] {
    --card-accent-rgb: var(--accent-rgb) !important;
}

html,
body {
    background: var(--bg);
}

body,
body.page-home,
body[data-theme] {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 12% 12%, rgba(var(--accent-rgb), 0.16), transparent 34%),
        radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
        radial-gradient(circle at 84% 74%, rgba(var(--accent-warm-rgb), 0.1), transparent 30%),
        linear-gradient(180deg, #131c27 0%, #0c131b 42%, #070c12 100%);
    color: var(--text);
}

body::before,
body.page-home::before,
body[data-theme]::before {
    height: 52vh;
    background:
        radial-gradient(circle at 16% 8%, rgba(213, 231, 249, 0.24) 0, rgba(213, 231, 249, 0) 30%),
        radial-gradient(circle at 78% 20%, rgba(111, 152, 198, 0.16) 0, rgba(111, 152, 198, 0) 24%),
        radial-gradient(circle at 48% 0, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 20%);
    filter: blur(72px);
    opacity: 0.56;
    animation: heroGlowShift 22s ease-in-out infinite alternate;
}

body::after,
body.page-home::after,
body[data-theme]::after {
    height: 100vh;
    background:
        linear-gradient(118deg, transparent 18%, rgba(255, 255, 255, 0.07) 31%, transparent 42%),
        linear-gradient(134deg, transparent 54%, rgba(111, 152, 198, 0.14) 68%, transparent 80%);
    opacity: 0.28;
    mix-blend-mode: screen;
    filter: blur(22px);
    transform: translateX(-16%) skewX(-14deg);
    animation: heroSheenSweep 14s ease-in-out infinite;
}

a {
    transition: color 0.24s ease;
}

.container {
    width: min(var(--container), calc(100% - 36px));
}

.header-util {
    padding-top: 24px;
    color: rgba(242, 247, 252, 0.68);
}

.header-util {
    position: relative;
    isolation: isolate;
}

.site-header {
    isolation: isolate;
}

.header-util::before,
.site-header::before,
.header-util::after,
.site-header::after {
    content: '';
    position: absolute;
    inset: -6px 0;
    pointer-events: none;
    z-index: 0;
}

.header-util::before,
.site-header::before {
    background:
        radial-gradient(circle at 8% 28%, rgba(255, 255, 255, 0.9) 0 1.1px, transparent 2px),
        radial-gradient(circle at 16% 78%, rgba(193, 228, 255, 0.82) 0 1.3px, transparent 2.4px),
        radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.74) 0 0.9px, transparent 1.8px),
        radial-gradient(circle at 38% 62%, rgba(184, 220, 255, 0.88) 0 1.2px, transparent 2.2px),
        radial-gradient(circle at 54% 26%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
        radial-gradient(circle at 66% 74%, rgba(210, 235, 255, 0.84) 0 1.4px, transparent 2.3px),
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.76) 0 1px, transparent 1.9px),
        radial-gradient(circle at 88% 58%, rgba(182, 214, 245, 0.84) 0 1.3px, transparent 2.4px),
        radial-gradient(circle at 96% 18%, rgba(255, 255, 255, 0.72) 0 0.9px, transparent 1.7px);
    opacity: 0.64;
    filter: drop-shadow(0 0 8px rgba(178, 218, 255, 0.14));
    animation: headerStarDrift 20s linear infinite, headerStarTwinkle 5.8s ease-in-out infinite;
}

.header-util::after,
.site-header::after {
    background:
        radial-gradient(circle at 14% 34%, rgba(151, 205, 255, 0.16), transparent 16%),
        radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.1), transparent 14%),
        radial-gradient(circle at 62% 82%, rgba(210, 161, 123, 0.1), transparent 16%);
    filter: blur(18px);
    opacity: 0.34;
    animation: headerNebulaShift 16s ease-in-out infinite alternate;
}

.header-util > *,
.site-header > * {
    position: relative;
    z-index: 1;
}

.header-util-inner,
.header-bottom {
    padding: 16px 22px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.header-util-inner {
    min-height: 0;
}

.header-bottom {
    min-height: 0;
    padding-top: 16px;
    padding-bottom: 16px;
}

.site-header,
.site-header.sticky-shadow {
    background: transparent;
    box-shadow: none;
    border-bottom: 0 !important;
    backdrop-filter: none;
}

.site-header.sticky-shadow .header-bottom {
    background:
        linear-gradient(180deg, rgba(8, 13, 20, 0.78), rgba(13, 20, 30, 0.56)),
        radial-gradient(circle at 12% 20%, rgba(151, 205, 255, 0.12), transparent 24%),
        radial-gradient(circle at 84% 22%, rgba(210, 161, 123, 0.08), transparent 20%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 10px 28px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.util-links {
    color: rgba(242, 247, 252, 0.68);
}

.util-links a + a::before {
    background: rgba(255, 255, 255, 0.18);
}

.logo a {
    background: transparent;
    box-shadow: none;
}

.logo a:hover {
    background: transparent;
    box-shadow: none;
    transform: translateY(-2px);
}

.logo a::before {
    opacity: 0;
}

.logo-badge {
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 36%),
        radial-gradient(circle at 74% 76%, rgba(var(--accent-rgb), 0.28), rgba(var(--accent-rgb), 0) 34%),
        linear-gradient(180deg, rgba(146, 189, 228, 0.94), rgba(89, 125, 164, 0.76));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44), 0 14px 30px rgba(0, 0, 0, 0.18);
}

.logo-overline {
    font-family: 'JetBrains Mono', monospace;
    color: rgba(242, 247, 252, 0.64);
}

.logo-mark {
    font-family: 'Syncopate', 'Noto Sans KR', sans-serif;
    font-size: clamp(24px, 2.2vw, 32px);
    letter-spacing: 0.12em;
    color: #ffffff;
    text-shadow: none;
}

.header-util a,
.main-nav a,
.nav-caret {
    color: rgba(242, 247, 252, 0.82);
}

.header-util a:hover {
    color: #ffffff;
}

.main-nav a {
    min-height: 44px;
    font-size: 18px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret,
.nav-item.is-active .nav-caret {
    color: #ffffff;
}

.main-nav a.active::after,
.main-nav a:hover::after {
    height: 3px;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.98), rgba(var(--accent-warm-rgb), 0.74));
    box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.28);
}

.nav-submenu {
    background: var(--glass-fill), rgba(7, 12, 18, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: var(--shadow) !important;
    backdrop-filter: blur(20px);
}

.nav-submenu-link,
.nav-submenu-link-parent {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid transparent !important;
}

.nav-submenu-link strong {
    color: #ffffff;
}

.nav-submenu-link span {
    display: none;
}

.nav-submenu-link:hover,
.nav-submenu-link.is-current {
    background: rgba(var(--accent-rgb), 0.12) !important;
    border-color: rgba(var(--accent-rgb), 0.24) !important;
}

.header-search form,
.search-utility-form {
    background: var(--glass-fill), var(--glass-bg-soft) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.header-search form:focus-within,
.search-utility-form:focus-within,
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    border-color: rgba(var(--accent-rgb), 0.38) !important;
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.14);
}

.header-search input,
.search-utility-form input,
.field-input,
.field-select,
.field-textarea,
.field-file {
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.header-search input {
    background: transparent !important;
    border: 0 !important;
}

.header-search input::placeholder,
.search-utility-form input::placeholder,
.field-input::placeholder,
.field-textarea::placeholder {
    color: rgba(242, 247, 252, 0.46);
}

.page-admin .admin-editor-form .form-label {
    color: rgba(242, 247, 252, 0.92);
}

.page-admin .admin-editor-form .field-input,
.page-admin .admin-editor-form .field-select,
.page-admin .admin-editor-form .field-textarea,
.page-admin .admin-editor-form .field-file {
    background: rgba(7, 12, 18, 0.82) !important;
    color: #f4f8fc !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.page-admin .admin-editor-form .field-input::placeholder,
.page-admin .admin-editor-form .field-textarea::placeholder {
    color: rgba(242, 247, 252, 0.5);
}

.page-admin .admin-editor-form .field-select option,
.page-admin .admin-editor-form .field-select optgroup {
    background: #101925;
    color: #f4f8fc;
}

.page-admin .admin-editor-form .field-file::file-selector-button {
    margin-right: 14px;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(122, 168, 216, 0.94), rgba(91, 125, 164, 0.9));
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.page-admin .admin-editor-form .image-preview-card .news-card-meta,
.page-admin .admin-editor-form .admin-category-link span {
    color: rgba(242, 247, 252, 0.58);
}

.page-admin .admin-editor-form .admin-category-link strong {
    color: #ffffff;
}

.page-admin .admin-editor-form .ck {
    color: #f4f8fc;
}

.page-admin .admin-editor-form .ck.ck-toolbar,
.page-admin .admin-editor-form .ck.ck-toolbar__separator,
.page-admin .admin-editor-form .ck.ck-dropdown__panel,
.page-admin .admin-editor-form .ck.ck-list,
.page-admin .admin-editor-form .ck.ck-input {
    background: rgba(9, 14, 20, 0.9) !important;
    color: #f4f8fc !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
}

.page-admin .admin-editor-form .ck.ck-button,
.page-admin .admin-editor-form .ck.ck-button .ck-button__label,
.page-admin .admin-editor-form .ck.ck-list__item .ck-button {
    color: #f4f8fc !important;
}

.page-admin .admin-editor-form .ck.ck-button:not(.ck-disabled):hover,
.page-admin .admin-editor-form .ck.ck-button.ck-on,
.page-admin .admin-editor-form .ck.ck-list__item .ck-button:hover {
    background: rgba(122, 168, 216, 0.18) !important;
    color: #ffffff !important;
}

.page-admin .admin-editor-form .ck.ck-editor__main > .ck-editor__editable {
    min-height: 500px;
    background: rgba(7, 12, 18, 0.9) !important;
    color: #f4f8fc !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
}

.page-admin .admin-editor-form .ck.ck-editor__main > .ck-editor__editable p,
.page-admin .admin-editor-form .ck.ck-editor__main > .ck-editor__editable li,
.page-admin .admin-editor-form .ck.ck-editor__main > .ck-editor__editable blockquote,
.page-admin .admin-editor-form .ck.ck-editor__main > .ck-editor__editable h1,
.page-admin .admin-editor-form .ck.ck-editor__main > .ck-editor__editable h2,
.page-admin .admin-editor-form .ck.ck-editor__main > .ck-editor__editable h3,
.page-admin .admin-editor-form .ck.ck-editor__main > .ck-editor__editable h4 {
    color: inherit !important;
}

.header-search button,
.search-utility-form button,
.primary-button {
    background: linear-gradient(135deg, #7aa8d8, #5b7da4) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(24, 45, 71, 0.24);
}

.header-search button:hover,
.search-utility-form button:hover,
.primary-button:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.secondary-button,
.pagination a,
.article-share-button,
.article-nav-link,
.footer-top-button {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--text);
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.pagination a.is-active,
.pagination a:hover,
.secondary-button:hover,
.article-share-button:hover,
.article-nav-link:hover,
.footer-top-button:hover {
    background: linear-gradient(135deg, rgba(122, 168, 216, 0.42), rgba(91, 125, 164, 0.26)) !important;
    border-color: rgba(var(--accent-rgb), 0.34) !important;
    color: #ffffff;
}

.article-admin-button-danger {
    background: linear-gradient(135deg, rgba(156, 60, 73, 0.34), rgba(109, 35, 47, 0.24)) !important;
    border-color: rgba(255, 138, 154, 0.24) !important;
    color: #ffe9ed !important;
}

.article-admin-button-danger:hover {
    background: linear-gradient(135deg, rgba(188, 73, 89, 0.5), rgba(138, 41, 57, 0.32)) !important;
    border-color: rgba(255, 164, 176, 0.38) !important;
    color: #ffffff !important;
}

.breaking-label,
.content-only-kicker,
.story-kicker,
.section-kicker,
.meta-pill,
.page-masthead-eyebrow {
    background: transparent;
    color: rgba(242, 247, 252, 0.78);
    border: 1px solid transparent !important;
}

.breaking-strip,
.content-only-shell,
.page-block,
.story-section,
.sidebar-widget,
.compact-story,
.popular-card,
.mini-card,
.section-feature,
.section-item,
.news-card,
.category-list-item,
.section-compass-current,
.section-compass-chip,
.page-masthead,
.page-stat-card,
.page-stat-link,
.atlas-card,
.atlas-stat-card,
.footer-brand,
.footer-panel,
.footer-counter,
.empty-message,
.flash-video-roller,
.flash-video-frame,
.flash-video-item,
.category-panel-card {
    position: relative;
    overflow: hidden;
    background: transparent !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    backdrop-filter: none;
}

.breaking-strip::before,
.content-only-shell::before,
.page-block::before,
.news-card::before,
.category-list-item::before,
.section-compass-current::before,
.section-compass-chip::before,
.page-masthead::before,
.footer-brand::before,
.footer-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.96), rgba(var(--accent-warm-rgb), 0.7), transparent 82%);
    opacity: 0;
    pointer-events: none;
}

.page-admin .page-block,
.page-admin .sidebar-widget,
.page-admin .admin-hero-main,
.page-admin .admin-hero-side,
.page-admin .admin-stat-card,
.page-admin .admin-mini-stat,
.page-admin .admin-quick-link,
.page-admin .admin-status-item,
.page-admin .admin-draft-item,
.page-admin .admin-table-wrap,
.page-admin .admin-page-nav,
.page-admin .admin-category-link {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: blur(14px);
}

.page-admin .admin-page-link.is-active {
    background: rgba(var(--accent-rgb), 0.16) !important;
    color: #ffffff;
}

.page-admin .admin-category-link:hover,
.page-admin .admin-quick-link:hover,
.page-admin .admin-draft-item:hover {
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.12), rgba(255, 255, 255, 0.03)) !important;
    border-color: rgba(var(--accent-rgb), 0.24) !important;
}

.page-admin .admin-table th {
    background: rgba(255, 255, 255, 0.04) !important;
}

.page-admin .admin-table th,
.page-admin .admin-table td {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.content-shell,
.article-shell,
.category-shell,
.site-footer {
    background: transparent !important;
    box-shadow: none !important;
}

.site-main {
    position: relative;
    z-index: 1;
    padding: 24px 0 96px;
}

.content-only-shell,
.page-block {
    border-radius: 34px;
    padding: clamp(24px, 3vw, 34px);
}

.news-card,
.category-list-item,
.compact-story,
.popular-card,
.mini-card,
.section-feature,
.section-item,
.atlas-card,
.footer-brand,
.footer-panel {
    border-radius: 0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover,
.category-list-item:hover,
.compact-story:hover,
.mini-card:hover,
.section-feature:hover,
.section-item:hover,
.popular-card:hover,
.atlas-card:hover {
    transform: translateY(-4px);
    border-color: transparent !important;
    box-shadow: none !important;
}

.breaking-label,
.content-only-kicker,
.story-kicker,
.section-kicker,
.meta-pill,
.page-masthead-eyebrow,
.section-compass-eyebrow,
.section-compass-chip-name,
.footer-counter-label,
.logo-overline {
    font-family: 'JetBrains Mono', 'Noto Sans KR', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.content-only-head h1,
.category-header h1,
.article-title,
.widget-head h3,
.section-head h2,
.page-masthead h1,
.category-list-body h3 a,
.news-card h3 a,
.rank-item h4,
.footer-brand h3,
.footer-panel h4,
.section-compass-current strong,
.section-compass-chip strong,
.page-stat-card strong,
.atlas-stat-card strong,
.footer-counter-value {
    color: #ffffff;
}

.footer-brand h3 {
    font-family: 'Syncopate', 'Noto Sans KR', sans-serif;
    font-size: clamp(24px, 2.4vw, 32px);
    letter-spacing: 0.08em;
}

.footer-panel h4 {
    font-size: 14px;
    letter-spacing: 0.02em;
}

.content-only-head h1,
.article-title {
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.06;
}

.news-card h3,
.category-list-body h3 {
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.32;
}

.content-only-head p,
.category-list-body p,
.news-card p,
.story-meta,
.mini-meta,
.section-meta,
.rank-meta,
.article-meta,
.category-header p,
.widget-head p,
.section-head p,
.simple-article-header .article-lead,
.form-helper,
.footer-brand p,
.footer-panel p,
.footer-copy,
.empty-message,
.section-compass-current p,
.section-compass-chip-meta,
.page-stat-card span,
.atlas-stat-card span {
    color: var(--muted);
}

.news-card-meta,
.category-list-body .news-card-meta,
.simple-article-header .article-meta {
    color: rgba(242, 247, 252, 0.54);
}

.form-helper a,
.footer-links a:hover {
    color: var(--brand);
}

.rank-number {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.24), rgba(var(--accent-warm-rgb), 0.18));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.news-card,
.category-list-item,
.compact-story,
.popular-card,
.mini-card,
.section-feature,
.section-item,
.opinion-item,
.flash-video-item,
.hero-story {
    --flash-delay: 0s;
}

.news-card:nth-child(2n),
.category-list-item:nth-child(2n),
.compact-story:nth-child(2n),
.popular-card:nth-child(2n),
.mini-card:nth-child(2n),
.section-feature:nth-child(2n),
.section-item:nth-child(2n),
.opinion-item:nth-child(2n),
.flash-video-item:nth-child(2n) {
    --flash-delay: 0.22s;
}

.news-card:nth-child(3n),
.category-list-item:nth-child(3n),
.compact-story:nth-child(3n),
.popular-card:nth-child(3n),
.mini-card:nth-child(3n),
.section-feature:nth-child(3n),
.section-item:nth-child(3n),
.opinion-item:nth-child(3n),
.flash-video-item:nth-child(3n) {
    --flash-delay: 0.46s;
}

.news-card:nth-child(4n),
.category-list-item:nth-child(4n),
.compact-story:nth-child(4n),
.popular-card:nth-child(4n),
.mini-card:nth-child(4n),
.section-feature:nth-child(4n),
.section-item:nth-child(4n),
.opinion-item:nth-child(4n),
.flash-video-item:nth-child(4n) {
    --flash-delay: 0.72s;
}

.hero-story-media,
.compact-story-media,
.mini-card-media,
.section-feature-media,
.popular-card-thumb,
.section-item-thumb,
.category-list-thumb,
.content-only-card-media,
.article-hero,
.opinion-item-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    isolation: isolate;
}

.hero-story-media::before,
.compact-story-media::before,
.mini-card-media::before,
.section-feature-media::before,
.popular-card-thumb::before,
.section-item-thumb::before,
.category-list-thumb::before,
.content-only-card-media::before,
.article-hero::before,
.opinion-item-thumb::before,
.hero-story-media::after,
.compact-story-media::after,
.mini-card-media::after,
.section-feature-media::after,
.popular-card-thumb::after,
.section-item-thumb::after,
.category-list-thumb::after,
.content-only-card-media::after,
.article-hero::after,
.opinion-item-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.hero-story-media::before,
.compact-story-media::before,
.mini-card-media::before,
.section-feature-media::before,
.popular-card-thumb::before,
.section-item-thumb::before,
.category-list-thumb::before,
.content-only-card-media::before,
.article-hero::before,
.opinion-item-thumb::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.16) 16%, rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 82% 18%, rgba(192, 224, 255, 0.22), rgba(192, 224, 255, 0) 28%);
    mix-blend-mode: screen;
    animation: photoFlashBloomCycle 10s linear var(--flash-delay, 0s) infinite both;
}

.hero-story-media::after,
.compact-story-media::after,
.mini-card-media::after,
.section-feature-media::after,
.popular-card-thumb::after,
.section-item-thumb::after,
.category-list-thumb::after,
.content-only-card-media::after,
.article-hero::after,
.opinion-item-thumb::after {
    inset: -12% -18%;
    background: linear-gradient(108deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.78) 36%, rgba(196, 229, 255, 0.26) 42%, rgba(255, 255, 255, 0) 56%);
    mix-blend-mode: screen;
    animation: photoFlashSweepCycle 10s linear calc(var(--flash-delay, 0s) + 0.05s) infinite both;
}

.hero-story-media:hover::before,
.compact-story-media:hover::before,
.mini-card-media:hover::before,
.section-feature-media:hover::before,
.popular-card-thumb:hover::before,
.section-item-thumb:hover::before,
.category-list-thumb:hover::before,
.content-only-card-media:hover::before,
.article-hero:hover::before,
.opinion-item-thumb:hover::before {
    animation: photoFlashBloom 1.1s ease-out 0s 1 both;
}

.hero-story-media:hover::after,
.compact-story-media:hover::after,
.mini-card-media:hover::after,
.section-feature-media:hover::after,
.popular-card-thumb:hover::after,
.section-item-thumb:hover::after,
.category-list-thumb:hover::after,
.content-only-card-media:hover::after,
.article-hero:hover::after,
.opinion-item-thumb:hover::after {
    animation: photoFlashSweep 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) 0.02s 1 both;
}

.news-card img,
.category-list-thumb img,
.content-only-card-media img,
.compact-story img,
.section-feature img,
.popular-card img,
.mini-card img,
.hero-story img,
.section-item-thumb img,
.opinion-item-thumb img,
.flash-video-item img,
.article-hero img,
.article-body img {
    border-radius: 0;
    filter: saturate(0.88) contrast(1.02) brightness(0.96);
    animation: photoFlashExposureCycle 10s linear var(--flash-delay, 0s) infinite both;
}

.hero-story-media:hover img,
.compact-story-media:hover img,
.mini-card-media:hover img,
.section-feature-media:hover img,
.popular-card-thumb:hover img,
.section-item-thumb:hover img,
.category-list-thumb:hover img,
.content-only-card-media:hover img,
.article-hero:hover img,
.opinion-item-thumb:hover img,
.flash-video-item:hover img {
    animation: photoFlashExposure 1s ease-out 0s 1 both;
}

@media (prefers-reduced-motion: reduce) {
    .home-video-flash::before,
    .home-video-flash::after,
    .home-video-frame [data-video-iframe],
    .hero-story-media::before,
    .compact-story-media::before,
    .mini-card-media::before,
    .section-feature-media::before,
    .popular-card-thumb::before,
    .section-item-thumb::before,
    .category-list-thumb::before,
    .content-only-card-media::before,
    .article-hero::before,
    .opinion-item-thumb::before,
    .hero-story-media::after,
    .compact-story-media::after,
    .mini-card-media::after,
    .section-feature-media::after,
    .popular-card-thumb::after,
    .section-item-thumb::after,
    .category-list-thumb::after,
    .content-only-card-media::after,
    .article-hero::after,
    .opinion-item-thumb::after,
    .news-card img,
    .category-list-thumb img,
    .content-only-card-media img,
    .compact-story img,
    .section-feature img,
    .popular-card img,
    .mini-card img,
    .hero-story img,
    .section-item-thumb img,
    .opinion-item-thumb img,
    .flash-video-item img,
    .article-hero img,
    .article-body img {
        animation: none !important;
    }

    .home-video-frame::before,
    .home-video-frame::after,
    .home-video-copy [data-video-title],
    .home-video-copy [data-video-meta] {
        transition: none !important;
    }
}

.article-content {
    position: relative;
    display: grid;
    gap: 0;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 34px;
    background: transparent !important;
    border: 1px solid transparent;
    box-shadow: none;
    overflow: hidden;
}

.article-content::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.96), rgba(var(--accent-warm-rgb), 0.7), transparent 82%);
    opacity: 0;
    pointer-events: none;
}

.article-hero {
    margin-top: 28px;
}

.article-hero img {
    max-height: 620px;
}

.article-body {
    color: rgba(242, 247, 252, 0.84);
    font-size: 18px;
    line-height: 1.95;
}

.article-body a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(var(--accent-rgb), 0.48);
    text-underline-offset: 0.18em;
}

.article-body figcaption {
    color: rgba(242, 247, 252, 0.56);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-body blockquote {
    background: rgba(255, 255, 255, 0.04) !important;
    border-left: 1px solid rgba(var(--accent-rgb), 0.56) !important;
    border-radius: 22px !important;
    color: #ffffff;
}

.article-body table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.article-body table td,
.article-body table th {
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.article-body table th {
    background: rgba(var(--accent-rgb), 0.14) !important;
}

.article-body table tr + tr td,
.article-body table tr + tr th {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.video-embed {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.section-compass-current,
.section-compass-chip {
    min-height: auto;
}

.page-masthead,
.auth-masthead {
    background: transparent !important;
}

.auth-form {
    gap: 14px;
}

.form-message.is-error {
    background: rgba(120, 32, 38, 0.34) !important;
    border-color: rgba(255, 112, 120, 0.22) !important;
    color: #ffd8dd;
}

.form-message.is-success {
    background: rgba(35, 89, 71, 0.34) !important;
    border-color: rgba(125, 234, 189, 0.22) !important;
    color: #e6fff4;
}

.site-footer {
    margin-top: 48px;
    padding-bottom: 72px;
    background: transparent;
}

.footer-shell {
    padding: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.85fr));
    gap: 22px;
}

.site-footer .footer-brand,
.site-footer .footer-panel {
    position: relative;
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 100%;
    padding: 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
    backdrop-filter: blur(10px);
}

.site-footer .footer-brand::before,
.site-footer .footer-panel::before {
    opacity: 0.64;
}

.site-footer .footer-brand {
    gap: 16px;
}

.site-footer .footer-brand h3 {
    font-size: clamp(24px, 2.2vw, 34px);
    letter-spacing: 0.06em;
}

.footer-brand-copy {
    max-width: 42ch;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(242, 247, 252, 0.74);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(242, 247, 252, 0.86);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--accent-rgb), 0.26);
    background: rgba(var(--accent-rgb), 0.08);
    color: #ffffff;
}

.site-footer .footer-panel h4 {
    font-family: 'JetBrains Mono', 'Noto Sans KR', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(242, 247, 252, 0.68);
    margin: 0 0 4px;
}

.footer-detail {
    margin: 0;
    color: rgba(242, 247, 252, 0.84);
    font-size: 14px;
    line-height: 1.7;
}

.footer-detail + .footer-detail {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px 24px;
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 18px 4px 0;
    text-align: left;
    font-size: 12px;
}

.footer-copy-primary {
    font-family: 'JetBrains Mono', 'Noto Sans KR', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(242, 247, 252, 0.78);
}

.footer-copy-secondary {
    max-width: 56ch;
    justify-self: end;
    color: rgba(242, 247, 252, 0.56);
    line-height: 1.7;
}

.footer-counter {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 999px;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-counter-label {
    color: rgba(242, 247, 252, 0.54);
}

.footer-counter-value {
    color: #ffffff;
}

.footer-top-button {
    background: rgba(7, 12, 18, 0.74) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.page-home .content-only-grid,
.news-grid {
    gap: 18px;
}

@media (max-width: 1024px) {
    .site-main {
        padding-top: 10px;
    }

    .header-util-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        border-radius: 30px;
    }

    .util-links {
        justify-self: center;
        justify-content: center;
    }

    .header-bottom {
        grid-template-columns: 1fr;
        grid-template-areas:
            "search"
            "nav";
        gap: 14px;
        border-radius: 30px;
    }

    .main-nav {
        width: 100%;
        overflow-x: auto;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-copy-secondary {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .site-main {
        padding-top: 6px;
    }

    .header-util {
        padding-top: 18px;
    }

    .header-util-inner,
    .header-bottom,
    .content-only-shell,
    .home-video-stage,
    .page-block,
    .article-content,
    .news-card,
    .category-list-item,
    .footer-brand,
    .footer-panel {
        border-radius: 24px;
    }

    .header-bottom {
        padding: 14px 16px;
    }

    .home-video-stage {
        padding: 0 16px;
    }

    .content-only-head h1,
    .article-title,
    .home-video-copy h1 {
        font-size: clamp(28px, 9vw, 40px);
    }

    .home-video-note,
    .home-video-route {
        padding: 14px 15px;
    }

    .footer-brand,
    .footer-panel {
        padding: 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-copy {
        gap: 8px;
        padding-top: 16px;
    }

    .footer-bottom-bar {
        align-items: flex-start;
        padding-top: 14px;
    }
}

@media (max-width: 1024px) {
    .main-nav {
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .main-nav ul {
        width: max-content;
        min-width: 100%;
        gap: 18px;
        padding-bottom: 2px;
    }

    .main-nav a {
        min-height: 48px;
        font-size: 17px;
    }

    .nav-submenu {
        min-width: min(260px, calc(100vw - 36px));
    }
}

@media (max-width: 860px) {
    .main-nav {
        overflow: visible;
        padding-bottom: 0;
    }

    .main-nav ul {
        width: 100%;
        min-width: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 12px;
        white-space: normal;
    }

    .nav-item {
        flex: 0 1 auto;
    }

    .main-nav a {
        min-height: 42px;
        padding: 0 12px;
        font-size: 16px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.03);
    }

    .main-nav a.active::after,
    .main-nav a:hover::after {
        left: 12px;
        right: 12px;
        bottom: 6px;
    }

    .nav-item.has-submenu > a {
        gap: 6px;
    }

    .nav-caret {
        font-size: 10px;
    }
}

@media (max-width: 540px) {
    .main-nav ul {
        justify-content: flex-start;
        gap: 8px 10px;
    }

    .main-nav a {
        min-height: 40px;
        padding: 0 10px;
        font-size: 15px;
    }
}
