@charset "UTF-8";

:root {
    --page-bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fffbf5;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #fed7aa;
    --accent: #d97706;
    --accent-strong: #ea580c;
    --accent-soft: #fff1dc;
    --shadow: 0 18px 45px rgba(146, 64, 14, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 36%, #fff7ed 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(251, 146, 60, 0.25);
    box-shadow: 0 12px 30px rgba(146, 64, 14, 0.08);
    backdrop-filter: blur(16px);
}

.header-inner {
    max-width: 1280px;
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28);
}

.brand-text {
    font-size: 23px;
    background: linear-gradient(90deg, #b45309, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.desktop-nav a,
.mobile-nav a {
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--accent-strong);
}

.quick-search {
    width: 300px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(251, 146, 60, 0.38);
    border-radius: 999px;
    background: #fff7ed;
}

.quick-search input,
.hero-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.quick-search input {
    flex: 1;
    padding: 8px 6px 8px 12px;
}

.quick-search button,
.hero-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 9px 15px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    cursor: pointer;
    font-weight: 800;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff7ed;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #92400e;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(251, 146, 60, 0.24);
    background: #ffffff;
}

.mobile-nav.is-open {
    display: grid;
    gap: 14px;
}

.mobile-search {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    background: #fff7ed;
}

.mobile-search input {
    flex: 1;
    padding: 8px;
}

.hero-section {
    padding: 36px 24px 30px;
}

.hero-shell {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: 28px;
    align-items: stretch;
}

.hero-heading {
    min-height: 560px;
    padding: 42px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #ffffff, #ffedd5);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-heading::after,
.page-hero::after,
.detail-hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.32), rgba(251, 146, 60, 0));
    pointer-events: none;
}

.eyebrow,
.hero-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    padding: 7px 13px;
    color: #b45309;
    background: rgba(251, 146, 60, 0.14);
    border: 1px solid rgba(251, 146, 60, 0.28);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.hero-heading h1,
.page-hero h1,
.detail-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.hero-heading p,
.page-hero p,
.detail-one-line {
    margin: 0;
    color: #4b5563;
    font-size: 18px;
}

.hero-search {
    margin-top: 34px;
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.35);
    box-shadow: 0 16px 32px rgba(146, 64, 14, 0.08);
}

.hero-search input {
    flex: 1;
    padding: 13px 16px;
}

.hero-slider {
    min-height: 560px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 30px;
    align-items: center;
    padding: 44px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-copy h2 {
    margin: 18px 0 14px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 20px;
    color: #374151;
    font-size: 18px;
}

.hero-tags,
.detail-meta,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #6b7280;
}

.hero-tags span,
.detail-meta span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(251, 146, 60, 0.26);
    font-size: 13px;
    font-weight: 700;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-btn,
.ghost-btn,
.more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 14px 26px rgba(234, 88, 12, 0.22);
}

.ghost-btn,
.more-link {
    color: #b45309;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(251, 146, 60, 0.32);
}

.primary-btn:hover,
.ghost-btn:hover,
.more-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(146, 64, 14, 0.16);
}

.hero-poster {
    align-self: center;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.28);
    transform: rotate(2deg);
}

.hero-poster img,
.detail-poster img,
.poster-link img,
.mini-card img,
.rank-hero-card img {
    height: 100%;
    object-fit: cover;
    background: #ffedd5;
}

.hero-dots {
    position: absolute;
    left: 42px;
    bottom: 28px;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(146, 64, 14, 0.28);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px;
}

.soft-section {
    max-width: none;
    margin: 20px 0;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    background: linear-gradient(180deg, rgba(255, 237, 213, 0.78), rgba(255, 247, 237, 0.3));
}

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

.section-title h2 {
    margin: 12px 0 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-title p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
}

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 14px 30px rgba(146, 64, 14, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(146, 64, 14, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #ffedd5;
}

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

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

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.88);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.28);
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.movie-card:hover .play-mark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #ea580c);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.22);
}

.card-body {
    padding: 18px;
}

.card-meta {
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
}

.card-meta span {
    color: #92400e;
    background: #fff7ed;
    border-radius: 999px;
    padding: 4px 8px;
}

.card-body h3 {
    margin: 12px 0 8px;
    font-size: 19px;
    line-height: 1.32;
}

.card-body h3 a:hover {
    color: var(--accent-strong);
}

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

.tag-line {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-line span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 800;
}

.compact-card .card-body h3 {
    font-size: 16px;
}

.compact-card .card-body p {
    min-height: 42px;
    font-size: 13px;
}

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

.category-tile,
.category-panel,
.player-card,
.detail-article {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(251, 146, 60, 0.2);
    box-shadow: 0 14px 34px rgba(146, 64, 14, 0.09);
}

