:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-500: #ec4899;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --slate-50: #f8fafc;
    --slate-900: #0f172a;
    --text: #1f2937;
    --muted: #64748b;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    --radius-xl: 24px;
    --radius-lg: 18px;
}

* {
    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(--text);
    background: linear-gradient(135deg, var(--slate-50), var(--rose-50) 48%, #fffbeb);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(244, 63, 94, 0.12);
}

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

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--amber-400));
    box-shadow: 0 12px 24px rgba(244, 63, 94, 0.25);
}

.logo-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--rose-600), var(--pink-500), var(--amber-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    padding: 10px 16px;
    border-radius: 14px;
    color: #5b6472;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-600);
    background: var(--rose-100);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.large-search input,
.filter-panel input,
.filter-panel select {
    border: 1px solid rgba(244, 63, 94, 0.22);
    outline: none;
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    transition: all 0.25s ease;
}

.header-search input {
    width: 220px;
    padding: 11px 14px;
    border-radius: 999px;
}

.header-search button,
.mobile-search button,
.hero-search button,
.large-search button {
    border: none;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
    box-shadow: 0 12px 24px rgba(244, 63, 94, 0.25);
}

.header-search button {
    padding: 10px 16px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--rose-600);
    background: var(--rose-100);
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(244, 63, 94, 0.12);
    padding: 14px 22px 20px;
}

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

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

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

.mobile-search button {
    padding: 10px 18px;
}

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

.hero-mosaic {
    position: relative;
    min-height: 76vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-tile {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.05);
    transform: scale(1.01);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.hero-tile:hover img,
.hero-tile.is-active img {
    transform: scale(1.12);
    filter: saturate(1.18) contrast(1.12);
}

.hero-tile span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 18px;
    z-index: 3;
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.hero-tile:hover span,
.hero-tile.is-active span {
    opacity: 1;
    transform: translateY(0);
}

.hero-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02));
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(244, 63, 94, 0.25), transparent 34%),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.56), rgba(248, 250, 252, 1));
}

.hero-content {
    position: relative;
    z-index: 5;
    width: min(920px, calc(100% - 32px));
    text-align: center;
    padding: 78px 18px 96px;
}

.hero-mark {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-size: 30px;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--amber-400));
    box-shadow: 0 0 35px rgba(244, 63, 94, 0.55);
    animation: pulseGlow 2.8s ease-in-out infinite;
}

.hero-content h1 {
    margin: 0 0 22px;
    font-size: clamp(38px, 7vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 900;
    background: linear-gradient(90deg, #fb7185, #f472b6, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
}

.hero-content p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 2.2vw, 21px);
    line-height: 1.8;
    text-shadow: 0 12px 24px rgba(0, 0, 0, 0.55);
}

.hero-search,
.large-search {
    display: flex;
    align-items: center;
    max-width: 680px;
    margin: 0 auto 24px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-search input,
.large-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 15px 18px;
    border-radius: 999px;
}

.hero-search button,
.large-search button {
    border: none;
    padding: 14px 22px;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.primary-btn,
.ghost-btn,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.primary-btn,
.section-more {
    color: #fff;
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
    box-shadow: 0 16px 28px rgba(244, 63, 94, 0.25);
}

.ghost-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(14px);
}

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

.hero-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-links span {
    color: #fecdd3;
    font-weight: 700;
}

.hero-links a {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.soft-section {
    max-width: none;
    padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1280px) / 2 + 22px));
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.82), rgba(255, 247, 237, 0.9));
}

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

.section-head h2,
.related-panel h2,
.detail-card h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 36px);
    color: var(--text);
    line-height: 1.2;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

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

.movie-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: 1px solid rgba(244, 63, 94, 0.08);
}

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

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

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

.movie-card:hover .poster-link img,
.compact-card:hover img,
.rank-row:hover img {
    transform: scale(1.08);
}

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.movie-card:hover .poster-link::after {
    opacity: 1;
}

.duration {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
}

.play-dot {
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 3;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--rose-600);
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: scale(0.82);
    transition: all 0.28s ease;
}

.movie-card:hover .play-dot {
    opacity: 1;
    transform: scale(1);
}

.card-body {
    padding: 18px;
}

.card-body h3,
.compact-card h3,
.rank-row h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
    color: var(--text);
}

.card-body h3 a:hover,
.compact-card:hover h3,
.rank-row:hover h3 {
    color: var(--rose-600);
}

.card-body p,
.compact-card p,
.rank-row p {
    margin: 0 0 13px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.card-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.card-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    color: var(--rose-600);
    background: var(--rose-100);
    font-size: 12px;
}

.meta-row,
.detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #7c8797;
    font-size: 13px;
}

.meta-row span,
.detail-meta span,
.detail-meta a {
    padding: 4px 9px;
    border-radius: 999px;
    background: #f8fafc;
}

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

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

.compact-card {
    display: flex;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-lg);
    background: #fff;
    min-height: 140px;
}

.compact-card img {
    width: 96px;
    min-width: 96px;
    height: 116px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.35s ease;
}

.compact-card div {
    min-width: 0;
}

