:root {
    --coffee-900: #2a1f15;
    --coffee-800: #3d2e1f;
    --coffee-700: #54402a;
    --coffee-600: #6f5536;
    --coffee-500: #8b6f47;
    --coffee-400: #b89968;
    --coffee-300: #d5bd8d;
    --cream-50: #fefdfb;
    --cream-100: #fdf9f3;
    --cream-200: #faf3e6;
    --cream-300: #f5e8d0;
    --ink: #23170f;
    --muted: #735f49;
    --line: rgba(84, 64, 42, 0.14);
    --shadow: 0 18px 45px rgba(42, 31, 21, 0.12);
    --soft-shadow: 0 12px 30px rgba(42, 31, 21, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: var(--cream-50);
}

body.menu-open {
    overflow: hidden;
}

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

img {
    display: block;
    max-width: 100%;
    background: var(--coffee-200, #e8dcc8);
}

button,
input {
    font: inherit;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.93);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(42, 31, 21, 0.05);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--coffee-800);
    font-weight: 800;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--coffee-600), var(--coffee-400));
    box-shadow: var(--soft-shadow);
}

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

.brand-copy strong {
    font-size: 22px;
}

.brand-copy em {
    margin-top: 4px;
    color: var(--coffee-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.nav-link {
    color: var(--coffee-600);
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--coffee-900);
}

.header-search,
.mobile-search,
.page-filter,
.inline-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.page-filter input,
.inline-search input,
.local-filter {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--cream-100);
    color: var(--coffee-900);
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
    width: 240px;
    padding: 11px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.page-filter input:focus,
.inline-search input:focus,
.local-filter:focus {
    border-color: var(--coffee-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.16);
}

.header-search button,
.mobile-search button,
.page-filter button,
.inline-search button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    color: #fff;
    background: var(--coffee-600);
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.page-filter button:hover,
.inline-search button:hover {
    background: var(--coffee-800);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: var(--coffee-800);
    background: var(--cream-200);
    cursor: pointer;
    font-size: 22px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
}

.mobile-panel nav {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 10px;
    display: grid;
    gap: 8px;
}

.mobile-link {
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--coffee-700);
    font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
    background: var(--cream-200);
}

