* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    --bg: #050505;
    --panel: #111827;
    --panel-soft: #161f2d;
    --line: rgba(255, 255, 255, 0.10);
    --text: #f9fafb;
    --muted: #a9b1c3;
    --orange: #f97316;
    --red: #dc2626;
    --gold: #fbbf24;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.15), transparent 32%), var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 12, 20, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    width: min(1280px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fb923c, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 11px;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
    font-size: 14px;
}

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

.desktop-nav a,
.mobile-nav a {
    padding: 9px 13px;
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: white;
    background: linear-gradient(90deg, var(--orange), var(--red));
    transform: translateY(-1px);
}

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

.search-open,
.menu-toggle,
.search-close {
    border: 1px solid var(--line);
    color: white;
    background: rgba(31, 41, 55, 0.82);
    border-radius: 12px;
    min-height: 40px;
    padding: 0 14px;
}

.menu-toggle {
    display: none;
    width: 42px;
    padding: 0;
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(17, 24, 39, 0.96);
    border-radius: 18px;
}

.mobile-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.search-panel {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 18px;
    background: rgba(0, 0, 0, 0.72);
}

.search-panel.open {
    display: flex;
}

.search-box {
    width: min(720px, 100%);
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(17, 24, 39, 0.98);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.search-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 38px;
    padding: 0;
}

.search-label {
    display: block;
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 900;
}

.site-search-input,
.page-filter-input,
.page-filter-select {
    width: 100%;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(2, 6, 23, 0.85);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
}

.site-search-input:focus,
.page-filter-input:focus,
.page-filter-select:focus {
    border-color: rgba(249, 115, 22, 0.9);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-results {
    margin-top: 14px;
    display: grid;
    gap: 10px;
    max-height: 55vh;
    overflow: auto;
}

.search-result-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.search-result-item img {
    width: 54px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    background: #0f172a;
}

.search-result-item strong {
    display: block;
    font-size: 15px;
}

.search-result-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.hero-slider {
    min-height: calc(100vh - 68px);
    position: relative;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.78)), radial-gradient(circle at 72% 35%, rgba(249, 115, 22, 0.32), transparent 36%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 68px);
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 420px;
    align-items: center;
    gap: 54px;
    padding: 70px 0;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 13px;
    color: #fed7aa;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 900;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 1;
    letter-spacing: -0.06em;
    text-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

.hero-copy p {
    margin: 24px 0 0;
    max-width: 720px;
    color: #e5e7eb;
    font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.detail-meta span,
.movie-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.62);
    border-radius: 999px;
    font-size: 13px;
}

.hero-actions,
.detail-copy .primary-button {
    margin-top: 30px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: white;
    background: linear-gradient(90deg, var(--orange), var(--red));
    box-shadow: 0 18px 45px rgba(249, 115, 22, 0.28);
}

.ghost-button {
    margin-left: 12px;
    color: white;
    background: rgba(31, 41, 55, 0.78);
    border: 1px solid var(--line);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 32px;
    background: #111827;
    box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.12);
    transform: perspective(900px) rotateY(-8deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-dot {
    width: 42px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.hero-dot.active {
    background: linear-gradient(90deg, var(--orange), var(--red));
}

.section-block {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.section-title-row h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-title-row a {
    color: #fb923c;
    font-weight: 900;
}

.compact-row {
    margin-bottom: 18px;
}

.search-entrance {
    padding-bottom: 14px;
}

.wide-search {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(17, 24, 39, 0.7));
    border-radius: var(--radius);
}

.inline-results {
    position: relative;
    z-index: 10;
}

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

.category-card {
    min-height: 170px;
    padding: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.72));
    border-radius: 24px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-card:hover,
.movie-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.55);
}

.category-card span {
    display: block;
    color: #fed7aa;
    font-weight: 900;
}

.category-card strong {
    display: block;
    margin: 8px 0;
    font-size: 34px;
}

.category-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 214px;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 20px;
    scroll-snap-type: x proximity;
}

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(17, 24, 39, 0.78);
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #0f172a;
}

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

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

.poster-badge,
.score-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.poster-badge {
    left: 10px;
    top: 10px;
    color: white;
    background: rgba(220, 38, 38, 0.9);
}

.score-badge {
    right: 10px;
    bottom: 10px;
    color: #111827;
    background: var(--gold);
}

.rank-badge {
    left: 10px;
    bottom: 10px;
    color: white;
    background: rgba(249, 115, 22, 0.95);
}

.movie-card-body {
    padding: 14px;
}

.movie-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    margin-top: 12px;
    gap: 6px;
}

.movie-meta span {
    min-height: 23px;
    padding: 2px 7px;
    font-size: 11px;
}

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

.rank-panel {
    padding: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.88), rgba(17, 24, 39, 0.82));
    border-radius: var(--radius);
}

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

.rank-line,
.detailed-rank a {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
}

