body {
    margin: 0;
    min-width: 320px;
    color: #111827;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #dc2626, #db2777);
    box-shadow: 0 14px 26px rgba(220, 38, 38, 0.28);
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    padding: 9px 13px;
    border-radius: 999px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #dc2626;
    background: #fee2e2;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: #fff;
    background: linear-gradient(135deg, #dc2626, #db2777);
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.04));
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100% - 1180px) / 2));
    right: 24px;
    bottom: 72px;
    max-width: 720px;
    color: #fff;
}

.hero-tags,
.detail-meta,
.movie-meta,
.rank-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.hero-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 800;
}

.hero-tags span:first-child {
    background: #dc2626;
}

.hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 16px 50px rgba(0, 0, 0, 0.48);
}

.hero-one {
    margin: 0 0 10px;
    color: #f3f4f6;
    font-size: 20px;
    font-weight: 800;
}

.hero-summary {
    max-width: 680px;
    margin: 0 0 26px;
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.75;
}

.hero-actions,
.section-head,
.compact-head,
.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.primary-btn,
.ghost-btn,
.home-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    padding: 13px 24px;
    color: #fff;
    background: linear-gradient(135deg, #dc2626, #db2777);
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(220, 38, 38, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ghost-btn {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.home-search button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 44px rgba(220, 38, 38, 0.34);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-size: 42px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
    width: 34px;
    background: #fff;
}

.section-shell,
.detail-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0;
}

.intro-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 36px;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ca8a04;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker.red {
    color: #dc2626;
}

.section-kicker.blue {
    color: #2563eb;
}

.section-kicker.orange {
    color: #ea580c;
}

.section-kicker.green {
    color: #059669;
}

.section-head {
    margin-bottom: 24px;
}

.section-head h2,
.intro-band h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.intro-band p,
.page-hero p {
    max-width: 760px;
    margin: 14px 0 0;
    color: #6b7280;
    line-height: 1.8;
}

.text-link {
    color: #dc2626;
    font-weight: 900;
}

.home-search {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.home-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 0 8px;
    color: #111827;
}

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

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

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

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

.movie-card {
    min-width: 0;
}

.movie-link {
    display: block;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #111827, #374151);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.movie-card-wide .poster-wrap {
    aspect-ratio: 16 / 10;
}

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

.movie-link:hover .poster-wrap img {
    filter: brightness(0.72);
    transform: scale(1.08);
}

.year-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    padding: 5px 9px;
    color: #fff;
    background: rgba(220, 38, 38, 0.85);
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.play-mark::before,
.play-circle::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 16px solid #111827;
}

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

