:root {
    --bg: #030712;
    --bg-soft: #0f172a;
    --bg-card: rgba(17, 24, 39, 0.82);
    --bg-card-strong: rgba(31, 41, 55, 0.92);
    --border: rgba(251, 191, 36, 0.18);
    --text: #ffffff;
    --muted: #d1d5db;
    --subtle: #9ca3af;
    --amber: #d97706;
    --amber-light: #fbbf24;
    --amber-dark: #92400e;
    --shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #111827 0%, #000000 42%, #111827 100%);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(55, 65, 81, 0.85);
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber-light), var(--amber-dark));
    color: #111827;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.35);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--amber-light);
    background: rgba(120, 53, 15, 0.22);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: 12px;
    background: rgba(31, 41, 55, 0.76);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: #000000;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 5s ease;
}

.hero-slide.is-active .hero-image {
    transform: scale(1.08);
}

.hero-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 30%, rgba(251, 191, 36, 0.18), transparent 34%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-content {
    position: absolute;
    inset: auto 0 88px;
    z-index: 3;
}

.hero-copy {
    width: min(680px, 100%);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 14px;
    color: var(--amber-light);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.96;
    font-weight: 900;
    text-shadow: 0 12px 45px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
    display: -webkit-box;
    margin: 0 0 22px;
    max-width: 680px;
    overflow: hidden;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.hero-meta,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta {
    margin-bottom: 28px;
}

.hero-meta span,
.detail-meta span,
.movie-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.34);
    color: var(--muted);
    font-size: 13px;
}

.hero-actions,
.detail-copy .btn,
.side-panel .btn {
    margin-right: 12px;
}

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

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

.btn-primary {
    background: var(--amber);
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(146, 64, 14, 0.45);
}

.btn-primary:hover {
    background: #b45309;
}

.btn-ghost {
    border: 1px solid rgba(251, 191, 36, 0.28);
    background: rgba(17, 24, 39, 0.72);
    color: #fde68a;
}

.btn-ghost:hover {
    background: rgba(120, 53, 15, 0.32);
}

.hero-dots {
    position: absolute;
    right: 44px;
    bottom: 44px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dots button {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #6b7280;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--amber);
}

.hero-thumb-rail {
    position: absolute;
    right: 0;
    bottom: 110px;
    left: 0;
    z-index: 4;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    pointer-events: none;
}

.hero-thumb {
    display: flex;
    align-items: center;
    width: 190px;
    gap: 10px;
    padding: 9px;
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.62);
    color: #ffffff;
    backdrop-filter: blur(12px);
    pointer-events: auto;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.hero-thumb:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.55);
}

.hero-thumb img {
    width: 54px;
    height: 68px;
    flex: 0 0 auto;
    border-radius: 12px;
    object-fit: cover;
}

.hero-thumb span {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.content-section {
    padding-block: 60px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.12;
}

.section-heading p {
    margin: 10px 0 0;
    color: var(--subtle);
}

.section-more {
    flex: 0 0 auto;
    color: var(--amber-light);
    font-weight: 800;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(55, 65, 81, 0.78);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 119, 6, 0.85);
    box-shadow: 0 22px 45px rgba(120, 53, 15, 0.22);
}

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

.movie-card-large .poster-link {
    aspect-ratio: 16 / 10;
}

.poster-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.04));
    opacity: 0.82;
}

.play-pill {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.92);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-light), var(--amber-dark));
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.movie-info {
    padding: 14px;
}

.movie-info h3 {
    margin: 10px 0 8px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.32;
}

.movie-info h3 a:hover {
    color: var(--amber-light);
}

.movie-info p {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--subtle);
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    gap: 6px;
}

.movie-meta span {
    min-height: 22px;
    padding: 3px 8px;
    font-size: 11px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(120, 53, 15, 0.28);
    color: #fde68a;
    font-size: 12px;
}

.search-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-block: 28px 12px;
    padding: 22px;
    border: 1px solid rgba(251, 191, 36, 0.16);
    border-radius: 24px;
    background: rgba(17, 24, 39, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.search-panel h2 {
    margin: 0;
    font-size: 24px;
}

.search-row {
    display: flex;
    width: min(760px, 100%);
    gap: 12px;
}

.search-row input,
.search-row select {
    min-height: 46px;
    border: 1px solid rgba(75, 85, 99, 0.9);
    border-radius: 14px;
    outline: none;
    background: rgba(3, 7, 18, 0.72);
    color: #ffffff;
}

.search-row input {
    flex: 1 1 auto;
    min-width: 180px;
    padding: 0 16px;
}

.search-row select {
    flex: 0 0 auto;
    padding: 0 12px;
}

.search-row input:focus,
.search-row select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.16);
}

.sticky-filter {
    position: sticky;
    top: 86px;
    z-index: 50;
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.16);
    border-radius: 22px;
    background: #111827;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.56);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}

.category-card strong,
.category-card em {
    position: relative;
    z-index: 2;
    display: block;
    padding-inline: 20px;
}

.category-card strong {
    margin-top: 110px;
    color: #ffffff;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
}

