:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
    --cyan: #06b6d4;
    --blue: #2563eb;
    --ink: #1f2937;
    --muted: #64748b;
    --soft: #f8fafc;
    --line: #e5e7eb;
    --shadow: 0 18px 45px rgba(15, 23, 42, .12);
    --shadow-strong: 0 24px 70px rgba(15, 23, 42, .2);
    --radius: 24px;
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(226, 232, 240, .82);
    backdrop-filter: blur(18px);
}

.nav-shell {
    max-width: var(--shell);
    margin: 0 auto;
    min-height: 72px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #111827;
    white-space: nowrap;
}

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

.brand-text {
    font-size: 21px;
    letter-spacing: -.02em;
}

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

.nav-link,
.mobile-link {
    color: #475569;
    font-weight: 700;
    transition: color .2s ease;
}

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

.top-search,
.mobile-search,
.large-search,
.category-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-search input,
.mobile-search input,
.large-search input,
.category-filter input {
    width: 250px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 0 16px;
    outline: none;
    color: #334155;
    background: #fff;
    transition: border .2s ease, box-shadow .2s ease;
}

.top-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.category-filter input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .14);
}

.top-search button,
.mobile-search button,
.large-search button,
.category-filter button {
    border: 0;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 26px rgba(249, 115, 22, .28);
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    background: #f1f5f9;
    color: #0f172a;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 22px 18px;
}

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

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity .7s ease, visibility .7s ease, transform 4s ease;
    transform: scale(1.02);
}

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(0deg, rgba(2, 6, 23, .72), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--shell);
    height: 100%;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .03em;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    box-shadow: 0 10px 30px rgba(6, 182, 212, .22);
}

.hero-content h1 {
    max-width: 760px;
    margin: 24px 0 16px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.hero-content p {
    max-width: 680px;
    margin: 0;
    color: #e5e7eb;
    font-size: 19px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.hero-meta span {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.primary-btn,
.ghost-btn,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-btn {
    min-height: 48px;
    padding: 0 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 16px 36px rgba(249, 115, 22, .36);
}

.primary-btn.small {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

.ghost-btn {
    min-height: 48px;
    padding: 0 22px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
}

.ghost-btn.dark {
    color: var(--ink);
    border-color: #e2e8f0;
    background: #fff;
}

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

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, .58);
    transition: width .2s ease, background .2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--orange);
}

.section-shell,
.page-shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding: 64px 22px 0;
}

.page-shell {
    padding-top: 34px;
}

.intro-search,
.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 42px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .75);
}

.intro-search h2,
.section-title-row h2,
.page-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.14;
    letter-spacing: -.03em;
}

.intro-search p,
.page-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.large-search input {
    width: min(420px, 48vw);
    height: 52px;
}

.large-search button {
    height: 52px;
    padding: 0 26px;
}

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

.section-title-row h2 {
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-link {
    min-height: 42px;
    padding: 0 18px;
    color: var(--orange);
    background: #fff7ed;
}

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

.category-tile {
    position: relative;
    min-height: 210px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 22px;
    color: #fff;
    box-shadow: var(--shadow);
    background: #111827;
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transition: transform .5s ease, opacity .3s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .82));
}

.category-tile span,
.category-tile em {
    position: relative;
    z-index: 2;
}

.category-tile span {
    font-size: 22px;
    font-weight: 900;
}

.category-tile em {
    margin-top: 8px;
    font-style: normal;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.category-tile:hover img {
    transform: scale(1.08);
    opacity: .92;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

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

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

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .68));
    transition: opacity .25s ease;
}

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

.year-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    background: var(--orange);
}

.play-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 999px;
    background: rgba(249, 115, 22, .95);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    opacity: 0;
    transform: translate(-50%, -50%) scale(.75);
    transition: opacity .25s ease, transform .25s ease;
}

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

.card-body {
    padding: 18px;
}

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

.card-body h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.32;
    transition: color .2s ease;
}

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

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

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

.card-meta,
.rank-meta {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-row span {
    padding: 5px 10px;
    border-radius: 999px;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffedd5, #cffafe);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.rank-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.rank-num {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
}

.rank-thumb {
    display: block;
    width: 92px;
    height: 122px;
    overflow: hidden;
    border-radius: 16px;
}

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

.rank-copy h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin: 0 0 22px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

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

.page-hero {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 34px;
    background: radial-gradient(circle at top right, rgba(6, 182, 212, .16), transparent 32%), linear-gradient(135deg, #fff7ed, #ffffff 55%, #ecfeff);
}

.category-hero,
.ranking-hero,
.search-hero {
    overflow: hidden;
    position: relative;
}

.category-hero::after,
.ranking-hero::after,
.search-hero::after,
.soft-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(249, 115, 22, .24), rgba(6, 182, 212, .2));
}

