* {
    box-sizing: border-box;
}

:root {
    --stone-950: #0c0a09;
    --stone-900: #1c1917;
    --stone-800: #292524;
    --stone-700: #44403c;
    --stone-600: #57534e;
    --stone-500: #78716c;
    --stone-300: #d6d3d1;
    --stone-200: #e7e5e4;
    --stone-100: #f5f5f4;
    --amber-950: #451a03;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(41, 37, 36, 0.14);
    --shadow-strong: 0 24px 70px rgba(28, 25, 23, 0.32);
    --radius-xl: 24px;
    --radius-lg: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--stone-800);
    background: linear-gradient(180deg, #fffaf0 0%, #f9f5ec 42%, #fff 100%);
}

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

img {
    display: block;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.85), rgba(28, 25, 23, 0.94));
}

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--stone-900), var(--amber-900), var(--stone-900));
    border-bottom: 2px solid var(--amber-600);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.32);
}

.brand__text strong {
    display: block;
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--amber-200, #fde68a), var(--amber-400));
    -webkit-background-clip: text;
    color: transparent;
}

.brand__text em {
    display: block;
    margin-top: 4px;
    color: var(--amber-300);
    font-size: 12px;
    font-style: normal;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nav__link {
    padding: 10px 14px;
    border-radius: 12px;
    color: #ffedd5;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--white);
    background: rgba(217, 119, 6, 0.92);
    transform: translateY(-1px);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(252, 211, 77, 0.32);
    border-radius: 999px;
    background: rgba(12, 10, 9, 0.22);
}

.nav-search input,
.mobile-panel input {
    width: 150px;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
}

.nav-search input::placeholder,
.mobile-panel input::placeholder {
    color: rgba(255, 237, 213, 0.72);
}

.nav-search button,
.mobile-panel button {
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--amber-600);
    padding: 8px 14px;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(217, 119, 6, 0.95);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

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

.mobile-panel.is-open {
    display: grid;
    gap: 8px;
}

.mobile-panel a,
.mobile-panel form {
    padding: 13px 14px;
    border-radius: 14px;
    color: #ffedd5;
    background: rgba(28, 25, 23, 0.82);
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--stone-900), var(--amber-900), var(--stone-800));
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    transform: scale(1.04);
}

.hero-slide__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.32), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.68));
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100% - 1180px) / 2));
    top: 50%;
    width: min(680px, calc(100% - 48px));
    transform: translateY(-50%);
}

.hero-kicker,
.detail-kicker,
.page-hero span,
.section-head span,
.promo-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-300);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.hero h1 {
    margin: 16px 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero p {
    margin: 0 0 28px;
    color: #e7e5e4;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.8;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-meta span,
.detail-meta span {
    padding: 8px 12px;
    border: 1px solid rgba(252, 211, 77, 0.35);
    border-radius: 999px;
    color: #fef3c7;
    background: rgba(28, 25, 23, 0.4);
    backdrop-filter: blur(10px);
}

.hero-actions,
.detail-info .btn {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-600), var(--amber-700));
    box-shadow: 0 18px 32px rgba(217, 119, 6, 0.32);
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(252, 211, 77, 0.46);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 36px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.hero-controls button {
    border: 0;
    color: var(--white);
    cursor: pointer;
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    background: rgba(28, 25, 23, 0.66);
}

.hero-dots {
    display: flex;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(28, 25, 23, 0.66);
}

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
}

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

.hero-rail {
    position: absolute;
    right: max(24px, calc((100% - 1180px) / 2));
    top: 112px;
    z-index: 3;
    width: min(330px, 30vw);
    display: grid;
    gap: 14px;
}

.hero-rail__item {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 92px;
    padding: 10px;
    border: 1px solid rgba(252, 211, 77, 0.24);
    border-radius: 18px;
    color: var(--white);
    background: rgba(28, 25, 23, 0.54);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border 0.25s ease;
}

.hero-rail__item:hover {
    border-color: var(--amber-400);
    transform: translateX(-4px);
}

.hero-rail__item img {
    width: 82px;
    height: 68px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-rail__item span {
    font-weight: 800;
    line-height: 1.35;
}

.section-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}

.band-section {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.78), rgba(245, 245, 244, 0.88));
}

.section-head {
    position: relative;
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 10px 0 10px;
    color: var(--stone-800);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.section-head p {
    max-width: 760px;
    margin: 0;
    color: var(--stone-600);
    line-height: 1.8;
}

.section-link,
.text-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--amber-700);
    font-weight: 900;
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.category-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76));
}

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

.category-tile span,
.category-tile strong,
.category-tile em {
    position: relative;
    display: block;
    margin-inline: 18px;
}

.category-tile span {
    margin-top: 108px;
    color: var(--amber-300);
    font-size: 13px;
    font-weight: 800;
}

.category-tile strong {
    margin-top: 8px;
    font-size: 24px;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(214, 211, 209, 0.62);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(217, 119, 6, 0.48);
    box-shadow: var(--shadow-strong);
    transform: translateY(-8px);
}

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

.movie-card__media {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-900), var(--stone-900));
}

.movie-grid--featured .movie-card__media {
    height: 280px;
}

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

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

.movie-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-card__media::after {
    opacity: 1;
}

.movie-card__badge,
.movie-rank {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(28, 25, 23, 0.72);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 900;
}

.movie-rank {
    right: 12px;
    left: auto;
    color: var(--stone-900);
    background: var(--amber-300);
}

.movie-card__play {
    position: absolute;
    z-index: 3;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--amber-600);
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.4);
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card__body {
    padding: 18px;
}

.movie-card__body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card__body h3 a:hover {
    color: var(--amber-700);
}

