:root {
  --orange: #f97316;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --gray-950: #111827;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --soft-shadow: 0 12px 28px rgba(249, 115, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--gray-900);
  background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 48%, #fffbeb 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.nav-shell,
.footer-shell,
.page-section,
.page-shell,
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
}

.nav-shell {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

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

.logo-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--rose), var(--amber));
  box-shadow: 0 10px 28px rgba(244, 63, 94, 0.32);
}

.logo-text {
  font-size: 21px;
  background: linear-gradient(90deg, var(--orange), var(--rose), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: var(--gray-700);
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gray-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 12px 20px 18px;
  border-top: 1px solid rgba(249, 115, 22, 0.16);
}

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

.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.active {
  background: #fff7ed;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.03);
  background-position: center;
  background-size: cover;
  transition: opacity 0.7s ease, transform 0.9s ease;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  width: 100%;
  padding: 80px 24px;
}

.hero-content > * {
  max-width: 720px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fed7aa;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin: 22px 0 10px;
  font-size: clamp(23px, 3vw, 34px);
  color: #fed7aa;
  font-weight: 800;
}

.hero-summary {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.detail-meta span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

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

.btn-primary,
.btn-glass,
.btn-link,
.more-link,
.btn-primary.full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  padding: 13px 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--rose));
  box-shadow: 0 14px 30px rgba(244, 63, 94, 0.28);
}

.btn-primary:hover,
.btn-glass:hover,
.more-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(244, 63, 94, 0.24);
}

.btn-glass {
  padding: 13px 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.btn-glass.light {
  background: rgba(255, 255, 255, 0.22);
}

.btn-link {
  padding: 12px 0;
  color: #fed7aa;
}

.btn-primary.full {
  width: 100%;
  margin-top: 22px;
}

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

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

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

.page-section {
  padding: 58px 24px;
}

.no-pad-top {
  padding-top: 0;
}

.section-heading,
.section-bar,
.panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading > span,
.panel-title > span {
  width: 5px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--rose));
}

.section-heading h2,
.panel-title h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--gray-500);
}

.section-bar {
  justify-content: space-between;
  margin-bottom: 26px;
}

.section-bar .section-heading {
  margin-bottom: 0;
}

.more-link {
  padding: 10px 18px;
  color: var(--orange);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

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

.category-tile {
  min-height: 126px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  color: var(--gray-900);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile strong {
  font-size: 19px;
}

.category-tile span {
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.6;
}

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fecdd3);
}

.movie-card.small .poster-wrap {
  aspect-ratio: 16 / 10;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover img,
.compact-card:hover img,
.rank-row:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(17, 24, 39, 0.82));
  opacity: 0.78;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.year-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.72);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--gray-500);
  font-size: 12px;
}

.card-tags {
  margin-top: 12px;
}

.card-tags span {
  padding: 5px 9px;
  color: #ea580c;
  background: #fff7ed;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

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

.ranking-panel,
.aside-card,
.detail-card,
.search-panel,
.filter-panel,
.rank-table {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.ranking-panel {
  position: sticky;
  top: 88px;
  padding: 24px;
}

.rank-list,
.compact-list,
.rank-table {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 36px 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

.rank-number {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--rose));
}

.rank-row img {
  width: 64px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.rank-info strong,
.rank-info small {
  display: block;
}

.rank-info strong {
  font-size: 14px;
  line-height: 1.35;
}

.rank-info small {
  margin-top: 4px;
  color: var(--gray-500);
}

.rank-score {
  color: var(--rose);
  font-weight: 900;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #7c2d12, #881337);
}

.footer-shell {
  padding: 52px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}

.footer-logo {
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-grid p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

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

.footer-links,
.footer-tags {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #fed7aa;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
}

.footer-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.14);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom a {
  color: #fed7aa;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: 0 16px 34px rgba(244, 63, 94, 0.32);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-shell {
  padding: 28px 24px 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--gray-500);
  font-size: 14px;
}

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

.page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 230px;
  margin-bottom: 36px;
  padding: 42px;
  border-radius: 32px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--rose), var(--amber));
  box-shadow: 0 24px 60px rgba(244, 63, 94, 0.24);
}