.category-card em {
    margin-top: 8px;
    padding-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.55;
}

.category-card-large {
    min-height: 250px;
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
    gap: 30px;
}

.rank-list {
    display: grid;
    gap: 12px;
}

.rank-item {
    display: grid;
    grid-template-columns: 48px 72px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(55, 65, 81, 0.78);
    border-radius: 16px;
    background: var(--bg-card);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.rank-item:hover {
    transform: translateX(5px);
    border-color: rgba(251, 191, 36, 0.45);
}

.rank-num {
    color: var(--amber-light);
    font-size: 22px;
    font-weight: 900;
}

.rank-item img {
    width: 72px;
    height: 88px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-text strong,
.rank-text em {
    display: block;
}

.rank-text strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 17px;
}

.rank-text em {
    color: var(--subtle);
    font-size: 13px;
    font-style: normal;
}

.side-panel {
    align-self: start;
    padding: 28px;
    border: 1px solid rgba(251, 191, 36, 0.16);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.34), rgba(17, 24, 39, 0.78));
    box-shadow: var(--shadow);
}

.side-panel h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.side-panel p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.side-panel .btn {
    width: 100%;
    margin: 8px 0 0;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: #030712;
}

.compact-hero {
    padding: 96px 0 58px;
    border-bottom: 1px solid rgba(55, 65, 81, 0.74);
    background:
        radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.16), transparent 30%),
        linear-gradient(135deg, #111827, #000000 58%, #111827);
}

.compact-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
}

.compact-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--subtle);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--amber-light);
}

.detail-hero {
    min-height: 620px;
    padding: 84px 0 64px;
}

.detail-backdrop,
.detail-mask {
    position: absolute;
    inset: 0;
}

.detail-backdrop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: blur(1px);
}

.detail-mask {
    background:
        radial-gradient(circle at 68% 25%, rgba(251, 191, 36, 0.18), transparent 32%),
        linear-gradient(0deg, #030712 0%, rgba(3, 7, 18, 0.74) 44%, rgba(3, 7, 18, 0.62) 100%);
}

.detail-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 36px;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.detail-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
}

.detail-one-line {
    max-width: 880px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta {
    margin-bottom: 18px;
}

.detail-tags {
    margin-bottom: 26px;
}

.player-section {
    margin-top: -44px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: 26px;
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border: 0;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.36)),
        radial-gradient(circle at center, rgba(217, 119, 6, 0.22), transparent 44%);
    color: #ffffff;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--amber);
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 18px 40px rgba(217, 119, 6, 0.45);
}

.player-overlay strong {
    max-width: min(700px, 90%);
    overflow: hidden;
    color: #ffffff;
    font-size: clamp(22px, 4vw, 38px);
    line-height: 1.2;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-overlay em {
    color: #fde68a;
    font-style: normal;
    font-weight: 800;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-block: 46px 16px;
}

.story-card {
    padding: 28px;
    border: 1px solid rgba(55, 65, 81, 0.78);
    border-radius: 24px;
    background: var(--bg-card);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.story-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.story-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    text-align: justify;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.site-footer {
    margin-top: 50px;
    border-top: 1px solid rgba(55, 65, 81, 0.82);
    background: rgba(3, 7, 18, 0.94);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-block: 34px;
}

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

.site-footer p {
    max-width: 620px;
    margin: 0;
    color: var(--subtle);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.76);
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    padding: 18px 0 28px;
    color: #6b7280;
    font-size: 13px;
}

[data-movie-card].is-hidden {
    display: none;
}

@media (max-width: 1180px) {
    .movie-grid,
    .ranking-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .hero-thumb-rail {
        display: none;
    }
}

@media (max-width: 920px) {
    .movie-grid,
    .ranking-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ranking-layout,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .detail-hero-grid {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .search-panel,
    .section-heading,
    .footer-grid {
        align-items: stretch;
        flex-direction: column;
    }

    .search-row {
        width: 100%;
        flex-wrap: wrap;
    }

    .search-row select {
        flex: 1 1 160px;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 72px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid rgba(251, 191, 36, 0.18);
        border-radius: 20px;
        background: rgba(3, 7, 18, 0.96);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        border-radius: 12px;
    }

    .hero-slider {
        min-height: 640px;
        height: 78vh;
    }

    .hero-content {
        bottom: 76px;
    }

    .hero-dots {
        right: auto;
        left: 20px;
        bottom: 34px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 320px;
    }

    .movie-grid,
    .ranking-grid,
    .category-grid,
    .movie-grid-featured {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .movie-info {
        padding: 12px;
    }

    .movie-info h3 {
        font-size: 15px;
    }

    .detail-hero {
        padding-top: 58px;
    }

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

    .detail-poster {
        width: min(240px, 70vw);
    }

    .player-section {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 22px, 1280px);
    }

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

    .logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

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

    .movie-grid,
    .ranking-grid,
    .category-grid,
    .movie-grid-featured {
        grid-template-columns: 1fr;
    }

    .poster-link {
        aspect-ratio: 16 / 10;
    }

    .category-card strong {
        margin-top: 120px;
    }

    .story-card {
        padding: 22px;
    }
}
