:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: rgba(30, 41, 59, 0.58);
  --panel-strong: rgba(15, 23, 42, 0.88);
  --line: rgba(148, 163, 184, 0.22);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --amber: #f59e0b;
  --amber-deep: #d97706;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 32rem),
    radial-gradient(circle at 80% 12%, rgba(14, 165, 233, 0.10), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), #f97316);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.34);
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-nav-link {
  color: #cbd5e1;
  border-radius: 999px;
  transition: 0.24s ease;
}

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

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fff;
  background: rgba(245, 158, 11, 0.16);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  padding: 12px 14px;
}

.hero-carousel {
  position: relative;
  min-height: 70vh;
  height: 700px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 1.4s ease;
  pointer-events: none;
}

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

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 92px;
  max-width: 760px;
}

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

.hero-kicker span,
.hero-tags span,
.detail-tags span {
  padding: 6px 12px;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
  font-size: 14px;
}

.hero-kicker em {
  color: #cbd5e1;
  font-style: normal;
  font-size: 14px;
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
}

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

.hero-content p {
  max-width: 720px;
  margin: 0 0 30px;
  color: #cbd5e1;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

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

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

.primary-btn {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #fff;
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.28);
}

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

.ghost-btn {
  border: 1px solid rgba(203, 213, 225, 0.24);
  background: rgba(15, 23, 42, 0.48);
  color: #f8fafc;
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

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

.hero-dot {
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.62);
  transition: 0.24s ease;
}

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

.content-section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.section-heading span {
  flex: 1;
  height: 2px;
  min-width: 80px;
  margin-bottom: 13px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.55), transparent);
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.48);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 28px 72px rgba(245, 158, 11, 0.14);
}

.movie-card-link {
  display: block;
  height: 100%;
}

.movie-poster,
.rail-cover,
.detail-poster,
.player-card {
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(30, 41, 59, 0.2)),
    #1e293b;
}

.movie-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.movie-poster img,
.rail-cover img,
.detail-poster img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.24s ease;
}

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

.movie-poster img.is-missing,
.rail-cover img.is-missing,
.detail-poster img.is-missing {
  opacity: 0;
}

.movie-poster::after,
.rail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.84));
  opacity: 0;
  transition: opacity 0.28s ease;
}

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

.movie-type,
.movie-year {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.movie-type {
  left: 12px;
  background: rgba(245, 158, 11, 0.92);
  color: #fff;
}

.movie-year {
  right: 12px;
  background: rgba(15, 23, 42, 0.78);
  color: #e2e8f0;
}

.movie-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: var(--amber);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: 0.28s ease;
}

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

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

.movie-card-body h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.movie-meta {
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 12px;
}

.movie-card.wide {
  display: block;
}

.movie-card.wide .movie-card-link {
  display: grid;
  grid-template-columns: 150px 1fr;
}

.movie-card.wide .movie-poster {
  aspect-ratio: auto;
  min-height: 180px;
}

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

.ranking-entry {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.ranking-copy,
.ranking-list-mini,
.category-tile,
.category-overview-card,
.filter-panel,
.detail-article,
.detail-side,
.ranking-item,
.rail-section {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.44);
  box-shadow: var(--shadow);
}

.ranking-copy {
  padding: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.24), transparent 20rem),
    rgba(30, 41, 59, 0.5);
}

.ranking-copy span {
  color: var(--amber);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.ranking-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.ranking-copy p {
  margin: 0 0 26px;
  color: #cbd5e1;
  line-height: 1.8;
}

.ranking-list-mini {
  padding: 18px;
}

.ranking-list-mini a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.ranking-list-mini a:last-child {
  border-bottom: 0;
}

.ranking-list-mini span,
.rank-num {
  color: var(--amber);
  font-weight: 900;
  font-size: 20px;
}

.ranking-list-mini strong {
  color: #f8fafc;
}

.ranking-list-mini em {
  color: var(--muted);
  font-style: normal;
}

.rail-section {
  padding: 22px;
  margin-bottom: 26px;
}

.rail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rail-heading h3 {
  margin: 0;
  color: #fbbf24;
  font-size: 24px;
}

.rail-heading button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(203, 213, 225, 0.18);
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-size: 24px;
}

