:root {
    --amber-950: #451a03;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-100: #f1f5f9;
    --text: #111827;
    --muted: #64748b;
    --card: #ffffff;
    --shadow: 0 24px 70px rgba(69, 26, 3, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc 0%, #fff7ed 48%, #f1f5f9 100%);
    line-height: 1.7;
}

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

img {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #78350f, #f59e0b);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(69, 26, 3, 0.98), rgba(146, 64, 14, 0.96), rgba(69, 26, 3, 0.98));
    box-shadow: 0 18px 40px rgba(69, 26, 3, 0.22);
    backdrop-filter: blur(14px);
}

.site-nav {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff7ed;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: var(--amber-950);
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 0 26px rgba(252, 211, 77, 0.55);
}

.brand-text {
    font-size: 24px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fef3c7, #fde68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    color: #fffbeb;
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #fcd34d;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 251, 235, 0.12);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: #fef3c7;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    border-top: 1px solid rgba(252, 211, 77, 0.16);
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    color: white;
    background: radial-gradient(circle at 18% 18%, rgba(252, 211, 77, 0.28), transparent 30%), linear-gradient(135deg, #451a03 0%, #78350f 48%, #0f172a 100%);
}

.hero-lights span {
    position: absolute;
    border-radius: 999px;
    filter: blur(36px);
    opacity: 0.48;
    animation: pulseLight 4.8s ease-in-out infinite;
}

.hero-lights span:nth-child(1) {
    width: 180px;
    height: 180px;
    left: 7%;
    top: 12%;
    background: #fbbf24;
}

.hero-lights span:nth-child(2) {
    width: 240px;
    height: 240px;
    right: 8%;
    bottom: 18%;
    background: #d97706;
    animation-delay: 1.1s;
}

.hero-lights span:nth-child(3) {
    width: 140px;
    height: 140px;
    left: 42%;
    top: 46%;
    background: #fde68a;
    animation-delay: 2.2s;
}

@keyframes pulseLight {
    0%, 100% {
        transform: scale(0.94);
        opacity: 0.35;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.58;
    }
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 92px;
    background: linear-gradient(0deg, #f8fafc, rgba(248, 250, 252, 0));
}

.hero-slider {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 54px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fde68a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #fff7ed, #fcd34d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    color: #92400e;
    background: #fef3c7;
}

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

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

.primary-btn {
    color: #451a03;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.32);
}

.ghost-btn {
    color: #fffbeb;
    border: 1px solid rgba(254, 243, 199, 0.48);
    background: rgba(255, 251, 235, 0.1);
}

.line-btn {
    color: #92400e;
    border: 1px solid rgba(217, 119, 6, 0.24);
    background: #fffbeb;
}

.primary-btn:hover,
.ghost-btn:hover,
.line-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(120, 53, 15, 0.2);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    min-height: 430px;
    box-shadow: 0 40px 90px rgba(2, 6, 23, 0.36);
    transform: rotate(1deg);
}

.hero-poster img {
    height: 480px;
    object-fit: cover;
}

.poster-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.44), transparent 48%);
}

.hero-controls {
    position: absolute;
    left: 0;
    bottom: 82px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 38px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 251, 235, 0.36);
    cursor: pointer;
}

.hero-dot.active {
    background: #fcd34d;
}

.floating-panel,
.content-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 64px;
}

.floating-panel {
    position: relative;
    z-index: 5;
    margin-top: -62px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.warm-panel {
    width: 100%;
    max-width: none;
    padding: 58px max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(90deg, #fef3c7, #fffbeb);
}

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

.section-heading span,
.category-block-head span {
    color: #d97706;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.section-heading h2,
.category-block-head h2,
.detail-text h2 {
    margin: 6px 0 0;
    color: #111827;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
}

.section-heading a {
    color: #b45309;
    font-weight: 800;
}

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

.featured-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    border-radius: 22px;
    background: #111827;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.featured-card img {
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.featured-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.05));
}

.featured-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    color: white;
}

.featured-meta,
.featured-info em {
    display: block;
    color: #fde68a;
    font-style: normal;
    font-size: 13px;
}

.featured-info strong {
    display: block;
    margin: 8px 0;
    font-size: 22px;
    line-height: 1.25;
}

.featured-info em {
    color: #e5e7eb;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.category-tile {
    position: relative;
    min-height: 180px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    background: #111827;
}

.category-tile img {
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    opacity: 0.74;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.category-tile span {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    color: white;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.8), transparent);
}

.category-tile strong,
.category-tile em {
    display: block;
}

