:root {
    --rose: #e11d48;
    --rose-dark: #be123c;
    --orange: #f97316;
    --amber: #f59e0b;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --panel: #ffffff;
    --soft: #fff7ed;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.site-logo__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--orange), var(--amber));
    border-radius: 13px;
    box-shadow: 0 12px 26px rgba(225, 29, 72, 0.28);
}

.site-logo__text {
    font-size: 24px;
    line-height: 1;
    background: linear-gradient(90deg, var(--rose), var(--orange), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    color: #374151;
    font-weight: 650;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--rose);
}

.nav-link.is-active::after {
    position: absolute;
    right: 0;
    bottom: -23px;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--rose), var(--orange));
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    background: #fff1f2;
    border: 0;
    border-radius: 14px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--rose);
    border-radius: 999px;
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #111827;
}

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

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

.hero-bg,
.detail-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 35%, rgba(249, 115, 22, 0.24), transparent 32%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 42px;
    align-items: center;
    height: 100%;
    color: #ffffff;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--rose);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.hero-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.15;
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 22px;
}

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

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    box-shadow: 0 16px 30px rgba(225, 29, 72, 0.28);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(10px);
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    color: var(--rose-dark);
    font-size: 13px;
    font-weight: 700;
    background: #fff1f2;
    border-radius: 999px;
}

.tag-row--light span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.hero-poster {
    position: relative;
    align-self: center;
    overflow: hidden;
    min-height: 350px;
    background: linear-gradient(135deg, #111827, #7f1d1d);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-poster img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 6px 12px;
    color: #ffffff;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.hero-rank-entry {
    position: absolute;
    right: 28px;
    bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 180px;
    padding: 16px 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.hero-rank-entry strong {
    font-size: 18px;
}

.hero-rank-entry span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.hero-dots {
    position: absolute;
    bottom: 48px;
    left: 0;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    border: 0;
    border-radius: 999px;
}

.hero-dot.is-active {
    width: 32px;
    background: linear-gradient(90deg, var(--rose), var(--orange));
}

.quick-search {
    position: relative;
    z-index: 5;
    margin-top: -44px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-search__box,
.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.quick-search input,
.search-form input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    color: var(--ink);
    background: #f9fafb;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: none;
}

.quick-search button,
.search-form button,
.filter-panel button {
    min-height: 48px;
    padding: 0 22px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    border: 0;
    border-radius: 16px;
}

.quick-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.quick-category-row a {
    padding: 8px 13px;
    color: #374151;
    font-weight: 700;
    background: #fff7ed;
    border-radius: 999px;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.quick-category-row a:hover {
    color: var(--rose);
    background: #ffe4e6;
    transform: translateY(-2px);
}

.section-block {
    padding: 72px 0;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

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

.section-more,
.text-link,
.filter-panel__link {
    color: var(--rose);
    font-weight: 800;
}

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

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

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

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--radius);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap,
.rank-thumb,
.detail-poster,
.category-card-large__cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #7f1d1d, #f97316);
}

.poster-wrap::after,
.rank-thumb::after,
.detail-poster::after,
.category-card-large__cover::after,
.hero-poster::after {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    padding: 18px;
    color: #ffffff;
    font-weight: 800;
    text-align: center;
    content: attr(data-fallback);
    background: linear-gradient(135deg, #111827, #881337, #f97316);
}

.poster-wrap.is-missing-image::after,
.rank-thumb.is-missing-image::after,
.detail-poster.is-missing-image::after,
.category-card-large__cover.is-missing-image::after,
.hero-poster.is-missing-image::after {
    display: grid;
}

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

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

.poster-badge,
.poster-score {
    position: absolute;
    z-index: 2;
    padding: 5px 9px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.poster-badge {
    top: 12px;
    left: 12px;
}

.poster-score {
    right: 12px;
    bottom: 12px;
    background: linear-gradient(90deg, var(--rose), var(--orange));
}

.movie-card__body {
    padding: 18px;
}

.movie-card__meta,
.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.movie-card h3 {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.25;
}

.movie-card--compact h3 {
    font-size: 17px;
}

.movie-card h3 a:hover,
.rank-item h3 a:hover {
    color: var(--rose);
}

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

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

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

.category-tile {
    min-height: 140px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile span {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 850;
}

.category-tile small {
    color: var(--muted);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
}

.rank-panel {
    align-self: start;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: 28px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 82px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: 22px;
}

.rank-number {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    border-radius: 50%;
}

.rank-thumb {
    min-height: 110px;
    border-radius: 16px;
}

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

.rank-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.rank-content p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-main {
    min-height: 70vh;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 32%),
        linear-gradient(180deg, #fff7ed 0, #ffffff 280px);
}

.page-hero {
    padding: 72px 0 32px;
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px auto auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 24px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.filter-panel label span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

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

.category-card-large {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: 28px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.category-card-large__cover img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.category-card-large__body {
    padding: 26px;
}

.category-card-large__body h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.category-card-large__body p {
    margin: 0 0 14px;
    color: var(--muted);
}

.category-card-large__body ul {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.category-card-large__body li a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #374151;
}

.category-card-large__body li span {
    color: var(--muted);
}

.detail-main {
    background: #ffffff;
}

.detail-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.24), transparent 30%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.26));
}

.detail-hero__content {
    position: relative;
    z-index: 2;
    padding: 54px 0;
}

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

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

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.detail-poster span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 7px 12px;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    border-radius: 999px;
    font-weight: 800;
}

.detail-info h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 780px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.detail-meta-grid span {
    padding: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.detail-meta-grid b {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
}

.player-card {
    position: relative;
    overflow: hidden;
    background: #000000;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    gap: 12px;
    place-items: center;
    align-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.58), rgba(225, 29, 72, 0.28));
    border: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-overlay__icon {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    padding-left: 5px;
    color: #ffffff;
    font-size: 30px;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(225, 29, 72, 0.38);
}

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

.prose-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: 28px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.prose-card h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.prose-card p {
    margin: 0;
    color: #374151;
}

.search-page {
    padding-top: 28px;
}

.search-form {
    margin-bottom: 18px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.search-summary,
.empty-state {
    margin: 18px 0;
    padding: 18px;
    color: var(--muted);
    background: #f9fafb;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.site-footer {
    margin-top: 42px;
    padding: 54px 0;
    color: #e5e7eb;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
}

.site-logo--footer .site-logo__text {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.footer-desc {
    max-width: 420px;
    color: #9ca3af;
}

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

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

.footer-links a {
    padding: 6px 10px;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

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

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

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

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid rgba(229, 231, 235, 0.9);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-link {
        padding: 16px 18px;
    }

    .nav-link.is-active::after {
        display: none;
    }

    .hero-slider {
        height: 720px;
    }

    .hero-content,
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-poster {
        display: none;
    }

    .hero-rank-entry {
        right: 16px;
        bottom: 18px;
        left: 16px;
    }

    .hero-dots {
        bottom: 104px;
    }

    .quick-search__box,
    .search-form,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .movie-grid,
    .movie-grid--featured,
    .movie-grid--compact,
    .category-grid,
    .category-list-grid,
    .detail-copy,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 520px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .site-logo__text {
        font-size: 20px;
    }

    .hero-slider {
        height: 660px;
    }

    .hero-copy h1,
    .detail-info h1 {
        font-size: 42px;
    }

    .section-heading {
        display: block;
    }

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

    .rank-thumb {
        display: none;
    }

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