:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --card: rgba(15, 23, 42, 0.78);
    --card-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(148, 163, 184, 0.16);
    --muted: #94a3b8;
    --text: #e2e8f0;
    --white: #ffffff;
    --cyan: #22d3ee;
    --blue: #60a5fa;
    --cyan-soft: rgba(34, 211, 238, 0.14);
    --shadow: 0 24px 70px rgba(2, 6, 23, 0.45);
    --radius: 22px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 34rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 72%);
    z-index: -1;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 36px rgba(2, 6, 23, 0.35);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #020617;
    font-size: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 10px 28px rgba(34, 211, 238, 0.28);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link,
.mobile-nav-link {
    color: #cbd5e1;
    padding: 10px 14px;
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--cyan);
    background: rgba(30, 41, 59, 0.8);
}

.header-search {
    position: relative;
    width: min(270px, 26vw);
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.22);
    outline: none;
    color: var(--text);
    background: rgba(15, 23, 42, 0.9);
    border-radius: 14px;
    padding: 11px 44px 11px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.header-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 11px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.75);
    border-radius: 13px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-nav.open {
    display: grid;
    gap: 10px;
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 6px;
}

.mobile-search input {
    padding-right: 14px;
}

.mobile-search button {
    border: 0;
    border-radius: 13px;
    padding: 0 16px;
    color: #020617;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.mobile-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 6px;
}

.mobile-cats a {
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
}

.hero-section {
    position: relative;
    height: min(72vh, 760px);
    min-height: 560px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.04);
}

.hero-bg::before,
.hero-bg::after,
.detail-bg::before,
.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-bg::before,
.detail-bg::before {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.48) 48%, rgba(2, 6, 23, 0.68));
}

.hero-bg::after,
.detail-bg::after {
    background: linear-gradient(0deg, var(--bg) 0%, rgba(2, 6, 23, 0.88) 16%, transparent 58%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 72px;
}

.hero-copy {
    max-width: 720px;
    animation: rise 0.8s ease both;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.hero-kicker::before,
.section-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 22px var(--cyan);
}

.hero-copy h1 {
    margin: 16px 0 18px;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 0.98;
    color: var(--white);
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 24px;
    color: #cbd5e1;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.18);
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #020617;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 32px rgba(34, 211, 238, 0.24);
}

.btn-secondary {
    color: #dbeafe;
    background: rgba(30, 41, 59, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-dot {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.42);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 58px;
    background: var(--cyan);
}

.content-section {
    padding: 58px 0 0;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-header h2 {
    margin: 8px 0 10px;
    color: var(--white);
    font-size: clamp(26px, 3vw, 36px);
    letter-spacing: -0.03em;
}

.section-line {
    display: block;
    width: 86px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.section-link {
    color: var(--cyan);
    font-weight: 800;
    white-space: nowrap;
}

.movie-grid {
    display: grid;
    gap: 18px;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 16px 44px rgba(2, 6, 23, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(34, 211, 238, 0.32);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 22px 60px rgba(2, 6, 23, 0.38);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #020617;
}

.poster-link img,
.wide-poster img,
.category-covers img,
.category-visual img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover img,
.category-tile:hover img,
.category-overview-card:hover img {
    transform: scale(1.08);
}

.poster-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), transparent 46%);
    opacity: 0.82;
}

.play-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #020617;
    background: rgba(34, 211, 238, 0.92);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-dot {
    opacity: 1;
    transform: translateY(0);
}

.movie-info {
    padding: 14px;
}

.movie-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--white);
    font-weight: 800;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-title:hover,
.movie-card:hover .movie-title {
    color: var(--cyan);
}

.movie-meta {
    margin: 8px 0 8px;
    color: var(--muted);
    font-size: 13px;
}

.movie-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 43px;
    margin: 0 0 12px;
    color: #cbd5e1;
    line-height: 1.55;
    font-size: 14px;
}

.movie-card-small .movie-desc {
    display: none;
}

.movie-card-small .tag-row {
    display: none;
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #020617;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 24px rgba(34, 211, 238, 0.22);
}

.wide-list {
    display: grid;
    gap: 14px;
}

.movie-card-wide {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 118px;
}

.wide-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: #020617;
}

.wide-body {
    padding: 16px 16px 14px;
}

.movie-card-wide .movie-desc {
    -webkit-line-clamp: 2;
    min-height: 0;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

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

.category-tile,
.category-overview-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.62));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.category-covers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 168px;
    opacity: 0.86;
}

.category-covers img:nth-child(2) {
    transform: translateY(18px);
}

.category-content,
.category-overview-body {
    padding: 20px;
}