.poster-info {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.movie-body {
    padding: 12px 3px 0;
}

.movie-body h3 {
    margin: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.movie-link:hover h3 {
    color: #dc2626;
}

.movie-line {
    margin: 7px 0 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    margin-top: 8px;
    color: #6b7280;
    font-size: 12px;
}

.movie-meta span {
    border-radius: 999px;
    padding: 4px 8px;
    background: #f3f4f6;
}

.panel-white,
.panel-warm,
.panel-gradient,
.panel-green {
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.panel-white {
    background: #fff;
}

.panel-warm {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.panel-gradient {
    background: linear-gradient(135deg, #fff7ed, #fee2e2);
}

.panel-green {
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

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

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

.category-tile {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: 24px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.tile-kicker {
    color: #dc2626;
    font-size: 13px;
    font-weight: 900;
}

.category-tile strong {
    color: #111827;
    font-size: 20px;
    line-height: 1.4;
}

.tile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tile-links a,
.category-pill {
    border-radius: 999px;
    padding: 6px 10px;
    color: #6b7280;
    background: #f3f4f6;
    font-size: 12px;
    font-weight: 800;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 24px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 42px 56px 1fr auto;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.72);
    transition: transform 0.2s ease, background 0.2s ease;
}

.ranking-item:hover {
    background: #fff;
    transform: translateX(4px);
}

.ranking-num {
    color: #dc2626;
    font-size: 18px;
    font-weight: 1000;
}

.ranking-item img {
    width: 56px;
    height: 74px;
    border-radius: 12px;
    object-fit: cover;
}

.ranking-title {
    color: #111827;
    font-weight: 900;
}

.ranking-meta {
    color: #6b7280;
    font-size: 13px;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    border-radius: 34px;
    padding: 56px;
    color: #fff;
    background: linear-gradient(135deg, #111827, #991b1b 55%, #db2777);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.page-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.82);
}

.category-hero {
    background: linear-gradient(135deg, #111827, #dc2626);
}

.search-hero {
    background: linear-gradient(135deg, #111827, #2563eb 58%, #06b6d4);
}

.rank-hero {
    background: linear-gradient(135deg, #111827, #ea580c 60%, #f59e0b);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 800;
}

.detail-shell .breadcrumb {
    color: #6b7280;
}

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

.detail-shell .breadcrumb a:hover {
    color: #dc2626;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 0.3fr));
    gap: 14px;
    margin-bottom: 28px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 24px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.filter-bar label {
    display: grid;
    gap: 7px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 900;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-width: 0;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 13px;
    outline: none;
    color: #111827;
    background: #f9fafb;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #fca5a5;
    background: #fff;
    box-shadow: 0 0 0 4px #fee2e2;
}

.empty-result {
    margin-top: 30px;
    border-radius: 24px;
    padding: 42px;
    text-align: center;
    color: #6b7280;
    background: #fff;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
}

.detail-main,
.detail-side {
    min-width: 0;
}

.player-card,
.detail-card,
.side-card {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.player-card {
    padding: 12px;
    background: #0f172a;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.play-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.play-layer strong {
    font-size: 20px;
}

.detail-card,
.side-card {
    margin-top: 22px;
    padding: 28px;
}

.detail-card h1 {
    margin: 0 0 14px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.detail-meta span,
.rank-tags span {
    border-radius: 999px;
    padding: 6px 10px;
    color: #4b5563;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 800;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.chip,
.primary-chip {
    border-radius: 999px;
    padding: 7px 11px;
    color: #4b5563;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 800;
}

.primary-chip {
    color: #991b1b;
    background: linear-gradient(135deg, #fee2e2, #fbcfe8);
}

.one-line {
    margin: 0 0 24px;
    border-radius: 18px;
    padding: 18px;
    color: #374151;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.75;
}

.content-block {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
    margin-top: 24px;
}

.content-block h2,
.side-card h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 22px;
    font-weight: 1000;
    letter-spacing: -0.03em;
}

.content-block p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.9;
    white-space: pre-line;
}

.review-block {
    border: 0;
    border-radius: 22px;
    padding: 24px;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.detail-side {
    position: relative;
}

.side-card {
    position: sticky;
    top: 90px;
}

.side-category {
    position: static;
}

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

.related-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    padding: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.related-card:hover {
    background: #f9fafb;
    transform: translateX(4px);
}

.related-card img {
    width: 92px;
    height: 62px;
    border-radius: 12px;
    object-fit: cover;
}

.related-card h3 {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.related-card p {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 12px;
}

.category-pill {
    display: inline-flex;
    margin: 4px 6px 4px 0;
}

.rank-shell {
    max-width: 980px;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 142px 1fr;
    gap: 22px;
    align-items: center;
    border-radius: 24px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.rank-cover {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 2 / 3;
}

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

.rank-cover span {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #fff;
    background: #dc2626;
    font-weight: 1000;
}

.rank-copy h2 {
    margin: 0;
    color: #111827;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.rank-copy p {
    margin: 10px 0 16px;
    color: #4b5563;
    line-height: 1.7;
}

.site-footer {
    margin-top: 40px;
    color: #d1d5db;
    background: #111827;
}

.footer-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    align-items: flex-start;
}

.footer-shell p {
    max-width: 520px;
    margin: 12px 0 0;
    color: #9ca3af;
    line-height: 1.8;
}

.footer-brand {
    color: #fff;
    font-size: 22px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 520px;
}

.footer-links a {
    border-radius: 999px;
    padding: 8px 12px;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 800;
}

.footer-links a:hover {
    color: #fff;
    background: rgba(220, 38, 38, 0.9);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0 24px;
    color: #9ca3af;
    font-size: 13px;
}

@media (max-width: 1080px) {
    .grid-six {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .split-layout,
    .detail-grid,
    .intro-band {
        grid-template-columns: 1fr;
    }

    .detail-side .side-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .nav-shell {
        min-height: 62px;
    }

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

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 68px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid #e5e7eb;
        border-radius: 22px;
        padding: 12px;
        background: #fff;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    }

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

    .main-nav a {
        border-radius: 14px;
    }

    .hero {
        min-height: 620px;
        height: 78vh;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 70px;
    }

    .hero-one {
        font-size: 17px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-actions,
    .section-head,
    .footer-shell,
    .home-search {
        align-items: stretch;
        flex-direction: column;
    }

    .section-shell,
    .detail-shell {
        width: min(100% - 24px, 1180px);
        padding: 36px 0;
    }

    .panel-white,
    .panel-warm,
    .panel-gradient,
    .panel-green,
    .detail-card,
    .side-card {
        padding: 20px;
        border-radius: 22px;
    }

    .grid-six,
    .grid-four,
    .grid-two,
    .category-grid,
    .category-grid.large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .page-hero {
        width: min(100% - 24px, 1180px);
        padding: 32px 22px;
        border-radius: 26px;
    }

    .rank-card {
        grid-template-columns: 100px 1fr;
        gap: 14px;
    }

    .rank-copy h2 {
        font-size: 19px;
    }

    .ranking-item {
        grid-template-columns: 38px 48px 1fr;
    }

    .ranking-meta {
        display: none;
    }

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

@media (max-width: 430px) {
    .grid-six,
    .grid-four,
    .grid-two,
    .category-grid,
    .category-grid.large {
        grid-template-columns: 1fr;
    }

    .related-card {
        grid-template-columns: 74px 1fr;
    }

    .related-card img {
        width: 74px;
        height: 54px;
    }
}