.compact-card h3,
.compact-card p,
.rank-row h3,
.rank-row p,
.card-body h3,
.card-body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-card h3,
.card-body h3,
.rank-row h3 {
    -webkit-line-clamp: 2;
}

.compact-card p,
.card-body p,
.rank-row p {
    -webkit-line-clamp: 2;
}

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

.category-card,
.category-overview-card {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #fff, #fff7ed);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(244, 63, 94, 0.1);
    transition: all 0.28s ease;
}

.category-card {
    min-height: 190px;
    padding: 24px;
}

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

.category-card span,
.category-main-link span {
    display: block;
    font-size: 36px;
    margin-bottom: 14px;
}

.category-card h3,
.category-main-link h2 {
    margin: 0 0 10px;
    color: var(--text);
}

.category-card p,
.category-main-link p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.sub-hero {
    color: #fff;
    background:
        radial-gradient(circle at 18% 20%, rgba(251, 191, 36, 0.38), transparent 28%),
        linear-gradient(100deg, var(--rose-500), var(--pink-500), var(--amber-500));
    padding: 86px 22px;
}

.sub-hero > div {
    max-width: 1280px;
    margin: 0 auto;
}

.sub-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
}

.sub-hero p {
    max-width: 760px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

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

.category-overview-card {
    overflow: hidden;
}

.category-main-link {
    display: block;
    padding: 26px;
}

.category-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 26px 26px;
}

.category-preview a {
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--rose-600);
    background: var(--rose-100);
    font-size: 13px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px 180px;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--soft-shadow);
}

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

.empty-state {
    display: none;
    margin-top: 28px;
    padding: 36px;
    text-align: center;
    color: var(--muted);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--soft-shadow);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 98px 1fr;
    align-items: center;
    gap: 18px;
    padding: 13px 18px;
    border-radius: var(--radius-lg);
    background: #fff;
}

.rank-num {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--rose-500), var(--amber-400));
}

.rank-row img {
    width: 98px;
    height: 122px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.35s ease;
}

.detail-page {
    background: linear-gradient(135deg, var(--slate-50), var(--rose-50), #fffbeb);
}

.detail-wrap {
    padding-top: 34px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: #7c8797;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--rose-600);
}

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

.player-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000;
    box-shadow: var(--shadow);
}

.video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #000;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: saturate(1.08) contrast(1.06);
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(244, 63, 94, 0.14), rgba(15, 23, 42, 0.62));
}

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

.big-play {
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 4;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    border-radius: 999px;
    color: var(--rose-600);
    font-size: 34px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.detail-card,
.related-panel {
    margin-top: 24px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(244, 63, 94, 0.08);
}

.detail-card h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    color: var(--text);
}

.detail-meta {
    margin-bottom: 16px;
}

.detail-meta a {
    color: var(--rose-600);
    background: var(--rose-100);
}

.lead-text {
    margin: 18px 0 24px;
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    color: #7f1d1d;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rose-50), #fff7ed);
    border: 1px solid var(--rose-100);
}

.detail-card h2 {
    font-size: 24px;
    margin-top: 28px;
}

.detail-card p {
    color: #465164;
    line-height: 1.9;
}

.related-panel {
    position: sticky;
    top: 96px;
    margin-top: 0;
}

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

.related-list .compact-card {
    box-shadow: none;
    border: 1px solid rgba(244, 63, 94, 0.1);
}

.site-footer {
    color: #fff;
    background: linear-gradient(135deg, #0f172a, #4c0519, #0f172a);
    margin-top: 40px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 22px 36px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
    color: #fecdd3;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    font-size: 14px;
}

.site-footer a {
    display: block;
    margin-bottom: 7px;
}

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

.footer-logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-tags {
    word-spacing: 7px;
}

.copyright {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 22px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 35px rgba(244, 63, 94, 0.45);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 52px rgba(244, 63, 94, 0.72);
    }
}

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

    .compact-grid,
    .compact-grid.three-cols,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .related-panel {
        position: static;
    }

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

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

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

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

    .hero-tile:nth-child(n + 4) {
        display: none;
    }

    .hero-content {
        padding: 66px 14px 82px;
    }

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

    .rank-row {
        grid-template-columns: 42px 82px 1fr;
        gap: 12px;
        padding: 12px;
    }

    .rank-row img {
        width: 82px;
        height: 104px;
    }
}

@media (max-width: 640px) {
    .page-section {
        padding: 48px 16px;
    }

    .soft-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-search,
    .large-search {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
    }

    .hero-search input,
    .large-search input,
    .hero-search button,
    .large-search button {
        width: 100%;
    }

    .hero-search input,
    .large-search input {
        border-radius: 18px;
    }

    .movie-grid,
    .compact-grid,
    .compact-grid.three-cols,
    .category-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .section-more {
        margin-top: 14px;
    }

    .compact-card {
        min-height: 128px;
    }

    .compact-card img {
        width: 86px;
        min-width: 86px;
        height: 108px;
    }

    .sub-hero {
        padding: 58px 16px;
    }

    .detail-card,
    .related-panel {
        padding: 20px;
    }
}
