/* Site theme reconstructed from the uploaded warm golden movie layout. */
:root {
  --golden-50: #fffbeb;
  --golden-100: #fef3c7;
  --golden-300: #fcd34d;
  --golden-400: #fbbf24;
  --golden-500: #f59e0b;
  --golden-600: #d97706;
  --golden-700: #b45309;
  --golden-800: #92400e;
  --sunshine-50: #fff8e1;
  --sunshine-100: #fff3e0;
  --sunshine-500: #ffa726;
  --text-main: #111827;
  --text-soft: #4b5563;
  --text-muted: #6b7280;
  --surface: #ffffff;
  --line: #e5e7eb;
  --shadow-warm: 0 2px 8px rgba(245, 158, 11, 0.15);
  --shadow-golden: 0 4px 14px rgba(251, 191, 36, 0.39);
  --shadow-golden-lg: 0 8px 24px rgba(251, 191, 36, 0.45);
  --radius: 18px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--golden-50), #ffffff 46%, var(--sunshine-50));
  line-height: 1.6;
}

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

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

img.is-missing {
  min-height: 100%;
  background: linear-gradient(135deg, var(--golden-300), var(--golden-600));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--golden-400), var(--golden-500), var(--golden-600));
  box-shadow: var(--shadow-golden);
}

.header-inner {
  max-width: var(--max-width);
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark,
.footer-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.logo-text {
  font-size: 21px;
  letter-spacing: 0.02em;
}

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

.nav-link {
  color: #ffffff;
  padding: 9px 13px;
  border-radius: 12px;
  font-weight: 650;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  padding: 4px;
  backdrop-filter: blur(8px);
}

.header-search input,
.quick-search-form input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: #ffffff;
  color: var(--text-main);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 15px;
}

.header-search button,
.quick-search-form button,
.search-page-form button {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: var(--golden-700);
  border-radius: 10px;
  padding: 11px 15px;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.quick-search-form button:hover,
.search-page-form button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  font-size: 22px;
}

.mobile-nav {
  display: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 14px;
}

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

.site-main {
  min-height: 70vh;
}

.page-offset {
  padding-top: 68px;
}

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

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

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

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

.hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(17, 24, 39, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px 20px 150px;
  color: #ffffff;
  animation: slideUp 0.65s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff7ed;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(5px);
}

.hero-content h1,
.page-hero h1,
.detail-heading h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p,
.detail-heading p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #ffedd5;
  font-size: clamp(18px, 2.2vw, 25px);
}

.hero-tags,
.card-meta,
.tag-line,
.tag-cloud,
.filter-chips,
.search-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.card-meta span,
.tag-line span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 650;
}

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

.primary-button,
.ghost-button,
.section-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  min-height: 46px;
  padding: 12px 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--golden-400), var(--golden-600));
  box-shadow: var(--shadow-golden-lg);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.primary-button:hover,
.ghost-button:hover,
.section-more a:hover {
  transform: translateY(-2px);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  width: min(420px, calc(100% - 40px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.hero-dot.active {
  width: 32px;
  background: #ffffff;
}

.quick-search-block,
.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 54px 20px;
}

.quick-search-inner,
.search-panel,
.filter-panel,
.detail-content-card,
.related-panel {
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-warm);
}

.quick-search-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 560px);
  gap: 24px;
  align-items: center;
  padding: 28px;
  margin-top: -88px;
  position: relative;
  z-index: 4;
}

.quick-search-inner h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.quick-search-form,
.search-page-form {
  display: flex;
  gap: 10px;
}

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

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.section-heading p {
  margin: 0;
  max-width: 560px;
  color: var(--text-muted);
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--golden-400), var(--golden-600));
  box-shadow: var(--shadow-golden);
  font-weight: 900;
}

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

.category-card,
.category-overview-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-warm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card {
  padding: 22px;
}

.category-card span,
.category-overview-body h2 {
  font-size: 21px;
  font-weight: 850;
}

.category-card strong {
  display: block;
  margin: 10px 0;
  color: var(--golden-600);
  font-size: 36px;
  line-height: 1;
}

.category-card p,
.category-overview-body p,
.card-body p,
.horizontal-info p {
  margin: 0;
  color: var(--text-muted);
}

.category-card:hover,
.category-overview-card:hover,
.movie-card:hover,
.horizontal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-golden);
}

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

.all-grid,
.rank-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-warm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.card-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--golden-300), var(--golden-600));
}

.card-cover img,
.horizontal-cover img,
.detail-poster img,
.category-posters img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.play-dot,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
}

.play-dot {
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
}

.rank-badge {
  top: 10px;
  left: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  background: linear-gradient(135deg, var(--golden-400), var(--golden-700));
  font-size: 12px;
}

.card-body {
  padding: 15px;
}

.card-category {
  display: inline-flex;
  margin-bottom: 9px;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--golden-700);
  background: var(--golden-100);
  font-size: 12px;
  font-weight: 800;
}

