:root {
    color-scheme: light;
    --bg: #f8fafc;
    --text: #111827;
    --muted: #64748b;
    --line: rgba(148, 163, 184, 0.28);
    --dark: #0f172a;
    --purple: #7c3aed;
    --pink: #db2777;
    --orange: #ea580c;
    --blue: #2563eb;
    --cyan: #0891b2;
    --green: #16a34a;
    --red: #dc2626;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    --soft-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    min-width: 320px;
}

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

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

button,
input,
select {
    font: inherit;
}

main {
    min-height: 70vh;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.88);
    color: #ffffff;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.site-logo {
    font-size: 22px;
    background: linear-gradient(90deg, #d8b4fe, #f9a8d4);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 10px 26px rgba(124, 58, 237, 0.35);
    font-size: 14px;
}

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

.desktop-nav a,
.mobile-nav a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: #ffffff;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.header-search input {
    width: 140px;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 8px 6px 8px 12px;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.header-search button,
.filter-search button,
.hero-button,
.small-button,
.player-action {
    border: 0;
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-search button {
    padding: 8px 14px;
    border-radius: 999px;
}

.header-search button:hover,
.filter-search button:hover,
.hero-button:hover,
.small-button:hover,
.player-action:hover {
    transform: translateY(-2px);
    filter: saturate(1.1);
    box-shadow: 0 18px 34px rgba(124, 58, 237, 0.3);
}

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

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

.mobile-nav {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    gap: 12px;
    flex-wrap: wrap;
}

.hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    background: linear-gradient(135deg, #312e81, #581c87 50%, #831843);
    color: #ffffff;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.65s ease, transform 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 32%, rgba(216, 180, 254, 0.26), transparent 30%), linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.58) 48%, rgba(15, 23, 42, 0.32));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    min-height: 78vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
    gap: 44px;
    align-items: center;
    padding: 64px 0;
}

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

.hero-kicker,
.section-kicker,
.detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 7px 14px;
    background: rgba(124, 58, 237, 0.94);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.hero h1 {
    margin: 18px 0 8px;
    font-size: clamp(36px, 6.4vw, 70px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-title {
    margin: 0 0 18px;
    font-size: clamp(30px, 4.6vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-desc {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

.hero-meta,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-meta span,
.detail-meta span,
.movie-meta span {
    border-radius: 999px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 700;
}

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

.hero-button,
.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.hero-button {
    padding: 14px 24px;
}

.hero-button.secondary {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-panel img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    opacity: 0.92;
}

.hero-panel-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.94));
}

.hero-panel-info strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

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

.hero-dots button {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.hero-dots button.active {
    background: #ffffff;
}

.section {
    padding: 72px 0;
}

.section.alt {
    background: linear-gradient(135deg, #fffbeb, #fff7ed, #fff1f2);
}

.section.cool {
    background: linear-gradient(135deg, #eff6ff, #ecfeff, #f0fdf4);
}

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

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

.section-title h2,
.section-title h1 {
    margin: 14px 0 8px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-title p,
.page-lead {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 820px;
}

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

.movie-grid.dense {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-card[hidden] {
    display: none;
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #1e1b4b, #831843);
}

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

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

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.84));
    transition: opacity 0.25s ease;
}

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

.poster-year,
.rank-badge,
.poster-play {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
}

.poster-year {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    background: rgba(220, 38, 38, 0.92);
    font-size: 12px;
}

.rank-badge {
    top: 12px;
    left: 12px;
    min-width: 34px;
    padding: 6px 9px;
    background: rgba(234, 88, 12, 0.94);
    text-align: center;
    font-size: 13px;
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
    padding: 18px;
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.movie-meta span {
    background: #f1f5f9;
    color: #475569;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 18px;
    border-radius: 22px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.horizontal-card img {
    width: 128px;
    height: 128px;
    border-radius: 16px;
    object-fit: cover;
}

.horizontal-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.horizontal-card p {
    color: var(--muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.category-card {
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-cover {
    min-height: 150px;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

.category-card.theme-orange .category-cover {
    background: linear-gradient(135deg, #ea580c, #f59e0b);
}

.category-card.theme-blue .category-cover {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.category-card.theme-red .category-cover {
    background: linear-gradient(135deg, #b91c1c, #e11d48);
}

.category-card.theme-cyan .category-cover {
    background: linear-gradient(135deg, #0891b2, #0d9488);
}

.category-card.theme-slate .category-cover {
    background: linear-gradient(135deg, #0f172a, #475569);
}

.category-card.theme-pink .category-cover {
    background: linear-gradient(135deg, #db2777, #f472b6);
}

.category-card.theme-green .category-cover {
    background: linear-gradient(135deg, #16a34a, #65a30d);
}

.category-cover h3 {
    margin: 0 0 10px;
    font-size: 25px;
}

.category-cover p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

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

.category-preview img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.category-card-body {
    padding: 20px;
}

.small-button {
    padding: 10px 16px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 62px;
    color: #ffffff;
    background: linear-gradient(135deg, #1e1b4b, #581c87, #831843);
}

.page-hero::before,
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16), transparent 26%), radial-gradient(circle at 80% 18%, rgba(244, 114, 182, 0.2), transparent 24%);
}

.page-hero .container,
.detail-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1,
.detail-hero h1 {
    margin: 14px 0 12px;
    font-size: clamp(36px, 5.5vw, 58px);
    letter-spacing: -0.05em;
}

.page-hero p,
.detail-hero p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    font-size: 18px;
}

.filter-panel {
    margin: -36px auto 42px;
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.filter-search {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.filter-search input,
.filter-grid select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: 0;
    background: #ffffff;
    color: var(--text);
}

.filter-search input {
    padding: 14px 16px;
}

.filter-search button {
    flex: 0 0 auto;
    padding: 0 20px;
    border-radius: 16px;
}

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

.filter-grid label span {
    display: block;
    margin-bottom: 6px;
    color: #475569;
    font-weight: 800;
    font-size: 13px;
}

.filter-grid select {
    padding: 12px 14px;
}

.no-results {
    display: none;
    padding: 36px;
    border-radius: 20px;
    background: #ffffff;
    color: var(--muted);
    text-align: center;
    box-shadow: var(--soft-shadow);
}

.no-results.show {
    display: block;
}

.rank-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: start;
}

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

.media-row {
    display: grid;
    grid-template-columns: auto 74px 1fr;
    gap: 14px;
    align-items: center;
    border-radius: 18px;
    padding: 12px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-row:hover {
    transform: translateX(6px);
    box-shadow: var(--soft-shadow);
}

.media-row img {
    width: 74px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
}

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

.media-row-text strong,
.media-row-text em {
    display: block;
}

.media-row-text strong {
    margin-bottom: 8px;
    font-size: 18px;
}

.media-row-text em {
    color: var(--muted);
    font-style: normal;
    line-height: 1.5;
}

.detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 30px;
    align-items: start;
    padding: 54px 0 72px;
}

.player-card,
.detail-card,
.related-card {
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

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

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.18), rgba(88, 28, 135, 0.32));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-action {
    min-width: 140px;
    height: 54px;
    border-radius: 999px;
    font-size: 18px;
}

.player-title {
    padding: 22px 26px 26px;
}

.player-title h2 {
    margin: 0 0 10px;
    font-size: 27px;
}

.player-title p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.detail-card {
    padding: 26px;
}

.detail-poster {
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #1e1b4b, #831843);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-meta span {
    background: #f1f5f9;
    color: #334155;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag-cloud span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #6d28d9;
    background: #f3e8ff;
    font-weight: 800;
    font-size: 13px;
}

.article-block {
    margin-top: 26px;
    border-top: 1px solid var(--line);
    padding-top: 26px;
}

.article-block h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.article-block p {
    color: #334155;
    line-height: 1.9;
    font-size: 17px;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 46px 0;
}

.footer-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.footer-logo {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 22px;
}

.footer-inner p {
    max-width: 560px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
}

.footer-links a {
    color: #e2e8f0;
    font-weight: 700;
}

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

    .menu-toggle {
        display: block;
    }

    .mobile-nav.open {
        display: flex;
    }

    .header-search {
        margin-left: auto;
    }

    .hero-content,
    .detail-shell,
    .rank-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 380px;
    }

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

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .header-inner {
        min-height: 66px;
        gap: 12px;
    }

    .site-logo span:last-child {
        display: none;
    }

    .header-search {
        flex: 1;
        min-width: 0;
    }

    .header-search input {
        width: 100%;
    }

    .hero,
    .hero-content {
        min-height: 86vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 46px 0 80px;
    }

    .hero-panel {
        display: none;
    }

    .section {
        padding: 52px 0;
    }

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

    .movie-grid,
    .movie-grid.dense,
    .category-grid,
    .horizontal-grid,
    .filter-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .horizontal-card img {
        width: 102px;
        height: 118px;
    }

    .filter-search {
        flex-direction: column;
    }

    .detail-shell {
        padding-top: 36px;
    }
}

@media (max-width: 520px) {
    .header-search button {
        padding: 8px 10px;
    }

    .movie-grid,
    .movie-grid.dense,
    .category-grid,
    .horizontal-grid,
    .filter-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .category-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-row {
        grid-template-columns: auto 64px 1fr;
    }

    .media-row img {
        width: 64px;
        height: 84px;
    }
}
