:root {
  --red-900: #7f1d1d;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-100: #fee2e2;
  --red-50: #fef2f2;
  --gray-950: #111827;
  --gray-900: #1f2937;
  --gray-800: #374151;
  --gray-700: #4b5563;
  --gray-600: #6b7280;
  --gray-500: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #311111, #9b1c1c);
}
button,
input {
  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.96);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gray-950);
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--red-900));
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.28);
  font-size: 14px;
}
.brand-text {
  white-space: nowrap;
  font-size: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 4px;
  color: var(--gray-700);
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--red-600);
}
.nav-dropdown {
  position: relative;
}
.dropdown-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 180px;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--gray-700);
}
.dropdown-menu a:hover {
  color: var(--red-700);
  background: var(--red-50);
}
.header-search {
  display: flex;
  align-items: center;
  width: 285px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}
.header-search input {
  min-width: 0;
  flex: 1;
  height: 40px;
  padding: 0 14px;
  border: 0;
  outline: 0;
}
.header-search button {
  height: 40px;
  padding: 0 16px;
  border: 0;
  color: var(--white);
  background: var(--red-600);
  cursor: pointer;
}
.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: var(--red-50);
  cursor: pointer;
}
.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--red-700);
  border-radius: 10px;
}
.hero-section {
  color: var(--white);
  background: radial-gradient(circle at 18% 15%, rgba(248, 113, 113, 0.55), transparent 28%), linear-gradient(120deg, var(--red-900), var(--red-700));
  padding: 74px 0;
}
.hero-container {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 42px;
  align-items: center;
}
.hero-heading h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.hero-heading p {
  max-width: 520px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.75;
}
.hero-actions,
.section-title-row,
.detail-meta,
.filter-chips,
.card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.primary-button,
.ghost-button,
.play-button,
.search-page-form button,
.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.primary-button,
.play-button,
.search-page-form button,
.panel-link {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.28);
}
.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}
.primary-button:hover,
.ghost-button:hover,
.play-button:hover,
.search-page-form button:hover,
.panel-link:hover {
  transform: translateY(-2px);
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 162px;
  gap: 16px;
}
.hero-card {
  position: relative;
  min-height: 162px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.hero-main {
  grid-column: span 3;
  grid-row: span 2;
}
.hero-card:not(.hero-main) {
  grid-column: span 2;
}
.hero-card img,
.movie-card img,
.wide-card img,
.compact-card img,
.ranking-row img,
.ranking-lead img,
.category-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.hero-card:hover img,
.movie-card:hover img,
.wide-card:hover img,
.compact-card:hover img,
.ranking-row:hover img,
.ranking-lead:hover img,
.category-cover:hover img {
  transform: scale(1.08);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 65%);
}
.hero-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}
.hero-copy strong,
.hero-copy em {
  display: block;
}
.hero-copy strong {
  margin-bottom: 6px;
  font-size: 18px;
}
.hero-copy em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}
.section {
  padding: 58px 0;
}
.section-white {
  background: var(--white);
}
.section-soft {
  background: var(--gray-50);
}
.section-title-row {
  justify-content: space-between;
  margin-bottom: 26px;
}
.section-title-row h2,
.two-column-layout h2,
.ranking-panel h2,
.section-timeline h2,
.sidebar-card h2,
.detail-content h2 {
  margin: 0;
  color: var(--gray-950);
}
.section-title-row a,
.panel-link {
  color: var(--red-600);
  font-weight: 800;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.category-tile {
  display: block;
  min-height: 150px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.category-tile span,
.category-tile em {
  display: block;
}
.category-tile span {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}
.category-tile em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.65;
}
.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.movie-card,
.wide-card,
.category-overview-card,
.sidebar-card,
.player-card,
.detail-content,
.ranking-panel,
.ranking-lead,
.ranking-table,
.filter-panel {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.movie-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-image {
  position: relative;
  display: block;
  height: 216px;
  overflow: hidden;
}
.card-image span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(220, 38, 38, 0.92);
  font-size: 12px;
  font-weight: 800;
}
.card-body {
  padding: 16px;
}
.card-body h3 {
  min-height: 48px;
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.45;
}
.card-body h3 a:hover {
  color: var(--red-600);
}
.card-body p {
  min-height: 45px;
  margin: 0 0 16px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}
.card-meta {
  justify-content: space-between;
  color: var(--gray-500);
  font-size: 13px;
}
.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 275px;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
}
.compact-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
.compact-card .small-thumb,
.compact-card img {
  width: 112px;
  height: 76px;
  border-radius: 12px;
}
.compact-card strong,
.compact-card em {
  display: block;
}
.compact-card strong {
  margin-bottom: 6px;
  line-height: 1.42;
}
.compact-card em {
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 30px;
}
.wide-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.wide-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
}
.wide-card img {
  height: 182px;
}
.wide-card span {
  padding: 22px;
}
.wide-card strong,
.wide-card em,
.wide-card small {
  display: block;
}
.wide-card strong {
  margin-bottom: 8px;
  font-size: 20px;
}
.wide-card em {
  margin-bottom: 12px;
  color: var(--red-600);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}
