:root {
    --forest-950: #0a140d;
    --forest-900: #152819;
    --forest-800: #224126;
    --forest-700: #2f5a33;
    --moss-700: #4c613a;
    --moss-600: #59693f;
    --moss-500: #6d8350;
    --moss-400: #93a878;
    --earth-950: #201910;
    --earth-900: #352b1f;
    --earth-800: #4a3d2b;
    --parchment-100: #fff9e8;
    --parchment-200: #efe4c7;
    --parchment-300: #d3c49f;
    --parchment-400: #ad9b72;
    --rust-500: #bd7440;
    --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 16px 30px rgba(0, 0, 0, 0.24);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--parchment-100);
    background:
        radial-gradient(circle at top left, rgba(109, 131, 80, 0.20), transparent 36rem),
        linear-gradient(180deg, var(--forest-950), var(--forest-900) 45%, var(--earth-950));
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(21, 40, 25, 0.94);
    border-bottom: 1px solid rgba(109, 131, 80, 0.32);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

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

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--parchment-100);
    background: linear-gradient(135deg, var(--moss-500), var(--moss-700));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 10px 22px rgba(0, 0, 0, 0.28);
    font-weight: 800;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.18;
}

.brand-title {
    color: var(--parchment-100);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    color: var(--parchment-300);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--parchment-200);
    font-size: 15px;
    font-weight: 600;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a,
.text-link {
    transition: color 0.22s ease, transform 0.22s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover,
.text-link:hover {
    color: var(--parchment-100);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(239, 228, 199, 0.18);
    border-radius: 14px;
    color: var(--parchment-100);
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    color: var(--parchment-200);
    font-weight: 700;
}

.mobile-nav.is-open {
    display: flex;
    animation: slideDown 0.24s ease both;
}

@keyframes slideDown {
    from {
        transform: translateY(-8px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: var(--forest-950);
}

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

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 20, 13, 0.92), rgba(10, 20, 13, 0.55) 46%, rgba(10, 20, 13, 0.18)),
        linear-gradient(0deg, var(--forest-950), transparent 62%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(44px, 8vw, 92px);
}

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

.eyebrow {
    margin: 0 0 12px;
    color: var(--moss-400);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: var(--parchment-100);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-copy h1,
.hero-copy h2 {
    font-size: clamp(40px, 7vw, 78px);
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
}

.hero-desc {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--parchment-200);
    font-size: clamp(16px, 2vw, 20px);
}

.hero-meta,
.meta-pills,
.card-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta {
    margin-top: 24px;
    color: var(--parchment-300);
    font-size: 14px;
}

.hero-meta span,
.meta-pills span,
.card-tags span,
.tag-cloud span {
    border: 1px solid rgba(239, 228, 199, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.hero-meta span {
    padding: 7px 12px;
}

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

.primary-btn,
.ghost-btn,
.quick-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 13px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-btn,
.quick-search button {
    color: #fff;
    background: linear-gradient(135deg, var(--moss-500), var(--moss-700));
    box-shadow: 0 14px 28px rgba(76, 97, 58, 0.32);
}

.ghost-btn {
    color: var(--parchment-100);
    border: 1px solid rgba(239, 228, 199, 0.18);
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.quick-search button:hover {
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.22s ease, transform 0.22s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 34px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.22s ease, width 0.22s ease;
}

.hero-dot.is-active {
    width: 54px;
    background: var(--moss-400);
}

.intro-panel,
.page-hero,
.detail-hero,
.player-section,
.story-card,
.category-card,
.filter-panel {
    border: 1px solid rgba(239, 228, 199, 0.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(34, 65, 38, 0.78), rgba(53, 43, 31, 0.58));
    box-shadow: var(--shadow-soft);
}

.intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: center;
    gap: 34px;
    margin-top: -42px;
    padding: 28px;
    position: relative;
    z-index: 6;
}

.intro-panel h2,
.section-head h2,
.content-section h2,
.category-card h2,
.site-footer h2 {
    margin: 0;
    color: var(--parchment-100);
    line-height: 1.2;
}

.intro-panel h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.intro-panel p,
.page-hero p,
.category-card p,
.story-card p,
.site-footer p {
    color: var(--parchment-300);
}

.quick-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.quick-search input,
.search-field input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(239, 228, 199, 0.14);
    border-radius: 14px;
    color: var(--parchment-100);
    background: rgba(0, 0, 0, 0.22);
    outline: none;
}

.quick-search input {
    padding: 0 16px;
}

.quick-search input::placeholder,
.search-field input::placeholder {
    color: rgba(239, 228, 199, 0.55);
}

.section-block {
    margin: 68px auto 0;
}

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

.section-head.tight {
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: clamp(26px, 3vw, 40px);
}

.text-link {
    color: var(--moss-400);
    font-weight: 800;
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--forest-800);
    box-shadow: var(--shadow-card);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.44;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 20, 13, 0.88), rgba(10, 20, 13, 0.12));
}

.category-tile span,
.category-tile p {
    position: relative;
    z-index: 2;
}

.category-tile span {
    color: var(--parchment-100);
    font-size: 20px;
    font-weight: 900;
}

.category-tile p {
    margin: 8px 0 0;
    color: var(--parchment-300);
    font-size: 13px;
}

.category-tile:hover img {
    transform: scale(1.06);
    opacity: 0.58;
}

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 18px;
}

.search-field {
    display: grid;
    gap: 8px;
    min-width: min(100%, 360px);
    color: var(--parchment-300);
    font-weight: 700;
}

.search-field input {
    padding: 0 14px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(239, 228, 199, 0.14);
    border-radius: 999px;
    color: var(--parchment-200);
    background: rgba(255, 255, 255, 0.05);
}