.category-tile {
    min-height: 150px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-tile span,
.category-panel-head span {
    color: #92400e;
    font-size: 20px;
    font-weight: 900;
}

.category-tile small,
.category-panel-head small {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
}

.rank-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.rank-list a {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: 0 10px 24px rgba(146, 64, 14, 0.08);
}

.rank-list b {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    border-radius: 999px;
    padding: 7px 0;
    text-align: center;
}

.rank-list span {
    font-weight: 900;
}

.rank-list small {
    color: var(--muted);
}

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

.mini-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: 0 10px 24px rgba(146, 64, 14, 0.08);
}

.mini-card img {
    aspect-ratio: 2 / 3;
}

.mini-card span,
.mini-card small {
    display: block;
    padding: 0 12px;
}

.mini-card span {
    padding-top: 12px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-card small {
    padding-bottom: 12px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    margin: 28px auto 0;
    max-width: 1280px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ffffff, #ffedd5);
    box-shadow: var(--shadow);
}

.page-hero {
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.compact-hero {
    display: block;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #92400e;
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: var(--accent-strong);
}

.breadcrumb em {
    color: var(--muted);
    font-style: normal;
}

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

.category-panel {
    padding: 22px;
}

.category-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

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

.filter-bar {
    margin-bottom: 26px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.22);
    box-shadow: 0 12px 28px rgba(146, 64, 14, 0.08);
}

.filter-bar input,
.filter-bar select {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff7ed;
}

.filter-bar input {
    flex: 1;
}

.filter-bar select {
    color: #92400e;
    cursor: pointer;
}

.empty-result {
    margin: 30px 0 0;
    padding: 26px;
    text-align: center;
    color: var(--muted);
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.2);
}

.rank-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 120px);
    gap: 14px;
}

.rank-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 2 / 3;
    background: #ffedd5;
    box-shadow: 0 14px 30px rgba(146, 64, 14, 0.18);
}

.rank-hero-card b,
.rank-hero-card span {
    position: absolute;
    left: 10px;
    right: 10px;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.rank-hero-card b {
    top: 10px;
}

.rank-hero-card span {
    bottom: 12px;
    font-weight: 900;
}

.rank-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.72));
}

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

.detail-hero-inner {
    padding: 42px 46px 48px;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 2 / 3;
    background: #ffedd5;
    box-shadow: 0 24px 54px rgba(17, 24, 39, 0.2);
}

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

.detail-meta {
    margin: 22px 0;
}

.detail-tags {
    margin-bottom: 28px;
}

.detail-section {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.player-card,
.detail-article {
    padding: 16px;
}

.movie-player {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.movie-player video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    object-fit: contain;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.74));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.overlay-icon {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    font-size: 30px;
}

.detail-article {
    padding: 30px;
}

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

.detail-article p {
    color: #4b5563;
}

.lead-text {
    padding: 18px;
    border-left: 5px solid var(--accent);
    border-radius: 16px;
    background: #fff7ed;
    font-weight: 700;
}

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

.site-footer {
    margin-top: 40px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-top: 1px solid rgba(251, 146, 60, 0.22);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.footer-brand span:last-child {
    font-size: 22px;
    color: #92400e;
}

.site-footer p {
    max-width: 480px;
    color: var(--muted);
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 20px;
}

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

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: #92400e;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.22);
    font-weight: 800;
}

.footer-bottom {
    padding: 18px 24px;
    text-align: center;
    color: #92400e;
    border-top: 1px solid rgba(251, 146, 60, 0.22);
}

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

@media (max-width: 1120px) {
    .quick-search {
        display: none;
    }

    .hero-shell,
    .split-section,
    .detail-section {
        grid-template-columns: 1fr;
    }

    .hero-heading,
    .hero-slider {
        min-height: 480px;
    }

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

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

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

    .nav-toggle {
        display: block;
    }

    .header-inner {
        height: 66px;
        padding: 0 16px;
    }

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

    .hero-section,
    .content-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-heading,
    .hero-slide,
    .page-hero,
    .detail-hero-inner {
        padding: 28px;
    }

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

    .hero-poster {
        display: none;
    }

    .hero-dots {
        left: 28px;
    }

    .section-title,
    .category-panel-head,
    .filter-bar,
    .footer-inner {
        display: grid;
        grid-template-columns: 1fr;
    }

    .movie-grid,
    .related-grid,
    .category-grid,
    .category-panels,
    .mini-grid,
    .tight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rank-list a {
        grid-template-columns: 42px 1fr;
    }

    .rank-list small {
        grid-column: 2;
    }

    .rank-hero-grid {
        grid-template-columns: repeat(3, minmax(82px, 1fr));
    }

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

@media (max-width: 520px) {
    .brand-icon {
        width: 36px;
        height: 36px;
    }

    .brand-text {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-search {
        display: grid;
        border-radius: 22px;
    }

    .hero-search button {
        min-height: 44px;
    }

    .hero-heading,
    .hero-slider {
        min-height: 420px;
    }

    .movie-grid,
    .related-grid,
    .category-grid,
    .category-panels,
    .mini-grid,
    .tight-grid {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .detail-hero {
        margin-left: 12px;
        margin-right: 12px;
    }
}
