:root {
    color-scheme: dark;
    --night-950: #0f172a;
    --night-900: #1a1f35;
    --night-800: #3730a3;
    --silver-900: #111827;
    --silver-800: #1e293b;
    --silver-700: #334155;
    --silver-500: #64748b;
    --silver-400: #94a3b8;
    --silver-300: #cbd5e1;
    --silver-200: #e2e8f0;
    --moonlight-600: #4f5fd4;
    --moonlight-500: #6172f3;
    --moonlight-400: #8196f8;
    --moonlight-300: #a7b7ff;
    --white: #ffffff;
    --shadow-glow: 0 20px 60px rgba(97, 114, 243, 0.28);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --max-width: 1280px;
    font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--silver-200);
    background:
        radial-gradient(circle at 20% 8%, rgba(97, 114, 243, 0.24), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 48%, #334155 100%);
}

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

img {
    display: block;
    max-width: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(129, 150, 248, 0.32), transparent 34%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.45);
    background: rgba(26, 31, 53, 0.92);
    backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: "Noto Serif SC", Georgia, serif;
    font-size: 21px;
    font-weight: 800;
    white-space: nowrap;
}

.site-logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--moonlight-500), var(--night-800));
    box-shadow: 0 0 26px rgba(97, 114, 243, 0.45);
    font-size: 13px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.site-nav a,
.mobile-nav a,
.footer-links a {
    color: var(--silver-300);
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
    color: var(--white);
}

.top-search {
    width: 190px;
}

.site-search-input {
    width: 100%;
    border: 1px solid rgba(51, 65, 85, 0.7);
    border-radius: 999px;
    color: var(--white);
    background: rgba(30, 41, 59, 0.58);
    outline: none;
    padding: 10px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search-input::placeholder {
    color: var(--silver-400);
}

.site-search-input:focus {
    border-color: var(--moonlight-500);
    box-shadow: 0 0 0 3px rgba(97, 114, 243, 0.22);
    background: rgba(30, 41, 59, 0.82);
}

.menu-toggle {
    display: none;
    color: var(--white);
    border: 0;
    background: transparent;
    font-size: 26px;
}

.mobile-nav {
    display: none;
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: var(--radius-md);
    background: rgba(30, 41, 59, 0.96);
}

.mobile-nav a {
    display: block;
    padding: 10px 4px;
}

.mobile-nav.is-open {
    display: block;
}

.page-shell {
    min-height: 100vh;
    padding-top: 72px;
}

.inner-page {
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
}

.hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: var(--night-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 31, 53, 0.88), rgba(26, 31, 53, 0.45), #0f172a),
        radial-gradient(circle at 50% 30%, rgba(97, 114, 243, 0.26), transparent 48%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 920px);
    margin: 0 auto;
    text-align: center;
    padding: 42px 20px;
}

.hero-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(129, 150, 248, 0.45);
    border-radius: 50%;
    color: var(--white);
    background: rgba(97, 114, 243, 0.35);
    box-shadow: var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--moonlight-300);
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    color: var(--white);
    font-family: "Noto Serif SC", Georgia, serif;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1;
}

.hero h2 {
    margin: 18px 0 0;
    color: var(--white);
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 760;
}

.hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--silver-200);
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.72;
}

.hero-tags,
.tag-list,
.filter-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.tag-list span,
.filter-chip {
    border: 1px solid rgba(129, 150, 248, 0.28);
    border-radius: 999px;
    color: var(--silver-200);
    background: rgba(97, 114, 243, 0.16);
    padding: 6px 12px;
    font-size: 13px;
}

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

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

.primary-button {
    min-height: 48px;
    padding: 0 26px;
    color: var(--white);
    background: linear-gradient(135deg, var(--moonlight-500), var(--moonlight-600));
    box-shadow: 0 18px 46px rgba(97, 114, 243, 0.32);
}

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

.primary-button:hover {
    box-shadow: 0 22px 56px rgba(97, 114, 243, 0.42);
}

.ghost-button {
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(203, 213, 225, 0.25);
    color: var(--white);
    background: rgba(15, 23, 42, 0.38);
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.36);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.content-section,
.category-overview-block {
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
    padding: 72px 0;
}

