:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --red: #dc2626;
  --pink: #db2777;
  --blue: #2563eb;
  --green: #16a34a;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.82);
  backdrop-filter: blur(18px);
}

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

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

.brand-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  color: #ffffff;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
}

.brand-text {
  font-size: 24px;
  background: linear-gradient(90deg, var(--orange-dark), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--orange-dark);
  transition: width 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.header-search,
.mobile-search,
.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f3f4f6;
}

.header-search input,
.mobile-search input,
.hero-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 12px;
}

.header-search button,
.mobile-search button,
.hero-search button {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 16px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.24);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: #374151;
  cursor: pointer;
  border-radius: 12px;
  background: #f3f4f6;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(234, 88, 12, 0.94), rgba(220, 38, 38, 0.84), rgba(219, 39, 119, 0.72)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.24;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  gap: 56px;
}

.hero-copy {
  max-width: 780px;
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: #fff7ed;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero h1 {
  margin: 22px 0 10px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero h2 {
  margin: 0 0 16px;
  color: #ffedd5;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
}

.hero p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  color: #7c2d12;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffedd5;
}

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

.primary-button,
.ghost-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  color: var(--orange-dark);
  padding: 0 28px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.ghost-button {
  color: #ffffff;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover,
.section-link:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.36);
  transform: rotate(3deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-poster span,
.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  color: var(--orange-dark);
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
  transform: translate(-50%, -50%);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.main-section,
.collection-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.collection-strip {
  width: 100%;
  padding: 72px max(16px, calc((100% - 1180px) / 2));
}

.collection-strip:nth-of-type(odd),
.category-entry-section,
.rank-preview-section {
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.hot-section {
  width: 100%;
  padding: 72px max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

.section-heading span {
  color: var(--orange-dark);
  font-weight: 900;
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.section-link {
  color: var(--orange-dark);
  padding: 0 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.movie-grid,
.featured-grid,
.category-entry-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #f3f4f6;
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.movie-card:hover .movie-cover img {
  transform: scale(1.1);
}

.movie-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.92;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.72));
}

.movie-badge,
.rank-mark {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.24);
}

.rank-mark {
  left: 14px;
  right: auto;
  background: linear-gradient(135deg, #fbbf24, #ef4444);
}

.play-float {
  z-index: 3;
  width: 52px;
  height: 52px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.74);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
  padding: 18px;
}

.movie-info h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.28;
}

.movie-info h3 a:hover {
  color: var(--orange-dark);
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #6b7280;
  font-size: 13px;
}

.movie-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f4f6;
}

.movie-card.featured,
.movie-card.overlay {
  position: relative;
}

.movie-card.featured .movie-info,
.movie-card.overlay .movie-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  color: #ffffff;
  padding: 26px;
}

.movie-card.featured .movie-info h3,
.movie-card.overlay .movie-info h3,
.movie-card.featured .movie-info p,
.movie-card.overlay .movie-info p {
  color: #ffffff;
}

.movie-card.featured .tag-row span,
.movie-card.overlay .tag-row span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
}

.movie-card.featured .movie-meta span,
.movie-card.overlay .movie-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

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

.category-card,
.collection-card {
  display: grid;
  min-height: 160px;
  padding: 26px;
  color: #ffffff;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--orange), var(--red) 58%, var(--pink));
  box-shadow: 0 18px 40px rgba(220, 38, 38, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:nth-child(2n),
.collection-card:nth-child(2n) {
  background: linear-gradient(135deg, var(--blue), #0891b2);
}

.category-card:nth-child(3n),
.collection-card:nth-child(3n) {
  background: linear-gradient(135deg, #7c3aed, var(--pink));
}

.category-card:hover,
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
}

.category-card span,
.collection-card span {
  font-weight: 900;
  font-size: 24px;
}

.category-card strong,
.collection-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
}

.rank-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.compact-card:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.11);
}

.compact-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1;
}

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

.compact-rank {
  position: absolute;
  left: 6px;
  top: 6px;
  display: grid;
  width: 24px;
  height: 24px;
  color: #ffffff;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-size: 12px;
  font-weight: 900;
}

.compact-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.compact-copy strong {
  overflow: hidden;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.compact-copy em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

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

.page-hero {
  color: #ffffff;
  padding: 90px max(16px, calc((100% - 1180px) / 2));
}

.orange-hero {
  background: linear-gradient(120deg, var(--orange), var(--red), var(--pink));
}

.red-hero {
  background: linear-gradient(120deg, #ef4444, #b91c1c, #7f1d1d);
}

.page-hero > div {
  max-width: 860px;
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
}

.page-hero p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 26px;
}

.filter-panel button {
  border: 0;
  color: #374151;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.filter-panel button.is-active,
.filter-panel button:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

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

.collection-card {
  min-height: 260px;
}

.collection-card-main h2 {
  margin: 10px 0;
  font-size: 32px;
}

.collection-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.collection-links a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  margin: 6px 0 24px;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--orange-dark);
}

.detail-hero {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  padding: 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 36%),
    linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

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

.detail-copy h1 {
  margin: 20px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.detail-line {
  margin: 0 0 20px;
  color: #4b5563;
  font-size: 19px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-meta span {
  color: #374151;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f4f6;
}

.player-section {
  margin: 36px 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 26px 72px rgba(2, 6, 23, 0.28);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #020617;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  border: 0;
  cursor: pointer;
  place-items: center;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.62));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  display: grid;
  width: 90px;
  height: 90px;
  color: var(--orange-dark);
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  font-size: 34px;
}

.player-shell.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.content-card {
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.content-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
}

.related-section {
  width: 100%;
}

.site-footer {
  margin-top: 70px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937 52%, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 34px;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
}

.site-footer p {
  color: #9ca3af;
  margin: 14px 0 0;
}

.site-footer h3 {
  color: #ffffff;
  margin: 0 0 14px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 30px;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.back-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 80;
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 16px 34px rgba(220, 38, 38, 0.26);
}

.back-top.is-visible {
  display: block;
}

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

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

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

  .hero-content {
    grid-template-columns: 1fr;
    padding: 88px 0;
  }

  .hero-poster {
    display: none;
  }

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

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

  .rank-layout,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .brand-text {
    font-size: 20px;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero h1 {
    letter-spacing: -0.04em;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

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

  .movie-grid,
  .featured-grid,
  .wide-grid,
  .small-grid,
  .category-entry-grid,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .movie-info {
    padding: 14px;
  }

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

  .movie-info p {
    font-size: 13px;
  }

  .category-card,
  .collection-card {
    padding: 20px;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

  .player-overlay span {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .movie-grid,
  .featured-grid,
  .wide-grid,
  .small-grid,
  .category-entry-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .hero-tags,
  .tag-row,
  .movie-meta {
    gap: 6px;
  }

  .page-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .compact-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }
}