.movie-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
  display: none;
}

.rail-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
}

.rail-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
}

.rail-cover span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 34px;
  opacity: 0;
  transition: 0.24s ease;
}

.rail-card:hover .rail-cover span {
  opacity: 1;
}

.rail-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rail-card em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--amber), transparent);
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  margin-bottom: 34px;
}

.timeline-year {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 4px solid var(--amber);
  border-radius: 999px;
  background: #111827;
  color: #fbbf24;
  font-weight: 900;
}

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

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

.category-tile,
.category-overview-card a {
  display: block;
  padding: 24px;
}

.category-tile strong,
.category-overview-card h2 {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 26px;
}

.category-tile p,
.category-overview-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.category-mini,
.category-overview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-mini span,
.category-overview-list span {
  max-width: 180px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: #cbd5e1;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(245, 158, 11, 0.22), transparent 28rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 1));
}

.small-hero .container {
  padding: 82px 0 58px;
}

.page-hero span {
  color: var(--amber);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.06;
  font-weight: 900;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  color: #cbd5e1;
}

.breadcrumb a {
  color: #fbbf24;
}

.breadcrumb em {
  color: var(--muted-2);
  font-style: normal;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
  padding: 18px;
  margin-bottom: 26px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(245, 158, 11, 0.72);
}

.filter-empty {
  display: none;
  padding: 34px;
  text-align: center;
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.44);
}

.filter-empty.is-visible {
  display: block;
}

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

.ranking-item a {
  display: grid;
  grid-template-columns: 76px 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

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

.ranking-item h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.ranking-item p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}

.ranking-item em {
  color: var(--muted-2);
  font-style: normal;
}

.detail-hero {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
  align-items: end;
  padding: 86px 0 64px;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.detail-info h1 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 900;
}

.detail-info p {
  max-width: 820px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: #e2e8f0;
}

.detail-tags {
  margin: 22px 0 24px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-card video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  gap: 12px;
  align-content: center;
  border: 0;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), rgba(15, 23, 42, 0.64));
  color: #fff;
}

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

.big-play {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  box-shadow: 0 22px 60px rgba(245, 158, 11, 0.32);
  font-size: 34px;
}

.player-cover strong {
  font-size: 20px;
}

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

.detail-article,
.detail-side {
  padding: 28px;
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 16px;
  color: #fbbf24;
  font-size: 26px;
}

.detail-article p {
  margin: 0 0 28px;
  color: #cbd5e1;
  line-height: 1.92;
  font-size: 17px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 16px;
  margin: 0;
}

.detail-side dt {
  color: var(--muted-2);
}

.detail-side dd {
  margin: 0;
  color: #e2e8f0;
}

.site-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.44);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.66);
  color: #cbd5e1;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 30px;
  color: var(--muted-2);
  font-size: 14px;
}

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

  .detail-hero-inner {
    grid-template-columns: 240px 1fr;
  }
}

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

  .menu-toggle {
    display: flex;
  }

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

  .hero-content {
    padding-bottom: 84px;
  }

  .hero-arrow {
    display: none;
  }

  .movie-grid,
  .featured-grid,
  .timeline-cards,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-entry,
  .detail-body,
  .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: min(260px, 70vw);
  }

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner,
  .footer-inner,
  .footer-bottom,
  .hero-content {
    width: min(100% - 24px, 1180px);
  }

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

  .movie-grid,
  .featured-grid,
  .timeline-cards,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.wide .movie-card-link {
    grid-template-columns: 120px 1fr;
  }

  .movie-card.wide .movie-poster {
    min-height: 160px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
  }

  .timeline::before,
  .timeline-year {
    display: none;
  }

  .ranking-item a {
    grid-template-columns: 52px 92px 1fr;
    gap: 12px;
  }

  .ranking-item img {
    height: 68px;
  }

  .detail-article,
  .detail-side,
  .ranking-copy {
    padding: 22px;
  }
}