.chip.active,
.chip:hover {
    color: #fff;
    background: var(--moss-600);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(239, 228, 199, 0.11);
    border-radius: var(--radius-md);
    background: rgba(34, 65, 38, 0.58);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(147, 168, 120, 0.42);
    background: rgba(34, 65, 38, 0.78);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest-800), var(--earth-900));
}

.poster-link img,
.rank-poster img,
.detail-poster img,
.category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-link img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.05);
    filter: saturate(1.1);
}

.poster-shine {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(0deg, rgba(10, 20, 13, 0.78), transparent);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border-radius: 999px;
    color: #fff;
    background: var(--rust-500);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.card-body {
    padding: 15px;
}

.card-title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--parchment-100);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-title:hover {
    color: var(--moss-400);
}

.card-meta,
.card-desc {
    margin: 8px 0 0;
    color: var(--parchment-300);
    font-size: 13px;
}

.card-desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 42px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-tags {
    margin-top: 12px;
}

.card-tags span,
.tag-cloud span {
    padding: 4px 9px;
    color: var(--parchment-200);
    font-size: 12px;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 28px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 76px 44px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(239, 228, 199, 0.10);
    border-radius: var(--radius-md);
    background: rgba(34, 65, 38, 0.58);
    box-shadow: var(--shadow-card);
}

.rank-poster {
    display: block;
    width: 76px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: var(--forest-800);
}

.rank-index {
    color: var(--moss-400);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.rank-copy a {
    color: var(--parchment-100);
    font-size: 17px;
    font-weight: 900;
}

.rank-copy p,
.rank-copy span {
    display: block;
    margin: 5px 0 0;
    color: var(--parchment-300);
    font-size: 13px;
}

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

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

.compact-card .card-desc {
    display: none;
}

.page-main {
    padding-top: 34px;
}

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

.breadcrumb a:hover {
    color: var(--moss-400);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 6vw, 58px);
}

.page-hero::after,
.detail-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(147, 168, 120, 0.15);
    filter: blur(10px);
}

.page-hero h1 {
    max-width: 860px;
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: 17px;
}

.category-listing {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.category-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    padding: 18px;
}

.category-cover {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--forest-800);
}

.category-card h2 {
    font-size: 28px;
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.mini-links a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--parchment-200);
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.detail-main {
    padding-bottom: 32px;
}

.detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: clamp(24px, 5vw, 54px);
    align-items: center;
    overflow: hidden;
    padding: clamp(24px, 5vw, 42px);
}

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 2 / 3;
    background: var(--forest-800);
    box-shadow: var(--shadow-soft);
}

.detail-copy {
    position: relative;
    z-index: 2;
}

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 64px);
}

.detail-one-line {
    max-width: 820px;
    margin: 18px 0 0;
    color: var(--parchment-200);
    font-size: 18px;
}

.meta-pills {
    margin-top: 22px;
}

.meta-pills span {
    padding: 7px 12px;
    color: var(--parchment-200);
}

.tag-cloud {
    margin-top: 16px;
}

.small-actions {
    margin-top: 24px;
}

.player-section {
    margin-top: 34px;
    padding: clamp(18px, 4vw, 28px);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: var(--shadow-soft);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(10, 20, 13, 0.10), rgba(10, 20, 13, 0.64));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-symbol {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding-left: 6px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--moss-500), var(--moss-700));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
    font-size: 32px;
}

.content-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    margin-top: 34px;
}

.story-card {
    padding: clamp(22px, 4vw, 32px);
}

.story-card h2 {
    margin-bottom: 12px;
    font-size: 28px;
}

.story-card p {
    margin: 0;
    font-size: 16px;
}

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

.site-footer {
    margin-top: 78px;
    padding: 44px 0 0;
    border-top: 1px solid rgba(239, 228, 199, 0.12);
    background: rgba(10, 20, 13, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 32px;
}

.footer-brand {
    display: inline-block;
    color: var(--parchment-100);
    font-size: 24px;
    font-weight: 900;
}

.site-footer p {
    max-width: 460px;
}

.footer-links {
    display: grid;
    gap: 9px;
    margin-top: 12px;
    color: var(--parchment-300);
}

.footer-bottom {
    margin-top: 36px;
    padding: 18px 16px;
    color: var(--parchment-400);
    text-align: center;
    border-top: 1px solid rgba(239, 228, 199, 0.08);
}

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

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

    .menu-toggle {
        display: inline-flex;
    }

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

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

@media (max-width: 900px) {
    .hero-slider {
        height: 74vh;
    }

    .intro-panel,
    .two-column,
    .detail-hero,
    .content-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .category-grid,
    .movie-grid,
    .wide-grid,
    .large-side-grid,
    .rank-page-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .category-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

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

    .brand-subtitle {
        display: none;
    }

    .hero-slider {
        min-height: 560px;
    }

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

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 38px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .intro-panel {
        margin-top: -28px;
        padding: 20px;
    }

    .quick-search {
        grid-template-columns: 1fr;
    }

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

    .category-grid,
    .movie-grid,
    .wide-grid,
    .side-grid,
    .large-side-grid,
    .rank-page-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .rank-item {
        grid-template-columns: 62px 32px minmax(0, 1fr);
        gap: 10px;
    }

    .rank-poster {
        width: 62px;
    }

    .rank-index {
        font-size: 20px;
    }

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

    .page-hero,
    .detail-hero,
    .player-section,
    .story-card {
        border-radius: 18px;
    }

    .detail-poster {
        max-width: none;
    }

    .play-symbol {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }
}

@media (max-width: 420px) {
    .category-grid,
    .movie-grid,
    .wide-grid,
    .side-grid,
    .large-side-grid,
    .rank-page-list {
        grid-template-columns: 1fr;
    }
}
