
:root {
  --bg: #fff7ed;
  --bg-soft: #fff1f2;
  --bg-dark: #111827;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(17, 24, 39, 0.1);
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --amber: #f59e0b;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

main {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(17, 24, 39, 0.88);
  backdrop-filter: blur(18px);
  color: #ffffff;
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), var(--red), var(--pink));
  box-shadow: 0 14px 32px rgba(239, 68, 68, 0.35);
}

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

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

.nav-link,
.mobile-link {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-nav.open {
  display: grid;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 64px 0 44px;
  color: #ffffff;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 28%), linear-gradient(120deg, #f97316 0%, #ef4444 48%, #ec4899 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.34));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.22;
  background: #ffffff;
}

.hero-glow.one {
  top: 120px;
  left: 8%;
}

.hero-glow.two {
  right: 12%;
  bottom: 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-slider {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 54px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-kicker,
.page-kicker,
.section-kicker,
.feature-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
}

.hero-copy h1 {
  margin: 18px 0 8px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
}

.hero-copy p {
  max-width: 700px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
}

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

.hero-tags {
  margin-top: 24px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  font-size: 12px;
  font-weight: 700;
}

.card-body .tag-chip,
.detail-tags .tag-chip,
.content-card .tag-chip {
  background: rgba(249, 115, 22, 0.1);
  color: #c2410c;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: #111827;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.btn.ghost.dark {
  color: #111827;
  background: rgba(17, 24, 39, 0.08);
}

.btn.link {
  color: #ffffff;
  background: rgba(17, 24, 39, 0.22);
}

.hero-cover,
.page-poster,
.category-cover,
.poster-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.35), rgba(249, 115, 22, 0.26));
}

.hero-cover {
  width: min(420px, 100%);
  justify-self: end;
  aspect-ratio: 2 / 3;
  border-radius: 34px;
  box-shadow: 0 40px 100px rgba(17, 24, 39, 0.32);
  transform: rotate(2deg);
}

.hero-cover img,
.page-poster img,
.poster-wrap img,
.feature-card img,
.ranking-item img,
.category-card img,
.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.hero-cover:hover img,
.movie-card:hover img,
.feature-card:hover img,
.ranking-item:hover img,
.category-card:hover img,
.category-cover:hover img {
  transform: scale(1.08);
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.hero-search,
.filter-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-search input,
.filter-box input,
.filter-box select {
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: inherit;
}

.hero-search input {
  width: min(520px, 54vw);
  padding: 0 12px;
  color: #ffffff;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 20px;
  color: #111827;
  background: #ffffff;
  font-weight: 850;
}

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

.hero-dot {
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-links a {
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(17, 24, 39, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 72px 0;
  background: #ffffff;
}

.section.soft {
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.section.warm {
  background: linear-gradient(135deg, #fffbeb, #fff1f2);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 10px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.section-head p {
  max-width: 720px;
  color: var(--muted);
}

.section-kicker {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.1);
}

.section-more,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ea580c;
  font-weight: 850;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.feature-card.large {
  grid-row: span 2;
  grid-column: span 2;
}

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

.feature-copy {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 9px;
  padding: 22px;
}

.feature-copy strong {
  font-size: 24px;
  line-height: 1.15;
}

.feature-card.large .feature-copy strong {
  font-size: 36px;
}

.feature-copy span:not(.feature-label):not(.tag-row):not(.tag-chip) {
  color: rgba(255, 255, 255, 0.82);
}

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.16);
}

.poster-wrap {
  display: block;
  aspect-ratio: 2 / 3;
}

.poster-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  border-radius: 999px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(239, 68, 68, 0.86);
  font-size: 11px;
  font-weight: 800;
}

.poster-play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.card-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.card-body strong {
  min-height: 44px;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta,
.card-desc {
  color: var(--muted);
  font-size: 13px;
}

.card-desc {
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 58px 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
  transform: translateX(4px);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.13);
}

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--red));
  font-weight: 950;
}

.ranking-item img {
  width: 84px;
  height: 112px;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(145deg, #111827, #f97316);
}

.rank-copy {
  display: grid;
  gap: 6px;
}

.rank-copy strong {
  font-size: 18px;
}

.rank-copy span {
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-copy em {
  color: #9ca3af;
  font-size: 13px;
  font-style: normal;
}

.rank-action {
  border-radius: 999px;
  padding: 9px 14px;
  color: #ffffff;
  background: #111827;
  font-size: 13px;
  font-weight: 850;
}

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

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 22px;
  background: #111827;
  color: #ffffff;
  box-shadow: var(--shadow);
}

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

.category-card span {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.category-card strong {
  font-size: 20px;
}

.category-card em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-hero {
  padding: 86px 0 70px;
  color: #ffffff;
  background: linear-gradient(120deg, #111827, #7c2d12 46%, #be123c);
}

.page-hero.slim {
  padding: 82px 0 74px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 14px 0 12px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.category-hero {
  background: linear-gradient(120deg, #fff7ed, #fff1f2);
  color: #111827;
}

.category-hero p {
  color: var(--muted);
}

.category-hero .page-kicker {
  background: rgba(249, 115, 22, 0.13);
  color: #c2410c;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 44px;
}

.page-poster {
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.category-cover {
  aspect-ratio: 2 / 3;
  border-radius: 20px;
}

.category-overview-card h2 {
  margin: 4px 0 10px;
  font-size: 24px;
  font-weight: 900;
}

.category-overview-card p {
  color: var(--muted);
}

.category-overview-card ul {
  display: grid;
  gap: 6px;
  margin: 14px 0;
  color: #374151;
}

.filter-box {
  justify-content: space-between;
  margin-bottom: 24px;
  border-color: var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
}

.filter-box input,
.filter-box select {
  min-height: 48px;
  color: #111827;
}

.filter-box input {
  flex: 1;
  padding: 0 14px;
}

.filter-box select {
  border-left: 1px solid var(--line);
  padding: 0 12px;
}

.detail-player-section {
  padding: 34px 0 72px;
  color: #ffffff;
  background: radial-gradient(circle at 76% 18%, rgba(236, 72, 153, 0.28), transparent 32%), linear-gradient(135deg, #111827 0%, #1f2937 48%, #7c2d12 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.player-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.48));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-cover span {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  font-size: 28px;
}

.play-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-info h1 {
  margin: 16px 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.detail-info .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.meta-grid span {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.meta-grid b {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

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

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

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

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

.site-footer {
  color: #ffffff;
  background: #111827;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 42px 0;
}

.footer-inner p {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

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

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

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

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

  .hero {
    min-height: auto;
    padding: 42px 0 34px;
  }

  .hero-slider {
    min-height: 760px;
  }

  .hero-slide,
  .detail-layout,
  .split-hero,
  .detail-content-grid,
  .footer-inner,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .hero-cover {
    justify-self: start;
    width: min(320px, 100%);
  }

  .hero-bottom,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-search,
  .filter-box {
    border-radius: 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-search input,
  .filter-box input,
  .filter-box select {
    width: 100%;
  }

  .filter-box select {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .category-overview-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .brand-name {
    font-size: 18px;
  }

  .hero-slider {
    min-height: 690px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .section,
  .page-hero {
    padding: 52px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .feature-card.large {
    grid-column: auto;
    grid-row: auto;
  }

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

  .card-body {
    padding: 12px;
  }

  .ranking-item {
    grid-template-columns: 42px 68px minmax(0, 1fr);
    gap: 10px;
  }

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

  .rank-action {
    display: none;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .category-cover {
    max-width: 180px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }
}