.card-body h3 {
  min-height: 48px;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p {
  min-height: 48px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  margin-top: 13px;
}

.card-meta span,
.tag-line span {
  color: var(--text-muted);
  background: #f3f4f6;
}

.tag-line {
  margin-top: 10px;
}

.tag-line span {
  font-size: 12px;
  padding: 4px 8px;
}

.movie-card-compact .card-body h3 {
  min-height: 44px;
  font-size: 16px;
}

.warm-section {
  max-width: calc(var(--max-width) - 40px);
  margin-top: 22px;
  margin-bottom: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.section-more {
  margin-top: 26px;
  text-align: center;
}

.section-more a {
  color: #ffffff;
  background: linear-gradient(135deg, var(--golden-400), var(--golden-600));
}

.horizontal-list {
  display: grid;
  gap: 15px;
}

.horizontal-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-warm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.horizontal-card a {
  display: grid;
  grid-template-columns: 64px 190px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.horizontal-rank strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--golden-400), var(--golden-700));
  box-shadow: var(--shadow-golden);
}

.horizontal-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--golden-300), var(--golden-600));
}

.horizontal-info h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.horizontal-info > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.horizontal-info span {
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--golden-700);
  background: var(--golden-100);
  font-size: 12px;
  font-weight: 700;
}

.filter-panel {
  margin-bottom: 22px;
  padding: 18px;
}

.filter-title {
  margin-bottom: 12px;
  font-weight: 850;
}

.filter-chip,
.search-tips button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--text-main);
  background: #f3f4f6;
  font-weight: 700;
}

.filter-chip.active,
.search-tips button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--golden-400), var(--golden-600));
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--golden-500), var(--golden-700), var(--golden-800));
}

.page-hero > div {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px 20px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 12px;
  color: #fff7ed;
  font-weight: 700;
}

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

.category-posters {
  height: 170px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: linear-gradient(135deg, var(--golden-300), var(--golden-600));
}

.category-overview-body {
  padding: 22px;
}

.category-overview-body span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--golden-700);
  background: var(--golden-100);
  font-weight: 800;
}

.category-overview-body h2 {
  margin: 0 0 8px;
}

.search-panel {
  padding: 22px;
  margin-bottom: 20px;
}

.search-tips {
  margin-top: 14px;
}

.search-status {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-weight: 700;
}

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

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

.detail-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(17, 24, 39, 0.82));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 20px 56px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--golden-300), var(--golden-700));
  box-shadow: var(--shadow-golden-lg);
}

.breadcrumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: #ffedd5;
  font-weight: 700;
}

.player-section {
  padding-top: 32px;
  padding-bottom: 22px;
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: var(--shadow-golden-lg);
  aspect-ratio: 16 / 9;
}

.player-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #ffffff;
  text-align: center;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.64));
  transition: opacity 0.22s ease, pointer-events 0.22s ease;
}

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

.play-button {
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, var(--golden-400), var(--golden-700));
  box-shadow: var(--shadow-golden-lg);
  font-size: 32px;
}

.player-overlay strong {
  display: block;
  font-size: 24px;
}

.player-overlay span {
  display: block;
  color: #ffedd5;
}

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

.detail-content-card,
.related-panel {
  padding: 26px;
}

.detail-title-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.detail-title-row span {
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--golden-700);
  background: var(--golden-100);
  font-weight: 800;
}

.detail-content-card h2,
.related-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-content-card h2:not(:first-child) {
  margin-top: 28px;
}

.detail-content-card p {
  color: #374151;
  font-size: 16px;
}

.lead-text {
  padding-left: 16px;
  border-left: 4px solid var(--golden-400);
  color: var(--text-main) !important;
  font-weight: 700;
}

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

.detail-facts div {
  border-radius: 15px;
  padding: 14px;
  background: #f9fafb;
}

.detail-facts span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
}

.detail-facts strong {
  display: block;
  margin-top: 4px;
}

.tag-cloud span {
  color: var(--golden-700);
  background: var(--golden-100);
}

.related-panel {
  position: sticky;
  top: 90px;
}

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

.related-list .movie-card {
  box-shadow: none;
  border: 1px solid var(--line);
}

.site-footer {
  margin-top: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--golden-800), var(--golden-700), #78350f);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 44px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.footer-grid p,
.footer-links a,
.copyright {
  color: #fde68a;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.copyright {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-size: 14px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .header-search {
    min-width: 220px;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

  .related-panel {
    position: static;
  }
}

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

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

  .hero-content {
    padding-top: 130px;
  }

  .quick-search-inner,
  .footer-grid,
  .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .quick-search-inner {
    margin-top: -62px;
  }

  .quick-search-form,
  .search-page-form {
    flex-direction: column;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .horizontal-card a {
    grid-template-columns: 50px 130px 1fr;
    gap: 12px;
  }

  .detail-poster {
    max-width: 320px;
  }

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

@media (max-width: 620px) {
  .header-inner {
    height: 62px;
  }

  .logo-text {
    font-size: 18px;
  }

  .page-offset {
    padding-top: 62px;
  }

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

  .hero-content {
    padding: 112px 16px 120px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .quick-search-block,
  .content-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .movie-grid,
  .all-grid,
  .rank-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-body h3 {
    min-height: 42px;
    font-size: 15px;
  }

  .card-body p,
  .tag-line {
    display: none;
  }

  .horizontal-card a {
    grid-template-columns: 42px 94px 1fr;
    padding: 10px;
  }

  .horizontal-info h3 {
    font-size: 15px;
  }

  .horizontal-info p {
    display: none;
  }

  .page-hero > div {
    padding: 48px 14px;
  }

  .detail-hero-inner {
    padding: 38px 14px;
  }

  .detail-content-card,
  .related-panel {
    padding: 18px;
  }
}
