:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: #0f172a;
    --panel-soft: rgba(30, 41, 59, 0.72);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --blue: #38bdf8;
    --cyan: #22d3ee;
    --teal: #14b8a6;
    --orange: #fb923c;
    --yellow: #facc15;
    --shadow: 0 24px 80px rgba(8, 47, 73, 0.35);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 0%, rgba(56, 189, 248, 0.22), transparent 32rem),
        radial-gradient(circle at 82% 6%, rgba(20, 184, 166, 0.18), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.94));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.nav-shell {
    width: min(1240px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

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

.brand-text {
    font-size: 22px;
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.nav-link {
    color: #dbeafe;
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--blue);
    transform: translateY(-1px);
}

.top-search,
.mobile-nav form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-search input,
.mobile-nav input,
.inline-filter input,
.search-tools input,
.search-tools select,
.inline-filter select {
    border: 1px solid var(--line);
    outline: none;
    color: white;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 999px;
    padding: 11px 16px;
}

.top-search input {
    width: 230px;
}

.top-search button,
.mobile-nav button,
.search-tools button,
.mini-search-card button {
    border: 0;
    color: #082f49;
    font-weight: 800;
    border-radius: 999px;
    padding: 11px 16px;
    cursor: pointer;
    background: linear-gradient(135deg, #e0f2fe, #67e8f9);
}

.menu-button {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    color: white;
    background: rgba(15, 23, 42, 0.88);
    border-radius: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    color: #dbeafe;
}

.mobile-nav.is-open {
    display: block;
}

.site-main {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 92px 0 46px;
}

.inner-page {
    padding-top: 106px;
}

.hero-carousel {
    position: relative;
    min-height: 560px;
    margin-bottom: 56px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 32px;
    overflow: hidden;
    background: #020617;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.02);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.06);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(2, 6, 23, 0.1) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0) 60%);
}

.hero-content {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 6vw, 72px);
    top: 50%;
    max-width: 680px;
    transform: translateY(-50%);
}

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

.hero-content h1 {
    margin: 16px 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 610px;
    margin: 0 0 28px;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-actions,
.detail-title-row,
.detail-stats,
.detail-tags,
.card-tags,
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    border-radius: 999px;
    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: #062333;
    background: linear-gradient(135deg, #e0f2fe, #67e8f9 55%, #5eead4);
    box-shadow: 0 18px 34px rgba(34, 211, 238, 0.28);
}

.btn-ghost {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
    position: absolute;
    right: clamp(20px, 4vw, 54px);
    bottom: 38px;
    z-index: 3;
    width: min(390px, 38%);
}

.mini-search-card {
    padding: 24px;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 26px;
    background: rgba(2, 6, 23, 0.58);
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.mini-search-card h2 {
    margin: 8px 0 18px;
    font-size: 24px;
    line-height: 1.28;
}

.mini-search-card form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.mini-search-card input {
    min-width: 0;
    border: 1px solid var(--line);
    color: white;
    border-radius: 999px;
    padding: 12px 16px;
    outline: none;
    background: rgba(15, 23, 42, 0.82);
}

.quick-links {
    margin-top: 16px;
}

.quick-links a,
.text-link {
    color: #7dd3fc;
    font-size: 14px;
    font-weight: 700;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: clamp(24px, 6vw, 72px);
    bottom: 34px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.hero-dot.is-active {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.section-block {
    margin: 0 0 62px;
}

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

.section-heading span {
    display: block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.page-hero h1,
.detail-card h1 {
    margin: 4px 0 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
}

.section-heading a {
    color: #7dd3fc;
    font-weight: 800;
}

.section-heading.compact {
    align-items: start;
    display: block;
}

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

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

.movie-card,
.wide-card,
.category-overview-card,
.side-card,
.detail-card,
.rank-panel {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.9));
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.movie-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover,
.wide-card:hover,
.related-item:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.46);
    box-shadow: 0 20px 48px rgba(14, 165, 233, 0.18);
}

.card-cover,
.wide-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.card-cover img,
.wide-cover img,
.related-item img,
.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.movie-card:hover img,
.wide-card:hover img,
.related-item:hover img {
    transform: scale(1.06);
}

.card-score,
.rank-num {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    color: #0f172a;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fde68a, #facc15);
}

.card-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: rgba(14, 165, 233, 0.92);
    box-shadow: 0 14px 26px rgba(14, 165, 233, 0.34);
}

.card-body,
.wide-body {
    padding: 18px;
}

.card-meta,
.score-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
}

.card-meta a {
    color: #7dd3fc;
    font-weight: 800;
}

.movie-card h3,
.wide-card h3 {
    margin: 10px 0 8px;
    color: white;
    font-size: 18px;
    line-height: 1.32;
}

.movie-card h3 a:hover,
.wide-card h3 a:hover {
    color: var(--blue);
}

.movie-card p,
.wide-card p,
.category-overview-card p,
.footer-grid p,
.page-hero p,
.detail-card p {
    color: #cbd5e1;
    line-height: 1.75;
}

.movie-card p,
.wide-card p {
    margin: 0 0 14px;
    font-size: 14px;
}

.tag {
    display: inline-flex;
    padding: 5px 9px;
    color: #bae6fd;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    font-size: 12px;
}

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

.category-tile {
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.28), rgba(20, 184, 166, 0.16));
    border: 1px solid rgba(125, 211, 252, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 22px 48px rgba(14, 165, 233, 0.2);
}

.category-tile span {
    font-size: 34px;
}

.category-tile strong {
    font-size: 19px;
}

.category-tile em {
    color: #dbeafe;
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
}

.tile-1 { background: linear-gradient(135deg, rgba(37, 99, 235, 0.34), rgba(34, 211, 238, 0.16)); }
.tile-2 { background: linear-gradient(135deg, rgba(249, 115, 22, 0.32), rgba(56, 189, 248, 0.14)); }
.tile-3 { background: linear-gradient(135deg, rgba(168, 85, 247, 0.32), rgba(20, 184, 166, 0.16)); }
.tile-4 { background: linear-gradient(135deg, rgba(244, 63, 94, 0.3), rgba(14, 165, 233, 0.16)); }
.tile-5 { background: linear-gradient(135deg, rgba(34, 197, 94, 0.28), rgba(59, 130, 246, 0.16)); }

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.wide-cover {
    height: 100%;
    aspect-ratio: auto;
}

.score-line {
    justify-content: space-between;
}

.rank-panel {
    padding: 22px;
    position: sticky;
    top: 92px;
}

.rank-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.rank-list a {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.58);
}