.rank-number,
.detailed-rank a span {
    color: #fb923c;
    font-weight: 900;
}

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

.rank-score,
.detailed-rank a em {
    color: var(--gold);
    font-style: normal;
    font-weight: 900;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    align-items: end;
    padding: 90px max(16px, calc((100vw - 1280px) / 2)) 58px;
    background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.26), transparent 30%), linear-gradient(135deg, #111827, #020617);
}

.small-hero p,
.category-hero p,
.rank-hero p {
    max-width: 760px;
    color: #d1d5db;
    font-size: 18px;
}

.rank-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48)), var(--rank-cover);
    background-size: cover;
    background-position: center;
    opacity: 0.72;
}

.rank-hero > div {
    position: relative;
    z-index: 2;
}

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

.category-overview-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(17, 24, 39, 0.84);
    border-radius: var(--radius);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-overview-card a {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 230px;
}

.category-overview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0f172a;
}

.category-overview-card div {
    padding: 24px;
}

.category-overview-card span,
.category-overview-card strong {
    color: #fb923c;
    font-weight: 900;
}

.category-overview-card h2 {
    margin: 8px 0 10px;
    font-size: 28px;
}

.category-overview-card p {
    color: var(--muted);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(17, 24, 39, 0.72);
    border-radius: var(--radius);
}

.multi-filter {
    grid-template-columns: minmax(260px, 1fr) 180px 160px 160px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    background: #020617;
}

.detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.12);
    opacity: 0.5;
}

.detail-hero-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.9));
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
    color: #cbd5e1;
    font-size: 14px;
}

.breadcrumb a {
    color: #fb923c;
}

.detail-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.16);
    background: #0f172a;
}

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

.detail-one-line {
    max-width: 820px;
    margin: 18px 0 0;
    color: #e5e7eb;
    font-size: 20px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.tag-list span {
    padding: 6px 11px;
    color: #fed7aa;
    border: 1px solid rgba(249, 115, 22, 0.32);
    background: rgba(249, 115, 22, 0.08);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.player-section {
    margin-top: -72px;
    position: relative;
    z-index: 5;
}

.player-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(17, 24, 39, 0.92);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.video-shell {
    position: relative;
    background: black;
    aspect-ratio: 16 / 9;
}

.video-shell video {
    width: 100%;
    height: 100%;
    background: black;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: white;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
}

.player-cover span {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.35);
    font-size: 28px;
}

.player-cover.is-hidden {
    display: none;
}

.player-info {
    padding: 22px 24px 26px;
}

.player-info h2 {
    margin: 0;
    font-size: 26px;
}

.player-info p {
    margin: 10px 0 0;
    color: var(--muted);
}

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

.detail-content article {
    padding: 24px;
    border: 1px solid var(--line);
    background: rgba(17, 24, 39, 0.74);
    border-radius: var(--radius);
}

.detail-content h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.detail-content p {
    margin: 0;
    color: #d1d5db;
    font-size: 17px;
}

.info-table dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.info-table div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
}

.info-table dt {
    color: var(--muted);
}

.info-table dd {
    margin: 0;
}

.info-table a {
    color: #fb923c;
    font-weight: 900;
}

.site-footer {
    margin-top: 50px;
    border-top: 1px solid var(--line);
    background: #0b1120;
}

.footer-grid {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

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

.site-footer p,
.site-footer a,
.site-footer li {
    color: var(--muted);
    font-size: 14px;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 17px;
}

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

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

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: #64748b;
    font-size: 13px;
}

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

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

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

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

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

@media (max-width: 820px) {
    .nav-wrap {
        width: min(100% - 24px, 1280px);
    }

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

    .hero-slider,
    .hero-content {
        min-height: auto;
    }

    .hero-slider {
        height: auto;
    }

    .hero-slide {
        position: relative;
        display: none;
        min-height: 760px;
    }

    .hero-slide.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 54px 0 90px;
    }

    .hero-poster {
        width: min(300px, 80vw);
        transform: none;
    }

    .hero-actions {
        display: grid;
        gap: 12px;
    }

    .ghost-button {
        margin-left: 0;
    }

    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .info-table dl {
        grid-template-columns: 1fr;
    }

    .category-overview-card a {
        grid-template-columns: 130px 1fr;
    }

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

    .filter-bar,
    .multi-filter {
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        width: min(280px, 82vw);
    }

    .detail-copy h1 {
        font-size: 36px;
    }

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

@media (max-width: 520px) {
    .section-block,
    .detail-wrap,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 24px, 1280px);
    }

    .movie-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .movie-card-body {
        padding: 10px;
    }

    .movie-card h3 {
        font-size: 14px;
    }

    .movie-card p {
        display: none;
    }

    .horizontal-scroll {
        grid-auto-columns: 170px;
    }

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

    .category-overview-card img {
        height: 210px;
    }
}