.category-tile em {
    margin-top: 6px;
    color: #e5e7eb;
    font-size: 13px;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-grid,
.compact-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: var(--card);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.poster-link img {
    height: 265px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.compact-card .poster-link img {
    height: 190px;
}

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

.year-badge,
.type-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    color: white;
    font-size: 12px;
    font-weight: 800;
}

.year-badge {
    top: 10px;
    right: 10px;
    background: #f59e0b;
}

.type-badge {
    left: 10px;
    bottom: 10px;
    background: rgba(15, 23, 42, 0.78);
}

.card-body {
    padding: 16px;
}

.card-meta,
.card-genre {
    margin: 0 0 8px;
    color: #d97706;
    font-size: 12px;
    font-weight: 800;
}

.card-title {
    display: -webkit-box;
    min-height: 48px;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title:hover {
    color: #b45309;
}

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

.filter-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 24px;
    padding: 18px;
    border: 1px solid rgba(217, 119, 6, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.search-box,
.select-row label {
    display: grid;
    gap: 8px;
    color: #92400e;
    font-size: 13px;
    font-weight: 900;
}

.search-box {
    flex: 1;
}

.select-row {
    display: flex;
    gap: 12px;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(180, 83, 9, 0.2);
    border-radius: 14px;
    padding: 0 14px;
    color: #111827;
    background: white;
    outline: 0;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.page-hero,
.detail-hero {
    position: relative;
    color: white;
    background: radial-gradient(circle at 15% 20%, rgba(252, 211, 77, 0.24), transparent 32%), linear-gradient(135deg, #451a03, #78350f 55%, #0f172a);
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 56px;
    border-radius: 30px;
    padding: 58px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.small-hero {
    min-height: 260px;
    display: grid;
    align-items: center;
}

.category-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: center;
}

.hero-side-list {
    padding: 22px;
    border: 1px solid rgba(254, 243, 199, 0.24);
    border-radius: 24px;
    background: rgba(255, 251, 235, 0.1);
    backdrop-filter: blur(12px);
}

.hero-side-list strong,
.hero-side-list a,
.hero-side-list span {
    display: block;
}

.hero-side-list strong {
    color: #fde68a;
    margin-bottom: 12px;
}

.hero-side-list a {
    padding: 12px 0;
    border-top: 1px solid rgba(254, 243, 199, 0.14);
    color: #fff7ed;
    font-weight: 800;
}

.hero-side-list span {
    color: #fde68a;
    font-size: 12px;
}

.category-overview {
    display: grid;
    gap: 28px;
}

.category-block {
    padding: 26px;
    border-radius: 26px;
    background: white;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.category-block-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    margin-bottom: 22px;
}

.category-block-head p {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--muted);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.rank-number {
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #451a03;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.18);
}

.rank-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 190px;
}

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

.rank-info {
    padding: 18px;
}

.rank-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #b45309;
    font-size: 12px;
    font-weight: 900;
}

.rank-title {
    display: block;
    margin: 8px 0;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
}

.rank-info p {
    margin: 0 0 12px;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-hero {
    padding: 32px max(16px, calc((100% - 1180px) / 2)) 62px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: #ffedd5;
    font-size: 14px;
}

.breadcrumb a {
    color: #fde68a;
    font-weight: 800;
}

.breadcrumb em {
    font-style: normal;
    color: #fff7ed;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 34px;
    align-items: center;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 36px 88px rgba(2, 6, 23, 0.38);
    aspect-ratio: 16 / 9;
}

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

.watch-video {
    background: #020617;
}

.player-cover {
    z-index: 2;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #020617;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-cover img {
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

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

.play-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 999px;
    color: #451a03;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 0 0 18px rgba(254, 243, 199, 0.16), 0 20px 44px rgba(2, 6, 23, 0.32);
    transform: translate(-50%, -50%);
}

.play-ring span {
    margin-left: 5px;
    font-size: 32px;
}

.detail-info h1 {
    color: #fff7ed;
}

.detail-one-line {
    margin: 0 0 20px;
    color: #ffedd5;
    font-size: 18px;
}

.detail-meta {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    color: #fffbeb;
}

.detail-meta span {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 251, 235, 0.09);
}

.detail-meta a {
    color: #fde68a;
    font-weight: 900;
}

.detail-tags span {
    background: rgba(254, 243, 199, 0.16);
    color: #fde68a;
}

.detail-text {
    padding: 34px;
    border-radius: 26px;
    background: white;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.detail-text p {
    margin: 12px 0 24px;
    color: #334155;
    font-size: 17px;
}

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

.pager-section a {
    padding: 18px;
    border-radius: 18px;
    color: #92400e;
    font-weight: 900;
    background: #fffbeb;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.site-footer {
    color: #fef3c7;
    background: linear-gradient(135deg, #0f172a, #451a03);
}

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

.footer-logo {
    color: #fde68a;
    font-size: 24px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 460px;
    color: #fed7aa;
}

.footer-column {
    display: grid;
    gap: 8px;
    align-content: start;
}

.footer-column h2 {
    margin: 0 0 8px;
    color: #fde68a;
    font-size: 18px;
}

.footer-column a {
    color: #ffedd5;
}

.footer-column a:hover {
    color: #fcd34d;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 24px;
    border-top: 1px solid rgba(254, 243, 199, 0.14);
    color: #fed7aa;
    font-size: 14px;
}

.is-filtered-out {
    display: none !important;
}

@media (max-width: 1024px) {
    .featured-grid,
    .category-grid,
    .movie-grid,
    .compact-grid,
    .mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .hero-poster {
        max-width: 560px;
    }
}

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

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

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

    .hero-section,
    .hero-slider {
        min-height: 760px;
    }

    .hero-slide {
        padding: 54px 0 90px;
        align-content: start;
        gap: 28px;
    }

    .hero-controls {
        bottom: 42px;
    }

    .hero-poster {
        min-height: 280px;
    }

    .hero-poster img {
        height: 330px;
    }

    .floating-panel,
    .content-section,
    .page-hero {
        width: min(100% - 24px, 1180px);
        margin-bottom: 42px;
    }

    .floating-panel,
    .page-hero,
    .detail-text,
    .category-block {
        padding: 22px;
        border-radius: 22px;
    }

    .section-heading,
    .category-block-head,
    .filter-panel {
        display: grid;
        align-items: start;
    }

    .select-row {
        display: grid;
    }

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

    .poster-link img {
        height: 220px;
    }

    .compact-card .poster-link img {
        height: 170px;
    }

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

    .rank-number {
        min-height: 48px;
    }

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

    .detail-hero {
        padding-top: 22px;
    }

    .pager-section,
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

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

    .hero-copy h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 36px;
    }
}