.wide-card small {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}
.ranking-panel {
  align-self: start;
  padding: 22px;
  position: sticky;
  top: 92px;
}
.rank-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.rank-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: var(--gray-50);
}
.rank-item b {
  color: var(--red-600);
}
.rank-item span {
  font-weight: 700;
}
.rank-item em {
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}
.section-timeline {
  background: linear-gradient(180deg, var(--red-50), var(--white));
}
.timeline-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.timeline-list li a {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-left: 4px solid var(--red-600);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.timeline-list img {
  height: 112px;
  border-radius: 14px;
  object-fit: cover;
}
.timeline-list em,
.timeline-list strong,
.timeline-list small {
  display: block;
}
.timeline-list em {
  margin-bottom: 6px;
  color: var(--red-600);
  font-style: normal;
}
.timeline-list strong {
  margin-bottom: 6px;
  font-size: 20px;
}
.timeline-list small {
  color: var(--gray-600);
  line-height: 1.65;
}
.page-hero {
  padding: 48px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--red-900), var(--red-700));
}
.page-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
}
.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  opacity: 0.55;
}
.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.category-overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
}
.category-cover {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}
.category-cover span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(185, 28, 28, 0.9);
  font-weight: 800;
}
.category-overview-card > div {
  padding: 22px;
}
.category-overview-card h2 {
  margin: 0 0 8px;
}
.category-overview-card p {
  color: var(--gray-600);
  line-height: 1.68;
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inline-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--red-700);
  background: var(--red-50);
  font-size: 13px;
  font-weight: 700;
}
.filter-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
}
.filter-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  outline: 0;
}
.filter-input:focus,
.search-page-form input:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}
.filter-chips button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
}
.filter-chips button.active,
.filter-chips button:hover {
  color: var(--white);
  border-color: var(--red-600);
  background: var(--red-600);
}
.detail-breadcrumb {
  margin-bottom: 18px;
  color: var(--gray-600);
}
.detail-breadcrumb a::after {
  color: var(--gray-500);
}
.detail-breadcrumb a:hover {
  color: var(--red-600);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
}
.detail-main {
  display: grid;
  gap: 22px;
}
.player-card {
  overflow: hidden;
}
.player-frame {
  position: relative;
  background: var(--gray-950);
  aspect-ratio: 16 / 9;
}
.movie-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}
.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.78));
  cursor: pointer;
}
.player-cover.is-hidden {
  display: none;
}
.play-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  font-size: 28px;
}
.player-cover strong {
  font-size: 22px;
}
.player-cover em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}
.play-button {
  margin: 18px;
  border: 0;
  cursor: pointer;
}
.detail-content {
  padding: 28px;
}
.detail-content h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}
.detail-meta {
  margin-bottom: 24px;
}
.detail-meta span,
.detail-meta a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 700;
}
.detail-meta a {
  color: var(--red-700);
  background: var(--red-50);
}
.detail-content section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.detail-content p {
  color: var(--gray-700);
  line-height: 1.9;
  font-size: 16px;
}
.lead-text {
  font-weight: 700;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
dl {
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  background: var(--gray-50);
}
dt {
  color: var(--gray-500);
  font-size: 13px;
}
dd {
  margin: 6px 0 0;
  font-weight: 800;
}
.review-box {
  padding: 20px;
  border-left: 4px solid var(--red-600);
  border-radius: 14px;
  background: var(--red-50);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.tag-list a,
.tag-list span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 14px;
  font-weight: 700;
}
.tag-list a:hover {
  color: var(--white);
  background: var(--red-600);
}
.detail-sidebar {
  min-width: 0;
}
.sidebar-card {
  position: sticky;
  top: 92px;
  padding: 22px;
}
.compact-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.ranking-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
}
.ranking-lead {
  align-self: start;
  overflow: hidden;
}
.ranking-lead img {
  height: 300px;
}
.ranking-lead span {
  display: block;
  padding: 24px;
}
.ranking-lead em,
.ranking-lead strong,
.ranking-lead small,
.ranking-lead i {
  display: block;
}
.ranking-lead em {
  color: var(--red-600);
  font-style: normal;
  font-weight: 900;
}
.ranking-lead strong {
  margin: 8px 0;
  font-size: 28px;
  line-height: 1.18;
}
.ranking-lead small {
  color: var(--gray-600);
  line-height: 1.75;
}
.ranking-lead i {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  font-style: normal;
}
.ranking-lead i span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--red-700);
  background: var(--red-50);
  font-size: 12px;
  font-weight: 800;
}
.ranking-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
}
.ranking-row {
  display: grid;
  grid-template-columns: 58px 86px 1fr 90px;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
}
.ranking-row:hover {
  background: var(--red-50);
}
.ranking-row b {
  color: var(--red-600);
  font-size: 18px;
}
.ranking-row img {
  width: 86px;
  height: 58px;
  border-radius: 10px;
}
.ranking-row strong,
.ranking-row em {
  display: block;
}
.ranking-row em,
.ranking-row small {
  color: var(--gray-500);
  font-style: normal;
  font-size: 13px;
}
.search-page-form {
  display: flex;
  max-width: 760px;
  margin-top: 26px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
}
.search-page-form input {
  min-width: 0;
  flex: 1;
  height: 56px;
  padding: 0 22px;
  border: 0;
  outline: 0;
}
.search-page-form button {
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.empty-state {
  grid-column: 1 / -1;
  padding: 36px;
  text-align: center;
  border-radius: var(--radius);
  color: var(--gray-600);
  background: var(--gray-50);
}
.site-footer {
  color: var(--gray-300);
  background: var(--gray-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0;
}
.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
}
.site-footer p {
  color: var(--gray-300);
  line-height: 1.7;
}
.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 18px;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li + li {
  margin-top: 8px;
}
.site-footer a:hover {
  color: #fca5a5;
}
.footer-bottom {
  padding: 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-500);
}
@media (max-width: 1024px) {
  .header-search {
    display: none;
  }
  .hero-container,
  .two-column-layout,
  .detail-layout,
  .ranking-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-main,
  .hero-card:not(.hero-main) {
    grid-column: span 1;
  }
  .movie-grid,
  .category-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ranking-panel,
  .sidebar-card {
    position: static;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .header-inner {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }
  .mobile-menu-button {
    display: block;
  }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    order: 3;
  }
  .main-nav.is-open {
    display: flex;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 4px 0 0 14px;
  }
  .hero-section,
  .section,
  .page-hero {
    padding: 36px 0;
  }
  .hero-grid,
  .movie-grid,
  .category-grid,
  .category-overview-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-auto-rows: 230px;
  }
  .category-overview-card,
  .wide-card,
  .timeline-list li a {
    grid-template-columns: 1fr;
  }
  .wide-card img,
  .category-cover,
  .ranking-lead img {
    height: 220px;
  }
  .ranking-row {
    grid-template-columns: 42px 74px 1fr;
  }
  .ranking-row small {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .search-page-form {
    border-radius: 18px;
    flex-direction: column;
  }
  .search-page-form button {
    width: 100%;
  }
}