.movie-card__body p {
    min-height: 52px;
    margin: 0 0 12px;
    color: var(--stone-600);
    font-size: 14px;
    line-height: 1.75;
}

.movie-card__meta {
    color: var(--stone-500);
    font-size: 13px;
    line-height: 1.5;
}

.movie-card__tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.movie-card__tags span,
.detail-tags span {
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--amber-800);
    background: var(--amber-100);
    font-size: 12px;
    font-weight: 700;
}

.promo-card {
    margin-bottom: 54px;
    padding: clamp(30px, 5vw, 58px);
    border-radius: var(--radius-xl);
    color: var(--white);
    background:
        radial-gradient(circle at 16% 8%, rgba(252, 211, 77, 0.42), transparent 26%),
        linear-gradient(100deg, var(--amber-700), var(--amber-900), var(--stone-900));
    box-shadow: var(--shadow-strong);
}

.promo-card h2 {
    margin: 12px 0;
    font-size: clamp(30px, 5vw, 48px);
}

.promo-card p {
    max-width: 720px;
    color: #ffedd5;
    line-height: 1.8;
}

.page-hero {
    color: var(--white);
    background:
        radial-gradient(circle at 78% 16%, rgba(245, 158, 11, 0.35), transparent 28%),
        linear-gradient(135deg, var(--stone-900), var(--amber-900), var(--stone-800));
}

.page-hero__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 74px 0 78px;
}

.page-hero h1 {
    margin: 12px 0 14px;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1.08;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #e7e5e4;
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--stone-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--amber-700);
    font-weight: 800;
}

.breadcrumb--light,
.breadcrumb--light a {
    color: #ffedd5;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid rgba(217, 119, 6, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(214, 211, 209, 0.92);
    border-radius: 14px;
    outline: 0;
    color: var(--stone-800);
    background: var(--white);
}

.filter-panel input {
    padding: 0 18px;
}

.filter-panel select {
    padding: 0 12px;
}

.filter-panel__selects {
    display: flex;
    gap: 12px;
}

.empty-state {
    display: none;
    margin-top: 28px;
    padding: 24px;
    border-radius: 18px;
    color: var(--stone-600);
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.empty-state.is-visible {
    display: block;
}

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

.category-panel {
    display: grid;
    grid-template-columns: 210px 1fr;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.category-panel__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.category-panel__body {
    padding: 28px;
}

.category-panel__body span {
    color: var(--amber-700);
    font-weight: 900;
}

.category-panel__body h2 {
    margin: 10px 0 12px;
    font-size: 28px;
}

.category-panel__body p {
    color: var(--stone-600);
    line-height: 1.8;
}

.category-panel__links {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.category-panel__links a {
    color: var(--stone-700);
    font-weight: 700;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--stone-900);
}

.detail-hero__backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.32;
}

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

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 10, 9, 0.94), rgba(69, 26, 3, 0.74), rgba(12, 10, 9, 0.9));
}

.detail-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 70px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(252, 211, 77, 0.38);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
}

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

.detail-info h1 {
    margin: 14px 0 18px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
}

.detail-one-line {
    max-width: 760px;
    color: #e7e5e4;
    font-size: 19px;
    line-height: 1.8;
}

.detail-content {
    display: grid;
    gap: 28px;
}

.player-block,
.article-card {
    padding: clamp(20px, 4vw, 32px);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.player-block h2,
.article-card h2 {
    margin: 0 0 18px;
    color: var(--stone-800);
    font-size: 28px;
}

.article-card p {
    margin: 0;
    color: var(--stone-700);
    font-size: 17px;
    line-height: 2;
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    box-shadow: var(--shadow-strong);
}

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

.video-player__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 12px;
    border: 0;
    color: var(--white);
    background:
        radial-gradient(circle at center, rgba(217, 119, 6, 0.24), transparent 30%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
    cursor: pointer;
}

.video-player__overlay.is-hidden {
    display: none;
}

.video-player__overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--amber-600);
    box-shadow: 0 18px 42px rgba(217, 119, 6, 0.38);
    font-size: 28px;
}

.video-player__overlay strong {
    font-size: 20px;
}

.site-footer {
    color: #d6d3d1;
    background: linear-gradient(90deg, var(--stone-900), var(--amber-950), var(--stone-900));
    border-top: 2px solid var(--amber-800);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    color: var(--amber-400);
    font-size: 24px;
    font-weight: 900;
}

.site-footer p {
    max-width: 520px;
    color: #a8a29e;
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--amber-400);
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

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

.footer-bottom {
    padding: 18px;
    border-top: 1px solid rgba(120, 113, 108, 0.28);
    color: #a8a29e;
    text-align: center;
    font-size: 13px;
}

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

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-rail {
        display: none;
    }

    .category-grid,
    .rank-grid--wide {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 820px) {
    .hero {
        min-height: 600px;
    }

    .hero-content {
        top: 46%;
    }

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

    .category-panel,
    .detail-layout,
    .footer-inner,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .filter-panel__selects {
        display: grid;
        grid-template-columns: 1fr;
    }

    .category-panel__media img {
        min-height: 220px;
    }

    .detail-poster {
        max-width: 320px;
    }
}

@media (max-width: 560px) {
    .nav-shell {
        width: min(100% - 20px, 1240px);
    }

    .brand__text em {
        display: none;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        left: 18px;
        width: calc(100% - 36px);
    }

    .hero-actions {
        display: grid;
    }

    .hero-controls {
        bottom: 20px;
    }

    .section-wrap,
    .page-hero__inner,
    .detail-hero__inner,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

    .section-wrap {
        padding: 48px 0;
    }

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

    .movie-card__media {
        height: 240px;
    }
}
