:root {
    --cherry-pink: #ffb7c5;
    --rose: #fb7185;
    --hot-pink: #ec4899;
    --soft-pink: #ffe4e9;
    --light-yellow: #fff4e6;
    --tender-green: #a8d5ba;
    --snow-white: #ffffff;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: rgba(255, 255, 255, 0.42);
    --shadow: 0 20px 42px rgba(255, 183, 197, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe4e9 45%, #ffd4e0 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.glass-card,
.glass-effect,
.site-header,
.movie-card,
.category-tile,
.filter-card,
.rank-item,
.rank-row,
.player-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 14px 36px rgba(255, 183, 197, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-shell {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--ink);
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hot-pink), var(--rose));
    box-shadow: 0 12px 22px rgba(236, 72, 153, 0.28);
}

.brand-text {
    font-size: 22px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--hot-pink), var(--rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link,
.mobile-link {
    color: #4b5563;
    font-weight: 600;
    transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--hot-pink);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border: 2px solid rgba(251, 207, 232, 0.84);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.header-search input,
.mobile-search input,
.filter-card input,
.filter-card select {
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.74);
}

.header-search input {
    width: 190px;
    padding: 9px 8px 9px 14px;
    border-radius: 999px;
}

.header-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(90deg, var(--hot-pink), var(--rose));
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    color: var(--hot-pink);
    border-radius: 14px;
    background: #fce7f3;
}

.mobile-panel {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
}

.mobile-panel.is-open {
    display: block;
    animation: fadeIn 0.28s ease-out;
}

.mobile-search {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.mobile-search input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 999px;
}

.mobile-nav {
    display: grid;
    gap: 8px;
}

.mobile-link {
    padding: 10px 12px;
    border-radius: 16px;
}

.home-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(90deg, #fff1f7, #ffe4e9, #fff7ed);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(1px) saturate(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 183, 197, 0.62), transparent 34%),
        linear-gradient(90deg, rgba(255, 244, 230, 0.98), rgba(255, 228, 233, 0.92), rgba(255, 255, 255, 0.6));
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    gap: 54px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
    animation: fadeIn 0.72s ease-out;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 14px;
    color: var(--hot-pink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(252, 231, 243, 0.82);
}

.section-kicker.rose {
    color: #e11d48;
}

.section-kicker.green {
    color: #059669;
    background: rgba(209, 250, 229, 0.7);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(44px, 8vw, 86px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    background: linear-gradient(90deg, #1f2937, var(--hot-pink), var(--rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-line {
    margin: 22px 0 0;
    max-width: 680px;
    color: #4b5563;
    font-size: 21px;
    line-height: 1.8;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    color: #db2777;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    background: #fce7f3;
}

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--hot-pink), var(--rose));
    box-shadow: 0 16px 28px rgba(236, 72, 153, 0.28);
}

.btn-ghost {
    color: #be185d;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(251, 207, 232, 0.84);
}

.btn-primary:hover,
.btn-ghost:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow);
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 12px solid rgba(255, 255, 255, 0.52);
    border-radius: 36px;
    box-shadow: 0 30px 70px rgba(236, 72, 153, 0.28);
    transform: rotate(2deg);
}

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

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-poster span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hot-pink), var(--rose));
    box-shadow: 0 16px 36px rgba(236, 72, 153, 0.32);
}

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

.hero-arrow,
.hero-dot {
    border: 0;
    color: #be185d;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
}

.hero-dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--hot-pink), var(--rose));
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 64px;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 183, 197, 0.68), transparent 28%),
        linear-gradient(120deg, #fff7ed, #ffe4e9, #fdf2f8);
}

.small-hero h1 {
    margin: 0;
    max-width: 880px;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.small-hero p {
    max-width: 820px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

.section-block {
    padding: 68px 0;
}

.section-block.compact {
    padding: 56px 0;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-heading a {
    color: var(--hot-pink);
    font-weight: 800;
    white-space: nowrap;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #fff7ed);
}

.movie-cover img,
.rank-thumb img,
.category-covers img,
.side-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-cover img {
    transition: transform 0.45s ease;
}

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

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: rgba(236, 72, 153, 0.88);
    backdrop-filter: blur(10px);
}

.rank-badge {
    left: 12px;
    top: 12px;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    color: #ffffff;
    font-style: normal;
    background: linear-gradient(135deg, #f59e0b, #f43f5e);
}

.movie-body {
    padding: 17px;
}

.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.movie-meta span,
.detail-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
}

.movie-body h2 {
    margin: 12px 0 8px;
    font-size: 19px;
    line-height: 1.35;
}

.movie-body h2 a:hover {
    color: var(--hot-pink);
}

.movie-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-band {
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.72), rgba(255, 241, 242, 0.78));
}

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