.inner-page .content-section,
.inner-page .category-overview-block {
    width: 100%;
}

.soft-section,
.category-overview-block:nth-child(even) {
    position: relative;
}

.soft-section::before {
    content: "";
    position: absolute;
    inset: 0 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.23);
    pointer-events: none;
}

.soft-section > * {
    position: relative;
}

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

.stacked-heading {
    align-items: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--white);
    font-family: "Noto Serif SC", Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 850;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--silver-400);
}

.section-link {
    color: var(--moonlight-300);
    white-space: nowrap;
}

.horizontal-scroll {
    overflow-x: auto;
    padding: 4px 2px 18px;
    scrollbar-color: var(--moonlight-500) rgba(30, 41, 59, 0.6);
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 330px);
    gap: 24px;
    width: max-content;
}

.movie-grid,
.compact-grid,
.wide-grid,
.category-grid,
.masonry-grid {
    display: grid;
    gap: 24px;
}

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

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

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

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

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

.masonry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.movie-card,
.category-card,
.wide-card,
.rank-item,
.article-card {
    border: 1px solid rgba(51, 65, 85, 0.38);
    border-radius: var(--radius-lg);
    background: rgba(30, 41, 59, 0.32);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.movie-card,
.category-card,
.wide-card,
.rank-item {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover,
.category-card:hover,
.wide-card:hover,
.rank-item:hover {
    transform: translateY(-6px);
    border-color: rgba(97, 114, 243, 0.65);
    box-shadow: var(--shadow-glow);
    background: rgba(30, 41, 59, 0.52);
}

.movie-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.55);
}

.movie-card-compact .movie-poster {
    aspect-ratio: 1 / 1;
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 58%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.movie-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 9px;
    background: rgba(0, 0, 0, 0.72);
}

.movie-year {
    right: 12px;
}

.rank-badge {
    left: 12px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.movie-play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(97, 114, 243, 0.82);
    transform: translate(-50%, -50%) scale(0.78);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
    padding: 18px;
}

.movie-info h3,
.wide-card h3 {
    margin: 0;
    color: var(--white);
    font-size: 17px;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.movie-info p,
.wide-card p {
    margin: 10px 0 0;
    color: var(--silver-400);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: var(--silver-400);
    font-size: 13px;
}

.tag-list {
    justify-content: flex-start;
    margin-top: 12px;
}

.movie-card-compact .movie-info {
    padding: 12px;
}

.movie-card-compact .movie-info p,
.movie-card-compact .movie-meta,
.movie-card-compact .tag-list {
    display: none;
}

.category-card {
    min-height: 164px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(97, 114, 243, 0.16), rgba(15, 23, 42, 0.38));
}

.category-card h3,
.category-card h2 {
    margin: 10px 0 8px;
    color: var(--white);
    font-size: 22px;
}

.category-card p {
    margin: 0;
    color: var(--silver-400);
    line-height: 1.65;
}

.category-icon {
    font-size: 34px;
}

.category-card-wide {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}

.category-overview-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.wide-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    padding: 12px;
}

.wide-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.wide-card div {
    min-width: 0;
    padding: 8px 8px 8px 0;
}

.wide-card span {
    display: block;
    margin-top: 12px;
    color: var(--moonlight-300);
    font-size: 13px;
}

.page-hero,
.detail-hero {
    position: relative;
    margin-top: 32px;
    padding: 56px;
    border: 1px solid rgba(51, 65, 85, 0.46);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 18% 20%, rgba(97, 114, 243, 0.22), transparent 36%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.78));
    overflow: hidden;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.page-hero p:not(.eyebrow) {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--silver-300);
    line-height: 1.85;
    font-size: 18px;
}

.large-icon {
    display: block;
    margin-bottom: 18px;
    font-size: 58px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 28px;
    color: var(--silver-400);
}

.breadcrumb a {
    color: var(--moonlight-300);
}

.filter-chips {
    justify-content: flex-start;
    margin-bottom: 28px;
}

.filter-chip {
    color: var(--silver-200);
    border-color: rgba(129, 150, 248, 0.25);
}

.filter-chip.is-active,
.filter-chip:hover {
    color: var(--white);
    background: var(--moonlight-500);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 58px 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
}