.mobile-search {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-search input {
    flex: 1;
    padding: 12px 14px;
}

main {
    padding-top: 76px;
}

.hero-carousel {
    position: relative;
    height: min(82vh, 780px);
    min-height: 560px;
    overflow: hidden;
    background: var(--coffee-900);
}

.hero-track,
.hero-slide,
.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-shade {
    background:
        radial-gradient(circle at 20% 70%, rgba(184, 153, 104, 0.38), transparent 35%),
        linear-gradient(90deg, rgba(42, 31, 21, 0.95), rgba(42, 31, 21, 0.62) 45%, rgba(42, 31, 21, 0.2)),
        linear-gradient(0deg, rgba(42, 31, 21, 0.8), transparent 45%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 780px;
    color: #fff;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--coffee-800);
    background: rgba(250, 243, 230, 0.95);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 22px 0 16px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 680px;
    margin: 0;
    color: var(--cream-100);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

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

.hero-meta {
    margin-top: 18px;
}

.hero-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--cream-100);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 700;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.tag-row span {
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--coffee-700);
    background: var(--cream-200);
    font-size: 12px;
    font-weight: 700;
}

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

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

.btn-primary {
    color: #fff;
    background: var(--coffee-600);
    box-shadow: var(--soft-shadow);
}

.btn-primary:hover {
    background: var(--coffee-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-glass {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
    font-size: 42px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(12px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 18px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 38px;
    background: #fff;
}

.section {
    padding: 76px 0;
}

.white-section {
    background: #fff;
}

.cream-section {
    background: var(--cream-50);
}

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

.section-head h2,
.page-hero h1,
.detail-head-copy h1,
.detail-article h2,
.detail-info h2,
.category-overview-title h2 {
    margin: 12px 0 8px;
    color: var(--coffee-900);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-head h2,
.page-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
}

.section-head p,
.section-desc,
.page-hero p,
.category-overview-title p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.text-link {
    color: var(--coffee-700);
    font-weight: 800;
    white-space: nowrap;
}

.text-link:hover {
    color: var(--coffee-900);
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(184, 153, 104, 0.46);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--coffee-200, #e8dcc8);
}

.movie-card-large .poster-link {
    aspect-ratio: 4 / 4.5;
}

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

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 58%;
    background: linear-gradient(0deg, rgba(42, 31, 21, 0.78), transparent);
    opacity: 0.92;
}

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    background: rgba(111, 85, 54, 0.88);
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d6b774, var(--coffee-600));
}

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

.movie-card h3 {
    margin: 0 0 8px;
    color: var(--coffee-900);
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-copy h3 a:hover,
.detail-info a:hover {
    color: var(--coffee-600);
}

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

.movie-meta {
    margin: 0 0 12px;
    color: var(--coffee-500);
    font-size: 12px;
    font-weight: 800;
}

.movie-meta span + span::before {
    content: "•";
    margin-right: 10px;
    color: var(--coffee-300);
}

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

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

.category-pill,
.category-tile {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: linear-gradient(135deg, #fff, var(--cream-100));
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-pill:hover,
.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-pill strong,
.category-tile strong {
    color: var(--coffee-900);
    font-size: 18px;
}

.category-pill span,
.category-tile span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: start;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 84px 42px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.rank-cover {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
}

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

.rank-num {
    color: var(--coffee-600);
    font-size: 22px;
    font-weight: 900;
}

.rank-copy h3 {
    margin: 0 0 6px;
    color: var(--coffee-900);
    font-size: 18px;
}

.rank-copy p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.spotlight-card {
    position: sticky;
    top: 100px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--coffee-900);
    color: #fff;
    box-shadow: var(--shadow);
}

.spotlight-card img {
    width: 100%;
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
}

.spotlight-card div {
    padding: 24px;
}

.spotlight-card span {
    color: var(--cream-300);
    font-weight: 800;
}

.spotlight-card h3 {
    margin: 10px 0;
    font-size: 28px;
}

.spotlight-card p {
    color: var(--cream-200);
    line-height: 1.75;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 72px;
    color: var(--coffee-900);
    background:
        radial-gradient(circle at 15% 20%, rgba(184, 153, 104, 0.28), transparent 34%),
        linear-gradient(135deg, var(--cream-100), #fff 45%, var(--cream-200));
}

.small-hero,
.search-hero,
.ranking-hero,
.category-page-hero {
    min-height: 340px;
    display: flex;
    align-items: center;
}

.breadcrumb {
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--coffee-500);
    font-size: 14px;
    font-weight: 700;
}

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

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

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

.local-filter-wrap,
.search-tools {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.local-filter,
.page-filter input,
.inline-search input {
    width: min(100%, 520px);
    padding: 14px 18px;
}

.page-filter {
    margin-top: 26px;
    width: min(100%, 660px);
}

.page-filter input {
    flex: 1;
    background: #fff;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: #fff;
    background: var(--coffee-900);
}

.detail-bg,
.detail-shade {
    position: absolute;
    inset: 0;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.04);
}

.detail-shade {
    background:
        linear-gradient(90deg, rgba(42, 31, 21, 0.96), rgba(42, 31, 21, 0.72) 52%, rgba(42, 31, 21, 0.28)),
        linear-gradient(0deg, rgba(42, 31, 21, 0.86), transparent 55%);
}

.detail-hero-inner {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
    align-items: end;
    padding-top: 60px;
    padding-bottom: 54px;
}

.detail-hero .breadcrumb {
    grid-column: 1 / -1;
    color: var(--cream-300);
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

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

.detail-head-copy h1 {
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
}

.detail-head-copy p {
    max-width: 790px;
    color: var(--cream-100);
    font-size: 19px;
    line-height: 1.8;
}

.player-section {
    padding: 50px 0;
    background: var(--coffee-900);
}

.movie-player {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.movie-player video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(111, 85, 54, 0.92);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    font-size: 34px;
}

.play-overlay strong {
    font-size: 18px;
}

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

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

.detail-article,
.detail-info {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.detail-article {
    padding: 34px;
}

.detail-article h2,
.detail-info h2 {
    font-size: 28px;
}

.detail-article p {
    color: var(--coffee-700);
    font-size: 17px;
    line-height: 1.9;
}

.detail-info {
    position: sticky;
    top: 100px;
    padding: 28px;
}

.detail-info dl {
    margin: 0;
    display: grid;
    gap: 14px;
}

.detail-info div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.detail-info dt {
    color: var(--muted);
    font-weight: 700;
}

.detail-info dd {
    margin: 0;
    color: var(--coffee-900);
    font-weight: 800;
    text-align: right;
}

.wide-rank-list {
    gap: 12px;
}

.site-footer {
    background: var(--coffee-900);
    color: var(--cream-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr;
    gap: 34px;
    padding: 54px 0;
}

.footer-brand {
    margin-bottom: 14px;
    color: #fff;
    font-size: 24px;
}

.site-footer p {
    max-width: 540px;
    color: var(--cream-300);
    line-height: 1.75;
}

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

.site-footer a {
    display: block;
    margin: 8px 0;
    color: var(--cream-300);
}

.site-footer a:hover {
    color: #fff;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
    color: var(--cream-300);
    text-align: center;
    font-size: 14px;
}

.is-filter-hidden {
    display: none !important;
}

@media (max-width: 1180px) {
    .movie-grid,
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .spotlight-card,
    .detail-info {
        position: static;
    }
}

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

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    body.menu-open .mobile-panel {
        display: block;
    }

    .hero-carousel {
        min-height: 620px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 86px;
    }

    .hero-arrow {
        display: none;
    }

    .section-head,
    .category-overview-title,
    .local-filter-wrap,
    .search-tools {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-hero-inner {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .detail-poster {
        width: min(300px, 80%);
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, 1280px);
    }

    .brand-copy em {
        display: none;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    main {
        padding-top: 68px;
    }

    .header-inner {
        height: 68px;
    }

    .hero-carousel {
        min-height: 560px;
        height: calc(100vh - 68px);
    }

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

    .section {
        padding: 54px 0;
    }

    .movie-grid,
    .feature-grid,
    .horizontal-cards,
    .compact-grid,
    .category-pills,
    .category-tile-grid {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .rank-num {
        display: none;
    }

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

    .page-filter,
    .inline-search {
        align-items: stretch;
        flex-direction: column;
    }

    .page-filter input,
    .inline-search input {
        width: 100%;
    }

    .detail-article,
    .detail-info {
        padding: 22px;
    }
}
