:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-900: #78350f;
    --orange-500: #f97316;
    --ink: #241507;
    --muted: #786452;
    --line: rgba(180, 83, 9, .18);
    --card: rgba(255, 255, 255, .88);
    --shadow: 0 22px 55px rgba(120, 53, 15, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(252, 211, 77, .32), transparent 30rem),
        linear-gradient(135deg, #fffbeb 0%, #fff7ed 52%, #fefce8 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, .96), rgba(255, 247, 237, .96));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(120, 53, 15, .08);
    backdrop-filter: blur(18px);
}

.topbar {
    max-width: 1240px;
    height: 72px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.brand {
    font-size: 24px;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--amber-700), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 12px 24px rgba(217, 119, 6, .28);
    font-size: 15px;
}

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

.desktop-nav a,
.mobile-panel nav a {
    color: #5f3a12;
    font-weight: 700;
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: var(--amber-600);
    transition: right .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    right: 0;
}

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

.search-box input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
    border: 2px solid rgba(217, 119, 6, .2);
    background: rgba(255, 255, 255, .88);
    border-radius: 999px;
    color: #4b2e0a;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.search-box input {
    width: 220px;
    padding: 10px 14px;
}

.search-box input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .13);
}

.search-box button,
.mobile-search button,
.filter-panel button,
.primary-button,
.ghost-button,
.section-action,
.text-link {
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.search-box button,
.mobile-search button,
.primary-button,
.filter-panel button {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
    box-shadow: 0 12px 26px rgba(217, 119, 6, .24);
}

.search-box button {
    padding: 10px 15px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
}

.ghost-button {
    color: #fff7ed;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
}

.search-box button:hover,
.mobile-search button:hover,
.filter-panel button:hover,
.primary-button:hover,
.ghost-button:hover,
.section-action:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--amber-100);
    color: var(--amber-900);
    font-size: 24px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 16px 22px 20px;
    background: rgba(255, 251, 235, .98);
}

.mobile-panel.open {
    display: block;
}

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.mobile-panel nav a {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(254, 243, 199, .75);
}

main {
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 620px;
    background: #2c1708;
    color: #fff;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    align-items: center;
    gap: 42px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 88px 22px 110px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

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

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    opacity: .55;
    filter: blur(3px) saturate(1.05);
    transform: scale(1.04);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 75% 30%, rgba(245, 158, 11, .35), transparent 26rem),
        linear-gradient(90deg, rgba(36, 21, 7, .96), rgba(36, 21, 7, .72), rgba(36, 21, 7, .38));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--amber-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero .eyebrow,
.detail-hero .eyebrow {
    color: var(--amber-300);
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(44px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -.06em;
}

.hero-summary {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 247, 237, .86);
    font-size: 18px;
    line-height: 1.85;
}

.hero-tags,
.detail-tags,
.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.detail-tags span,
.movie-tags span {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span,
.detail-tags span {
    color: #fff7ed;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
}

.movie-tags span {
    color: var(--amber-700);
    background: var(--amber-100);
}

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

.hero-poster {
    justify-self: end;
    width: min(430px, 100%);
    aspect-ratio: 2 / 3;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .38);
    transform: rotate(2deg);
    background: rgba(255, 255, 255, .1);
}

.hero-poster img,
.movie-poster img,
.detail-cover img,
.wide-card-cover img,
.category-covers img,
.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-controls > button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .13);
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 9px;
}

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

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

.stats-strip {
    max-width: 1180px;
    margin: -42px auto 0;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0 22px;
}

.stats-strip div {
    border: 1px solid rgba(217, 119, 6, .16);
    border-radius: 26px;
    padding: 24px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.stats-strip strong {
    display: block;
    color: var(--amber-700);
    font-size: 34px;
    line-height: 1;
}

.stats-strip span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

.page-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 22px;
}

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

.section-heading h2,
.sub-hero h1,
.content-card h2,
.side-card h2 {
    margin: 0;
    color: #3b240b;
    letter-spacing: -.04em;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 46px);
}

.section-heading p,
.sub-hero p,
.category-tile p,
.movie-card p,
.wide-card p,
.content-card p,
.side-card,
.muted-line {
    color: var(--muted);
    line-height: 1.75;
}

.section-heading p {
    margin: 8px 0 0;
    max-width: 670px;
}

.section-action,
.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--amber-700);
    font-weight: 900;
}

.section-action {
    padding: 10px 16px;
    background: var(--amber-100);
}

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

.category-tile,
.category-card-large,
.movie-card,
.wide-card,
.content-card,
.side-card {
    border: 1px solid rgba(217, 119, 6, .14);
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.category-tile {
    min-height: 198px;
    padding: 24px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.category-tile:hover,
.movie-card:hover,
.wide-card:hover,
.category-card-large:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 6, .35);
    box-shadow: 0 28px 70px rgba(120, 53, 15, .2);
}

.category-tile span,
.category-tile strong {
    color: var(--amber-700);
}

.category-tile span {
    font-size: 22px;
    font-weight: 900;
}

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

.category-tile p,
.category-tile em {
    margin: 0;
}

.category-tile em {
    color: #9a6a2c;
    font-size: 13px;
    font-style: normal;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: rgba(254, 243, 199, .5);
}