.category-filter,
.large-search.in-page {
    margin-top: 22px;
}

.category-filter input,
.large-search.in-page input {
    width: min(560px, 100%);
}

.empty-state {
    display: none;
    padding: 44px 20px;
    text-align: center;
    color: #64748b;
    font-weight: 800;
}

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

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

.category-overview-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 24px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.category-cover-stack img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
}

.category-overview-copy h2 {
    margin: 12px 0;
    font-size: 28px;
}

.category-overview-copy p {
    margin: 0 0 20px;
    color: var(--muted);
}

.ranking-list {
    display: grid;
    gap: 16px;
}

.search-state {
    margin-top: 18px;
    color: #64748b;
    font-weight: 800;
}

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

.detail-main {
    display: grid;
    gap: 22px;
}

.player-card,
.detail-info-card,
.related-panel {
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.player-card {
    overflow: hidden;
    background: #020617;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    z-index: 1;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(2, 6, 23, .12), rgba(2, 6, 23, .74));
}

.player-overlay span {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    box-shadow: 0 20px 60px rgba(0, 0, 0, .32);
    font-size: 24px;
}

.player-overlay strong {
    font-size: 20px;
}

.player-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
}

.detail-info-card {
    padding: 28px;
}

.detail-headline {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.detail-headline img {
    width: 180px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.detail-headline h1 {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.detail-headline p,
.detail-info-card section p {
    color: var(--muted);
    font-size: 16px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 800;
    font-size: 13px;
}

.detail-info-card section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.detail-info-card h2,
.related-panel h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.detail-tags span {
    font-size: 13px;
}

.related-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
}

.related-list {
    display: grid;
    gap: 14px;
    max-height: 820px;
    overflow: auto;
    padding-right: 4px;
}

.related-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 9px;
    border-radius: 16px;
    transition: background .2s ease, transform .2s ease;
}

.related-card:hover {
    background: linear-gradient(135deg, #fff7ed, #ecfeff);
    transform: translateX(3px);
}

.related-thumb {
    position: relative;
    display: block;
    width: 116px;
    height: 76px;
    overflow: hidden;
    border-radius: 14px;
    background: #111827;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-thumb span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, .34);
    opacity: 0;
    transition: opacity .2s ease;
}

.related-card:hover .related-thumb span {
    opacity: 1;
}

.related-copy strong,
.related-copy em {
    display: block;
}

.related-copy strong {
    color: #1f2937;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-copy em {
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    font-style: normal;
}

.site-footer {
    margin-top: 80px;
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a, #111827 54%, #020617);
}

.footer-shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding: 54px 22px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-logo .brand-text {
    color: #fff;
}

.footer-brand p {
    max-width: 360px;
    color: #94a3b8;
}

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

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

.site-footer a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, .16);
    padding: 20px 22px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

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

    .nav-shell {
        justify-content: space-between;
    }

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

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

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

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

    .related-panel {
        position: static;
    }

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

@media (max-width: 760px) {
    .hero-carousel {
        height: 560px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .intro-search,
    .page-hero {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .large-search,
    .category-filter,
    .mobile-search {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .large-search input,
    .category-filter input,
    .mobile-search input {
        width: 100%;
    }

    .large-search button,
    .category-filter button,
    .mobile-search button {
        width: 100%;
    }

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

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

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

    .rank-num {
        width: 40px;
        height: 40px;
    }

    .rank-thumb {
        width: 78px;
        height: 104px;
    }

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

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

    .detail-headline img {
        width: 150px;
    }

    .footer-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-shell,
    .mobile-menu,
    .hero-content,
    .section-shell,
    .page-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .hero-content h1 {
        font-size: 36px;
    }

    .category-grid,
    .movie-grid,
    .compact-grid,
    .category-movie-grid,
    .search-grid,
    .rank-grid {
        grid-template-columns: 1fr;
    }

    .category-tile {
        min-height: 180px;
    }

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

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

    .related-thumb {
        width: 100px;
        height: 68px;
    }
}
