:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --orange-50: #fff7ed;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.08);
    --shadow-md: 0 18px 45px rgba(17, 24, 39, 0.13);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.65;
}

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

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

button, input, select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(12px);
}

.top-strip {
    background: var(--amber-700);
    color: var(--white);
    text-align: center;
    padding: 7px 16px;
    font-size: 14px;
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--amber-700);
    color: var(--white);
    box-shadow: 0 12px 22px rgba(180, 83, 9, 0.26);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    color: var(--amber-800);
    font-size: 24px;
    font-weight: 800;
}

.brand-text small {
    color: var(--gray-500);
    margin-top: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--gray-700);
    font-weight: 650;
}

.main-nav a, .nav-group > button {
    border: 0;
    background: transparent;
    color: inherit;
    padding: 12px 0;
    cursor: pointer;
}

.main-nav a:hover, .nav-group > button:hover {
    color: var(--amber-700);
}

.nav-group {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    display: grid;
    min-width: 190px;
    padding: 10px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.2s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown a {
    padding: 9px 12px;
    border-radius: 10px;
}

.nav-dropdown a:hover {
    background: var(--amber-50);
}

.header-search {
    margin-left: auto;
    display: flex;
    width: 260px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
    background: var(--gray-50);
}

.header-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 10px 14px;
    background: transparent;
}

.header-search button {
    border: 0;
    background: var(--amber-600);
    color: var(--white);
    padding: 0 16px;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    color: var(--gray-700);
    padding: 9px 12px;
}

.hero-slider {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--amber-50), var(--orange-50));
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    align-items: center;
    gap: 44px;
    padding: 66px max(16px, calc((100vw - 1180px) / 2)) 78px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

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

.hero-content {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--amber-800);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.eyebrow.light {
    color: var(--amber-100);
}

.hero-content h1 {
    margin: 0 0 22px;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-lead {
    max-width: 660px;
    color: var(--gray-600);
    font-size: 20px;
    margin: 0 0 26px;
}

.hero-tags, .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span, .tag-list span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.13);
    color: var(--amber-800);
    font-weight: 700;
    font-size: 14px;
}

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

.primary-btn, .ghost-btn, .white-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    padding: 0 24px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    border: 0;
    background: var(--amber-600);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.26);
    cursor: pointer;
}

.primary-btn:hover, .white-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.16);
}

.ghost-btn {
    background: var(--white);
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
}

.white-btn {
    background: var(--white);
    color: var(--amber-700);
}

.hero-poster {
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transform: rotate(2deg);
}

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

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(146, 64, 14, 0.32);
    cursor: pointer;
}

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

.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -44px;
    position: relative;
    z-index: 8;
}

.feature-row article {
    display: grid;
    gap: 6px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.feature-row b {
    color: var(--amber-600);
    font-size: 13px;
    letter-spacing: 0.12em;
}

.feature-row strong {
    font-size: 18px;
}

.feature-row span {
    color: var(--gray-500);
    font-size: 14px;
}

.section {
    padding: 64px 0;
}

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

.section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.16;
}

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

.section-link {
    color: var(--amber-700);
    font-weight: 800;
}

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

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

.category-card {
    position: relative;
    display: block;
    min-height: 260px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.category-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.78));
}

.category-content {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 10px;
    padding: 22px;
    color: var(--white);
}

.category-content strong {
    font-size: 24px;
}

.category-content em {
    color: rgba(255, 255, 255, 0.84);
    font-style: normal;
    font-size: 14px;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.category-samples span {
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
}

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

.slim-grid {
    margin-top: 22px;
}

.movie-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--gray-100);
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.play-hover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0);
    color: var(--white);
    font-size: 42px;
    opacity: 0;
    transition: 0.2s ease;
}

.movie-card:hover .play-hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.28);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--amber-600);
    color: var(--white);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.movie-body {
    display: grid;
    gap: 9px;
    padding: 16px;
}

.movie-body strong {
    font-size: 17px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-body em {
    display: -webkit-box;
    min-height: 44px;
    color: var(--gray-600);
    font-style: normal;
    font-size: 14px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray-500);
    font-size: 14px;
}

.spotlight-section {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--amber-600), #ea580c);
    color: var(--white);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 44px;
    align-items: center;
}

.spotlight-grid h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4.5vw, 50px);
    line-height: 1.15;
}

.spotlight-grid p {
    margin: 0 0 28px;
    color: var(--amber-50);
    font-size: 19px;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    transition: 0.2s ease;
}

.mini-card:hover {
    background: rgba(255, 255, 255, 0.22);
}

.mini-card img {
    width: 84px;
    height: 94px;
    object-fit: cover;
    border-radius: 12px;
}