.page-hero.slim {
  min-height: 250px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

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

.category-overview-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.category-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  color: #ffffff;
}

.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.category-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.72));
}

.category-cover span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  font-size: 22px;
  font-weight: 900;
}

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

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

.category-overview-body p {
  margin: 0 0 16px;
  color: var(--gray-500);
  line-height: 1.7;
}

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: #ea580c;
  background: #fff7ed;
  font-size: 12px;
  font-weight: 700;
}

.filter-panel,
.search-panel {
  margin-bottom: 34px;
  padding: 22px;
}

.filter-panel label,
.search-row label {
  display: grid;
  gap: 8px;
  color: var(--gray-600);
  font-weight: 800;
}

.filter-input,
.filter-select {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 15px;
  padding: 0 14px;
  outline: none;
  color: var(--gray-900);
  background: #ffffff;
}

.filter-input:focus,
.filter-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-row {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.empty-state {
  display: none;
  padding: 34px;
  text-align: center;
  color: var(--gray-500);
}

.empty-state.visible {
  display: block;
}

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

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.24);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

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

.player-start {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--rose));
  box-shadow: 0 18px 40px rgba(244, 63, 94, 0.38);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.player-start span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.detail-card {
  margin-top: 24px;
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.detail-lead {
  margin: 0 0 22px;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 7px 12px;
  color: var(--gray-700);
  background: #f9fafb;
}

.detail-tags {
  margin-bottom: 24px;
}

.detail-tags span {
  padding: 7px 12px;
  color: #ea580c;
  background: #fff7ed;
}

.story-block {
  margin-top: 20px;
  padding: 24px;
  border-radius: 22px;
}

.story-block h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.story-block p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.95;
}

.primary-block {
  background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

.review-block {
  background: linear-gradient(135deg, #eff6ff, #faf5ff);
}

.detail-aside {
  position: sticky;
  top: 88px;
}

.aside-card {
  padding: 22px;
}

.aside-card h2 {
  margin: 0 0 18px;
}

.compact-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  transition: background 0.2s ease;
}

.compact-card:hover {
  background: #fff7ed;
}

.compact-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
}

.compact-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.compact-thumb span {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 3px 6px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.75);
  font-size: 11px;
}

.compact-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card p,
.compact-card strong {
  display: block;
  margin: 0;
  color: var(--gray-500);
  font-size: 12px;
}

.compact-card strong {
  margin-top: 6px;
  color: var(--rose);
}

.related-bottom {
  padding-left: 0;
  padding-right: 0;
}

.rank-table {
  padding: 16px;
}

@media (max-width: 1180px) {
  .category-grid,
  .movie-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .ranking-panel,
  .detail-aside {
    position: static;
  }

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

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

  .nav-toggle {
    display: block;
  }

  .nav-shell {
    padding: 0 16px;
  }

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

  .hero-content {
    padding: 64px 18px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-glass,
  .btn-link {
    width: 100%;
  }

  .page-section,
  .page-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .category-grid,
  .movie-grid,
  .compact-grid,
  .category-overview-grid,
  .footer-grid,
  .search-row {
    grid-template-columns: 1fr 1fr;
  }

  .featured-grid,
  .category-list,
  .search-grid {
    gap: 14px;
  }

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

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

  .movie-card p {
    display: none;
  }

  .page-hero {
    display: block;
    padding: 28px;
    border-radius: 24px;
  }

  .page-hero .btn-glass {
    margin-top: 18px;
  }

  .detail-card {
    padding: 20px;
  }

  .story-block {
    padding: 18px;
  }

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

@media (max-width: 520px) {
  .category-grid,
  .movie-grid,
  .compact-grid,
  .category-overview-grid,
  .footer-grid,
  .search-row {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 32px 58px 1fr;
  }

  .rank-score {
    grid-column: 3;
  }

  .compact-card {
    grid-template-columns: 104px 1fr;
  }
}