.category-content span,
.category-overview-body span {
    color: var(--cyan);
    font-weight: 800;
    font-size: 13px;
}

.category-content h3,
.category-overview-body h2 {
    margin: 8px 0 10px;
    color: var(--white);
    font-size: 24px;
}

.category-content p,
.category-overview-body p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 14px;
}

.page-hero {
    padding: 76px 0 16px;
}

.page-hero h1 {
    margin: 12px 0 16px;
    color: var(--white);
    font-size: clamp(38px, 5vw, 62px);
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 840px;
    color: #cbd5e1;
    line-height: 1.85;
    font-size: 18px;
}

.category-overview-grid {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 330px 1fr;
}

.category-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 230px;
    overflow: hidden;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
}

.category-samples a {
    color: #dbeafe;
    padding: 7px 11px;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 13px;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 200px;
    gap: 12px;
    max-width: 900px;
    margin-top: 24px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(16px);
}

.search-filter-bar {
    grid-template-columns: minmax(260px, 1.35fr) 180px 180px 190px;
    max-width: 1040px;
}

.filter-bar label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.filter-bar input,
.filter-bar select {
    padding: 12px 14px;
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    background: #020617;
}

.detail-bg {
    position: absolute;
    inset: 0;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.04);
    transform: scale(1.03);
}

.detail-hero-inner {
    position: relative;
    padding: 34px 0 58px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 32px;
}

.breadcrumb a {
    color: var(--cyan);
}

.detail-layout {
    display: grid;
    grid-template-columns: 286px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 2 / 3;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.detail-copy h1 {
    margin: 12px 0 18px;
    color: var(--white);
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 840px;
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.75;
}

.detail-meta-list,
.side-meta {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.detail-meta-list li,
.side-meta li {
    padding: 13px 14px;
    border-radius: 15px;
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid var(--line);
}

.detail-meta-list span,
.side-meta span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.detail-meta-list strong,
.side-meta strong {
    color: var(--white);
    font-size: 14px;
}

.detail-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 26px;
    align-items: start;
}

.detail-main,
.detail-sidebar {
    display: grid;
    gap: 22px;
}

.player-card,
.story-card,
.side-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--card-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: contain;
}

.play-trigger {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.58));
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-trigger span {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #020617;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 42px rgba(34, 211, 238, 0.36);
    font-size: 28px;
    padding-left: 5px;
}

.play-trigger.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.story-card,
.side-card {
    padding: 26px;
}

.story-card h2,
.side-card h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 24px;
}

.story-card p {
    margin: 0 0 22px;
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 16px;
}

.story-card p:last-child {
    margin-bottom: 0;
}

.side-meta {
    grid-template-columns: 1fr;
    margin-top: 0;
}

.side-related {
    display: grid;
    gap: 12px;
}

.side-related .movie-card-wide {
    grid-template-columns: 112px 1fr;
}

.side-related .movie-desc,
.side-related .tag-row {
    display: none;
}

.filter-card.is-hidden {
    display: none;
}

.no-result {
    grid-column: 1 / -1;
    color: var(--muted);
    text-align: center;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.72);
}

.site-footer {
    margin-top: 72px;
    background: rgba(15, 23, 42, 0.88);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 0.7fr 0.9fr;
    gap: 34px;
    padding: 44px 0;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-brand p,
.site-footer li,
.site-footer a {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    color: #64748b;
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .poster-grid,
    .compact-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .two-column-section,
    .detail-main-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    .site-nav,
    .header-search {
        display: none;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .hero-section {
        min-height: 620px;
        height: 78vh;
    }

    .hero-content {
        padding-bottom: 86px;
    }

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

    .movie-card-wide {
        grid-template-columns: 126px 1fr;
    }

    .category-overview-card,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .category-visual {
        min-height: 190px;
    }

    .detail-poster {
        width: min(260px, 72vw);
    }

    .filter-bar,
    .search-filter-bar {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .container,
    .header-inner,
    .mobile-nav {
        width: min(100% - 22px, 1180px);
    }

    .header-inner {
        height: 62px;
    }

    .site-logo {
        font-size: 17px;
    }

    .logo-mark {
        width: 30px;
        height: 30px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 36px;
    }

    .hero-copy p,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .content-section {
        padding-top: 42px;
    }

    .section-header {
        align-items: start;
        flex-direction: column;
    }

    .poster-grid,
    .compact-grid,
    .featured-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-wide {
        grid-template-columns: 108px 1fr;
    }

    .movie-card-wide .movie-desc {
        -webkit-line-clamp: 1;
    }

    .detail-meta-list {
        grid-template-columns: 1fr;
    }

    .story-card,
    .side-card {
        padding: 20px;
    }
}