.rank-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--moonlight-500), #ef4444);
    font-weight: 900;
}

.rank-item img {
    width: 96px;
    height: 62px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-main {
    min-width: 0;
}

.rank-main strong,
.rank-main em {
    display: block;
}

.rank-main strong {
    color: var(--white);
    font-size: 17px;
}

.rank-main em {
    margin-top: 5px;
    color: var(--silver-400);
    font-style: normal;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-meta {
    color: var(--moonlight-300);
    white-space: nowrap;
}

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

.detail-poster {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

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

.detail-intro h1 {
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.12;
}

.detail-one-line {
    margin: 18px 0 0;
    color: var(--silver-200);
    font-size: 20px;
    line-height: 1.75;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.detail-meta span {
    border-radius: 999px;
    color: var(--silver-200);
    background: rgba(15, 23, 42, 0.5);
    padding: 8px 13px;
}

.full-tags {
    margin: 22px 0 28px;
}

.player-section {
    margin-top: 44px;
}

.player-section h2,
.detail-content h2 {
    color: var(--white);
    font-family: "Noto Serif SC", Georgia, serif;
    font-size: 30px;
}

.player-shell {
    position: relative;
    margin-top: 18px;
    border-radius: var(--radius-xl);
    background: #000000;
    overflow: hidden;
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.main-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    color: var(--white);
    background: #000000;
    padding: 0;
}

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

.player-cover img {
    object-fit: cover;
    opacity: 0.42;
}

.player-cover-shade {
    background:
        radial-gradient(circle at 50% 45%, rgba(97, 114, 243, 0.34), transparent 34%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.82));
}

.play-circle {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin: auto;
    border-radius: 50%;
    color: var(--white);
    background: rgba(97, 114, 243, 0.86);
    box-shadow: var(--shadow-glow);
    font-size: 30px;
}

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

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 34px;
}

.article-card {
    padding: 30px;
}

.article-card p {
    color: var(--silver-300);
    line-height: 1.95;
    font-size: 17px;
}

.related-section {
    padding-top: 52px;
}

.local-search {
    width: min(100%, 360px);
}

.searchable-card.is-hidden {
    display: none;
}

.empty-state {
    display: none;
    margin: 24px 0;
    color: var(--silver-400);
}

.site-footer {
    margin-top: 84px;
    border-top: 1px solid rgba(51, 65, 85, 0.42);
    background: rgba(15, 23, 42, 0.55);
}

.footer-inner {
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 48px 0;
}

.footer-inner p {
    max-width: 560px;
    color: var(--silver-400);
    line-height: 1.75;
}

.footer-inner h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-bottom {
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
    border-top: 1px solid rgba(51, 65, 85, 0.42);
    color: var(--silver-500);
    padding: 22px 0;
    text-align: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 14px;
        font-size: 14px;
    }

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

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

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero {
        height: 610px;
    }

    .content-section,
    .category-overview-block {
        padding: 54px 0;
    }

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

    .section-heading,
    .category-overview-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .detail-poster {
        max-width: 360px;
    }

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

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

    .rank-item img {
        width: 76px;
        height: 54px;
    }

    .rank-meta {
        grid-column: 3;
    }
}

@media (max-width: 620px) {
    .site-header-inner {
        height: 64px;
    }

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

    .site-logo,
    .footer-logo {
        font-size: 18px;
    }

    .hero {
        height: 580px;
    }

    .hero-icon {
        width: 64px;
        height: 64px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

    .movie-grid,
    .all-movie-grid,
    .compact-grid,
    .category-grid,
    .masonry-grid,
    .wide-grid {
        grid-template-columns: 1fr;
    }

    .scroll-row {
        grid-auto-columns: minmax(244px, 84vw);
    }

    .wide-card {
        grid-template-columns: 116px 1fr;
    }

    .wide-card img {
        height: 110px;
    }

    .page-hero,
    .detail-hero {
        padding: 28px 22px;
    }

    .rank-item {
        grid-template-columns: 42px 1fr;
    }

    .rank-item img {
        display: none;
    }

    .rank-meta {
        grid-column: 2;
    }

    .article-card {
        padding: 22px;
    }
}