.rank-item {
    display: grid;
    grid-template-columns: 52px 120px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 100px;
    padding: 12px;
    border-radius: 24px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rank-item:hover,
.rank-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rank-number {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hot-pink), var(--rose));
}

.rank-thumb {
    width: 120px;
    height: 76px;
    overflow: hidden;
    border-radius: 16px;
}

.rank-copy {
    min-width: 0;
}

.rank-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy em {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

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

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

.category-tile {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-covers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    height: 132px;
}

.category-covers img {
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #fce7f3;
}

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

.category-tile em {
    color: var(--muted);
    font-style: normal;
    line-height: 1.7;
}

.filter-shell {
    padding-top: 28px;
}

.filter-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 12px;
    padding: 14px;
    border-radius: 26px;
}

.search-page-filter {
    grid-template-columns: minmax(0, 1fr) 220px 180px;
}

.filter-card input,
.filter-card select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 2px solid rgba(251, 207, 232, 0.72);
    border-radius: 999px;
}

.empty-state {
    display: none;
    margin: 32px 0;
    padding: 28px;
    color: var(--muted);
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
}

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

.rank-table {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.rank-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 150px 190px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 20px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rank-row span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hot-pink), var(--rose));
}

.rank-row em,
.rank-row small {
    color: var(--muted);
    font-style: normal;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding: 34px 0 0;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--hot-pink);
    font-weight: 700;
}

.player-card {
    overflow: hidden;
    border-radius: 30px;
}

.player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #050505;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #050505;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.26));
    transition: opacity 0.24s ease;
}

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

.player-play-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hot-pink), var(--rose));
    box-shadow: 0 18px 42px rgba(236, 72, 153, 0.36);
}

.detail-info,
.article-block,
.side-card {
    padding: 24px;
    border-radius: 28px;
}

.detail-info h1 {
    margin: 0 0 16px;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.detail-line {
    margin: 16px 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.article-block h2,
.side-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.article-block p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.9;
}

.side-poster {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 14px;
    margin: 0;
}

.side-card dt {
    color: var(--muted);
}

.side-card dd {
    margin: 0;
    font-weight: 700;
}

.side-card a {
    color: var(--hot-pink);
}

.site-footer {
    margin-top: 70px;
    padding: 54px 0 0;
    background: rgba(255, 255, 255, 0.52);
    border-top: 1px solid rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(12px);
}

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

.footer-grid p {
    max-width: 420px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

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

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

.footer-links a {
    color: #4b5563;
}

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

.footer-bottom {
    margin-top: 36px;
    padding: 18px;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid rgba(251, 207, 232, 0.72);
}

.cherry-blossom {
    position: fixed;
    z-index: 1;
    width: 10px;
    height: 10px;
    pointer-events: none;
    opacity: 0.62;
    border-radius: 50% 0;
    background: radial-gradient(circle, #ffb7c5, #ffc0cb);
    animation: fall linear infinite;
}

.cherry-blossom::before {
    position: absolute;
    top: -5px;
    left: 5px;
    width: 10px;
    height: 10px;
    content: "";
    border-radius: 0 50%;
    background: radial-gradient(circle, #ffb7c5, #ffc0cb);
}

.blossom-one {
    left: 8%;
    animation-duration: 18s;
}

.blossom-two {
    left: 48%;
    animation-duration: 22s;
    animation-delay: -8s;
}

.blossom-three {
    left: 86%;
    animation-duration: 20s;
    animation-delay: -13s;
}

@keyframes fall {
    from {
        top: -20px;
        transform: translateX(0) rotate(0deg);
    }

    to {
        top: 110vh;
        transform: translateX(120px) rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 84px 0 96px;
    }

    .hero-poster {
        display: none;
    }

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

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

    .detail-side {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .rank-row {
        grid-template-columns: 48px minmax(0, 1fr) 130px;
    }

    .rank-row small {
        display: none;
    }
}

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

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

    .home-hero,
    .hero-inner {
        min-height: 580px;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 13vw, 58px);
    }

    .hero-line {
        font-size: 17px;
    }

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

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

    .movie-body {
        padding: 13px;
    }

    .movie-body h2 {
        font-size: 16px;
    }

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

    .rank-item {
        grid-template-columns: 44px 92px minmax(0, 1fr);
    }

    .rank-thumb {
        width: 92px;
        height: 62px;
    }

    .filter-card,
    .search-page-filter {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .rank-row em,
    .rank-row small {
        display: none;
    }

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

    .side-poster {
        max-width: 260px;
    }

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

@media (max-width: 480px) {
    .movie-grid,
    .featured-grid,
    .compact-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-actions {
        display: grid;
    }
}