.mini-card strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-card em {
    color: var(--amber-100);
    font-style: normal;
    font-size: 13px;
}

.page-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

.breadcrumb:not(.light) {
    color: var(--gray-600);
}

.breadcrumb:not(.light) a:hover {
    color: var(--amber-700);
}

.filter-panel {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.search-box {
    position: relative;
    flex: 1 1 260px;
}

.search-box input {
    width: 100%;
    height: 48px;
    padding: 0 46px 0 16px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    outline: 0;
}

.search-box input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.search-box span {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--amber-700);
    font-weight: 800;
}

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

.filter-chip {
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: var(--white);
    color: var(--gray-700);
    padding: 9px 14px;
    cursor: pointer;
}

.filter-chip.active, .filter-chip:hover {
    background: var(--amber-600);
    color: var(--white);
    border-color: var(--amber-600);
}

.js-sort {
    height: 44px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 0 12px;
    background: var(--white);
}

.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-strip a {
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--white);
    color: var(--amber-800);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.rank-list.compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.rank-list.compact a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.rank-list.compact b {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--amber-100);
    color: var(--amber-800);
}

.rank-list.compact span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 800;
}

.rank-list.compact em {
    color: var(--gray-500);
    font-style: normal;
    font-size: 13px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 52px 86px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: 0.2s ease;
}

.ranking-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.ranking-item b {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--amber-600);
    color: var(--white);
}

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

.ranking-item span {
    min-width: 0;
}

.ranking-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.ranking-item em {
    display: -webkit-box;
    color: var(--gray-600);
    font-style: normal;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ranking-item small {
    color: var(--gray-500);
}

.detail-hero {
    position: relative;
    min-height: 360px;
    color: var(--white);
    overflow: hidden;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.08);
}

.detail-hero .container {
    position: relative;
    z-index: 2;
    padding: 58px 0;
}

.detail-heading {
    max-width: 850px;
    margin-top: 44px;
}

.detail-heading h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
}

.detail-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

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

.player-card, .info-card, .article-card {
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.player-card {
    padding: 18px;
}

.video-shell {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #000000;
}

.video-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: rgba(0, 0, 0, 0.34);
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 2;
}

.player-overlay span {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--white);
    color: var(--amber-600);
    font-size: 42px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.25);
}

.player-overlay:hover {
    background: rgba(0, 0, 0, 0.45);
}

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

.play-now {
    width: 100%;
    margin-top: 16px;
}

.info-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
}

.info-card > img {
    width: 160px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 16px;
}

.info-content h2 {
    margin: 14px 0 8px;
    font-size: 26px;
    line-height: 1.2;
}

.info-content p {
    margin: 0 0 16px;
    color: var(--gray-600);
}

.info-content dl {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px 10px;
    margin: 0;
}

.info-content dt {
    color: var(--gray-500);
}

.info-content dd {
    margin: 0;
    font-weight: 800;
}

.article-card {
    padding: 34px;
}

.article-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.article-card p {
    margin: 0 0 28px;
    color: var(--gray-700);
    font-size: 17px;
}

.site-footer {
    margin-top: 36px;
    background: linear-gradient(90deg, var(--gray-900), var(--gray-800));
    color: var(--gray-200);
}

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

.footer-brand {
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
}

.site-footer p {
    color: var(--gray-400);
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
}

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

.footer-links a {
    color: var(--gray-300);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-links a:hover {
    color: var(--amber-100);
    background: rgba(255, 255, 255, 0.12);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 16px;
    color: var(--gray-400);
    text-align: center;
    font-size: 14px;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--amber-600);
    color: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.2s ease;
}

.back-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.is-filtered-out {
    display: none !important;
}

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

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

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

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

@media (max-width: 860px) {
    .nav-shell {
        min-height: 68px;
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

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

    .main-nav {
        order: 5;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        border-radius: 16px;
        background: var(--gray-50);
    }

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

    .nav-group {
        display: none;
    }

    .hero-slider {
        min-height: 720px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 44px;
        padding-bottom: 80px;
    }

    .hero-poster {
        max-width: 280px;
        justify-self: center;
    }

    .feature-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
    }

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

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

@media (max-width: 640px) {
    .top-strip {
        font-size: 12px;
    }

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

    .section {
        padding: 44px 0;
    }

    .section-head {
        display: grid;
    }

    .feature-row,
    .category-grid,
    .category-grid.large,
    .movie-grid,
    .mini-grid,
    .rank-list.compact {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        grid-template-columns: 42px 74px minmax(0, 1fr);
    }

    .ranking-item small {
        grid-column: 3;
    }

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

    .info-card > img {
        width: 100%;
        max-height: 420px;
    }

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