: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: 1000;
    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 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;
}

.main-nav {
    flex: 1;
    overflow-x: auto;
    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 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));
}

.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 {
    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(380px, 0.95fr);
    gap: 28px;
}

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

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

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

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

.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-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.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 {
    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 {
    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,
    .site-footer,
    .article-share-tools,
    .header-action-link,
    .meta-pill,
    .article-meta,
    .article-body figure.media,
    .article-nav-links,
    .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: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0 0 18px;
        text-align: center;
    }

    .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-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-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 p {
    margin-top: 12px;
    color: #48505c;
    font-size: 15px;
}

.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;
}

.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 a:hover {
    background: var(--brand);
    color: #fff;
}

.site-footer {
    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 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-top-button:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

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

@media (max-width: 1220px) {
    .headline-grid,
    .article-layout,
    .category-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: 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;
    }

    .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;
    }

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

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

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