.rank-list a:hover {
    color: #7dd3fc;
    background: rgba(14, 165, 233, 0.12);
}

.rank-list span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #0f172a;
    font-weight: 900;
    border-radius: 10px;
    background: linear-gradient(135deg, #fef3c7, #facc15);
}

.rank-list strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.page-hero {
    margin-bottom: 34px;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.22), transparent 24rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.78));
    box-shadow: var(--shadow);
}

.page-hero p {
    max-width: 860px;
    font-size: 18px;
}

.slim-hero {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inline-filter,
.search-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-top: 24px;
}

.search-tools {
    grid-template-columns: minmax(220px, 1fr) 170px 150px 150px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    padding: 18px;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    min-height: 150px;
}

.category-cover-stack img {
    width: 100%;
    height: 100%;
    min-height: 70px;
    object-fit: cover;
    border-radius: 14px;
}

.category-overview-card span {
    font-size: 30px;
}

.category-overview-card h2 {
    margin: 8px 0 8px;
}

.ranking-layout {
    max-width: 980px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: #7dd3fc;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.player-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 26px;
    background: #000;
    box-shadow: var(--shadow);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: white;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.14), rgba(2, 6, 23, 0.82));
}

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

.play-pulse {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 0 0 18px rgba(56, 189, 248, 0.14), 0 22px 42px rgba(14, 165, 233, 0.35);
    animation: pulse 1.8s ease-in-out infinite;
}

.player-cover strong {
    max-width: min(760px, 88%);
    font-size: clamp(22px, 4vw, 38px);
    text-align: center;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.52);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.detail-card {
    margin-top: 22px;
    padding: clamp(22px, 4vw, 34px);
}

.detail-title-row {
    align-items: flex-start;
    justify-content: space-between;
}

.detail-stats {
    margin: 18px 0;
    color: #dbeafe;
}

.detail-stats span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(15, 23, 42, 0.64);
}

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

.text-section {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-top: 22px;
}

.text-section h2,
.side-card h2,
.site-footer h2 {
    margin: 0 0 14px;
    color: white;
    font-size: 20px;
}

.lead-text {
    color: white !important;
    font-size: 18px;
    font-weight: 700;
}

.detail-side {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 92px;
}

.side-card {
    padding: 18px;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 16px;
}

.full {
    width: 100%;
}

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

.related-item {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.54);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-item img {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
}

.related-item strong,
.related-item em {
    display: block;
}

.related-item strong {
    color: white;
    line-height: 1.4;
}

.related-item em {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.7);
}

.footer-grid {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 12px;
    font-size: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #cbd5e1;
}

.footer-links-wide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    border-top: 1px solid var(--line);
    color: #64748b;
    text-align: center;
    font-size: 14px;
}

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

@media (max-width: 1100px) {
    .desktop-nav,
    .top-search {
        display: none;
    }

    .menu-button {
        display: inline-grid;
        place-items: center;
    }

    .hero-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        padding: 0 20px 22px;
    }

    .hero-carousel {
        min-height: 680px;
    }

    .mini-search-card {
        margin-top: 470px;
    }

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

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

    .split-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .detail-side {
        position: static;
    }

    .category-overview-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .nav-shell {
        height: 62px;
    }

    .brand-text {
        font-size: 18px;
    }

    .site-main,
    .inner-page {
        width: min(100% - 24px, 1240px);
        padding-top: 82px;
    }

    .hero-carousel {
        min-height: 690px;
        border-radius: 22px;
    }

    .hero-content {
        top: 42%;
        left: 20px;
        right: 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-panel {
        padding: 0 14px 18px;
    }

    .hero-dots {
        left: 20px;
        bottom: 18px;
    }

    .mini-search-card {
        margin-top: 470px;
        padding: 18px;
    }

    .mini-search-card form,
    .inline-filter,
    .search-tools {
        grid-template-columns: 1fr;
    }

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

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

    .wide-cover {
        aspect-ratio: 16 / 9;
    }

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

    .detail-title-row {
        display: grid;
    }

    .related-item {
        grid-template-columns: 96px 1fr;
    }

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