:root {
  --page-bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #fff7f7;
  --text: #111827;
  --muted: #6b7280;
  --muted-dark: #d1d5db;
  --line: #e5e7eb;
  --red: #dc2626;
  --red-dark: #991b1b;
  --red-soft: #fee2e2;
  --dark: #111827;
  --dark-2: #1f2937;
  --radius: 18px;
  --shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text);
}

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

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

img.image-missing {
  opacity: 0;
}

.site-header {
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.logo-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #ef4444);
  color: #fff;
  box-shadow: 0 12px 25px rgba(220, 38, 38, 0.28);
  font-size: 15px;
}

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

.nav-link {
  color: #374151;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

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

.header-search input,
.mobile-search input,
.hero-search input,
.filter-search input {
  border: 0;
  background: transparent;
  outline: 0;
  min-width: 180px;
  padding: 10px 12px;
  color: var(--text);
}

.header-search button,
.mobile-search button,
.hero-search button,
.filter-search button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  color: var(--text);
}

.mobile-panel {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 20px;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.25fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  padding: 56px max(24px, calc((100vw - 1280px) / 2)) 64px;
}

.hero-carousel::before,
.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.35), transparent 32%),
    radial-gradient(circle at 75% 35%, rgba(248, 113, 113, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-static-copy,
.hero-stage,
.hero-rank {
  position: relative;
  z-index: 1;
}

.hero-static-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-static-copy p,
.section-heading p,
.page-hero p {
  color: #fecaca;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-static-copy h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-search {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  max-width: 520px;
  border-radius: 18px;
}

.hero-search input {
  color: #fff;
  min-width: 0;
  width: 100%;
}

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

.hero-stage {
  min-height: 510px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  background: linear-gradient(145deg, #111827, #7f1d1d);
}

.hero-slide {
  position: absolute;
  inset: 56px max(24px, calc((100vw - 1280px) / 2)) 64px;
  left: calc(max(24px, (100vw - 1280px) / 2) + minmax(260px, 0.95fr));
}

.hero-stage .hero-slide {
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(145deg, #111827, #7f1d1d);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.46), rgba(127, 29, 29, 0.25));
}

.hero-content {
  position: absolute;
  inset: auto 32px 32px 32px;
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.hero-content h2 {
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.06;
  margin: 16px 0 12px;
  font-weight: 900;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-meta span,
.detail-meta span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(220, 38, 38, 0.34);
}

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

.ghost-button {
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
}

.ghost-button.dark {
  background: #111827;
  color: #fff;
}

.hero-dots {
  position: absolute;
  left: 32px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero-dots button {
  width: 28px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dots button.active {
  background: #fff;
}

.hero-rank {
  align-self: center;
  border-radius: 26px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.hero-rank h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.hero-rank-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-rank-item span {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.hero-rank-item strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-rank-item em {
  color: #fecaca;
  font-style: normal;
  font-weight: 800;
}

.section-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.muted-section {
  max-width: none;
  background: #f3f4f6;
  padding-left: max(24px, calc((100vw - 1280px) / 2));
  padding-right: max(24px, calc((100vw - 1280px) / 2));
}

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

.section-heading p {
  color: var(--red);
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading a {
  color: var(--red);
  font-weight: 800;
}

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

.category-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(145deg, #fff, #fff5f5);
  border: 1px solid rgba(220, 38, 38, 0.12);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span {
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.category-card strong {
  color: #111827;
  font-size: 14px;
  line-height: 1.5;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.movie-card {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-link,
.poster-frame {
  display: block;
  position: relative;
}

.poster-frame {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 10%, rgba(248, 113, 113, 0.45), transparent 32%),
    linear-gradient(145deg, #111827, #7f1d1d);
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease, opacity 0.2s ease;
}

.movie-card:hover .poster-frame img {
  transform: scale(1.08);
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.56));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card:hover .poster-frame::after {
  opacity: 1;
}

.poster-badge,
.poster-score {
  position: absolute;
  z-index: 2;
  top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.poster-badge {
  left: 10px;
  background: var(--red);
}

.poster-score {
  right: 10px;
  background: rgba(0, 0, 0, 0.62);
}

.poster-play {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
  font-weight: 900;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.movie-card h3 {
  font-size: 15px;
  line-height: 1.35;
  margin: 12px 0 6px;
  min-height: 40px;
}

.movie-card h3 a:hover {
  color: var(--red);
}

.movie-card-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tags span {
  background: var(--red-soft);
  color: var(--red-dark);
}

.movie-card.hidden,
.rank-row.hidden {
  display: none;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 76px 82px 1fr 82px;
  gap: 16px;
  align-items: center;
  border-radius: 18px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.92);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-num {
  color: var(--red);
  font-weight: 900;
  text-align: center;
}

.rank-poster {
  width: 82px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #111827, #7f1d1d);
}

.rank-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-main h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-main h2 a:hover {
  color: var(--red);
}

.rank-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.rank-meta {
  font-size: 13px;
  font-weight: 700;
}

.rank-heat {
  text-align: center;
  color: var(--red);
  font-weight: 900;
}

.rank-heat span {
  display: block;
  font-size: 26px;
}

.rank-heat small {
  color: var(--muted);
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #7f1d1d);
  color: #fff;
}

.page-hero {
  padding: 72px max(24px, calc((100vw - 1280px) / 2));
}

.page-hero div {
  position: relative;
  max-width: 820px;
  z-index: 1;
}

.page-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.filter-panel {
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.filter-search {
  border-radius: 16px;
}

.filter-search input {
  flex: 1;
  min-width: 0;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-chips button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  color: #374151;
  cursor: pointer;
  font-weight: 700;
  padding: 8px 12px;
}

.filter-chips button:hover {
  color: var(--red);
  border-color: var(--red);
}

.empty-state {
  display: none;
  margin: 22px 0;
  padding: 18px;
  border-radius: 16px;
  background: var(--red-soft);
  color: var(--red-dark);
  font-weight: 800;
}

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

.category-overview-list {
  display: grid;
  gap: 26px;
}

.category-overview-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--line);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.category-overview-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.category-overview-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.category-overview-head a {
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  padding: 58px max(24px, calc((100vw - 1280px) / 2));
  align-items: center;
}

.detail-poster,
.detail-copy {
  position: relative;
  z-index: 1;
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.36);
  background: linear-gradient(145deg, #111827, #7f1d1d);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  font-size: 14px;
}

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

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.detail-one-line {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 20px;
  max-width: 880px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.player-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px 24px;
}

.player-section h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.18), rgba(0, 0, 0, 0.58));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

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

.narrow-block {
  max-width: 1040px;
}

.text-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.text-panel h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.text-panel p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
  font-size: 16px;
}

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

.next-links a {
  border-radius: 18px;
  padding: 18px;
  background: #111827;
  color: #fff;
  font-weight: 800;
}

.next-links a:hover {
  background: var(--red);
}

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

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  color: #fff;
}

.footer-brand p,
.footer-links a,
.footer-bottom {
  color: #d1d5db;
}

.footer-brand p {
  line-height: 1.7;
  max-width: 520px;
}

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

.footer-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 18px 24px;
  font-size: 14px;
}

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

  .hero-carousel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-rank {
    align-self: stretch;
  }

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

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

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .header-inner {
    min-height: 64px;
  }

  .hero-carousel {
    padding-top: 38px;
    padding-bottom: 42px;
  }

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

  .hero-stage {
    min-height: 430px;
    border-radius: 24px;
  }

  .hero-content {
    inset: auto 22px 28px 22px;
  }

  .hero-content h2 {
    font-size: 32px;
  }

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

  .rank-row {
    grid-template-columns: 56px 72px 1fr;
  }

  .rank-heat {
    display: none;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 0 16px;
  }

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

  .hero-carousel,
  .page-hero,
  .detail-hero,
  .section-block,
  .player-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-static-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 34px;
  }

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

  .hero-search button,
  .filter-search button {
    width: 100%;
  }

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

  .movie-card {
    padding: 9px;
  }

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

  .rank-row {
    grid-template-columns: 48px 1fr;
    align-items: start;
  }

  .rank-poster {
    display: none;
  }

  .next-links {
    grid-template-columns: 1fr;
  }

  .category-overview-head,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