.movie-poster img {
    transition: transform .45s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(36, 21, 7, .68));
}

.poster-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(245, 158, 11, .92);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .26);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-600), #ef4444);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.movie-card-body {
    padding: 16px 16px 18px;
}

.movie-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 900;
}

.movie-card h3 {
    margin: 8px 0;
    color: #3b240b;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.wide-card h3 a:hover,
.category-card-large h2 a:hover {
    color: var(--amber-700);
}

.movie-card p {
    min-height: 50px;
    margin: 0 0 14px;
    font-size: 14px;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border-radius: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.wide-card-cover {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(254, 243, 199, .5);
}

.wide-card h3 {
    margin: 0 0 8px;
    color: #3b240b;
    font-size: 18px;
}

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

.sub-hero {
    padding: 74px 22px 66px;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, .4), transparent 22rem),
        linear-gradient(135deg, #78350f, #431407 68%, #2c1708);
}

.sub-hero .eyebrow {
    color: var(--amber-300);
}

.sub-hero h1 {
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
}

.sub-hero p {
    max-width: 820px;
    margin: 16px auto 0;
    color: rgba(255, 247, 237, .84);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 170px 170px auto auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 42px rgba(120, 53, 15, .1);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
}

.filter-panel button {
    min-height: 44px;
    padding: 0 16px;
}

.filter-panel [data-filter-count] {
    color: var(--amber-700);
    font-weight: 900;
    white-space: nowrap;
}

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

.category-card-large {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    padding: 18px;
    border-radius: 30px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.category-covers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    height: 180px;
}

.category-covers img {
    border-radius: 18px;
    background: rgba(254, 243, 199, .5);
}

.category-card-large h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.detail-hero {
    color: #fff;
    background-size: cover;
    background-position: center;
}

.detail-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 36px 22px 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 32px;
    color: rgba(255, 247, 237, .78);
    font-weight: 700;
}

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

.detail-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: center;
}

.detail-cover {
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
    background: rgba(255, 255, 255, .1);
}

.detail-copy h1 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.detail-one-line {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 247, 237, .86);
    font-size: 18px;
    line-height: 1.85;
}

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

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

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

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #120b05;
    box-shadow: 0 30px 80px rgba(36, 21, 7, .28);
    aspect-ratio: 16 / 9;
}

.player-box video,
.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.player-box video {
    background: #000;
    object-fit: contain;
}

.player-cover {
    z-index: 2;
    border: 0;
    padding: 0;
    background: #120b05;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .66));
}

.player-cover span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 84px;
    height: 84px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
    box-shadow: 0 18px 44px rgba(0, 0, 0, .36);
    font-size: 30px;
}

.player-start {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    transform: translateX(-50%);
    min-height: 46px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.player-box.is-playing .player-cover,
.player-box.is-playing .player-start {
    display: none;
}

.content-card,
.side-card {
    border-radius: 28px;
    padding: 26px;
}

.content-card h2,
.side-card h2 {
    margin-bottom: 12px;
    font-size: 26px;
}

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

.side-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.side-card dl div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.side-card dt {
    color: var(--amber-700);
    font-weight: 900;
}

.side-card dd {
    margin: 0;
}

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

.mini-related .wide-card {
    grid-template-columns: 80px 1fr;
    box-shadow: none;
    background: rgba(255, 251, 235, .7);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
}

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

.sitemap-list a {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: #3b240b;
    font-weight: 800;
}

.sitemap-list span {
    color: var(--muted);
    font-weight: 600;
}

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

.narrow-content {
    max-width: 920px;
}

.site-footer {
    color: var(--amber-50);
    background: linear-gradient(180deg, var(--amber-900), #431407);
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 54px 22px 34px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 16px;
    color: #fff;
    font-size: 20px;
}

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

.site-footer p {
    margin: 0;
    color: rgba(255, 247, 237, .76);
    line-height: 1.75;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.site-footer a {
    color: rgba(255, 247, 237, .78);
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 230, 138, .14);
    padding: 18px 22px;
    color: rgba(255, 247, 237, .7);
    text-align: center;
}

.hidden-by-filter {
    display: none !important;
}

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

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 68px;
    }

    .hero-poster {
        justify-self: start;
        width: 260px;
        display: none;
    }

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

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

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

@media (max-width: 760px) {
    .topbar {
        height: 66px;
        padding: 0 16px;
    }

    .brand {
        font-size: 20px;
    }

    .hero {
        min-height: 590px;
    }

    .hero-slide {
        padding: 56px 18px 96px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-summary,
    .detail-one-line {
        font-size: 16px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 18px;
    }

    .page-section {
        padding: 48px 16px;
    }

    .section-heading {
        display: block;
    }

    .section-action {
        margin-top: 16px;
    }

    .category-grid,
    .movie-grid,
    .wide-grid,
    .category-list-large,
    .movie-index-list {
        grid-template-columns: 1fr;
    }

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

    .category-card-large,
    .detail-intro {
        grid-template-columns: 1fr;
    }

    .category-covers {
        height: 150px;
    }

    .detail-cover {
        width: 220px;
    }

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

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