:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: rgba(30, 41, 59, 0.82);
  --panel-solid: #1e293b;
  --panel-deep: #0b1220;
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-deep: #0891b2;
  --orange: #fb923c;
  --green: #4ade80;
  --ring: rgba(34, 211, 238, 0.45);
  --border: rgba(148, 163, 184, 0.16);
  --shadow: 0 22px 70px rgba(2, 6, 23, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(30, 41, 59, 0.95);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.26);
  font-size: 14px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--soft);
  font-weight: 600;
}

.nav-menu > a,
.nav-dropdown > button {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--soft);
  transition: color 0.2s ease;
}

.nav-menu > a:hover,
.nav-dropdown > button:hover {
  color: var(--cyan);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--soft);
}

.dropdown-panel a:hover {
  background: rgba(51, 65, 85, 0.86);
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.75);
}

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

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(30, 41, 59, 0.95);
  background: rgba(15, 23, 42, 0.98);
}

.mobile-menu a {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
  color: var(--soft);
}

.mobile-menu a:hover {
  color: var(--cyan);
}

.mobile-menu.is-open {
  display: block;
}

.hero-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #020617;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-tile {
  position: relative;
  overflow: hidden;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
}

.hero-tile span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.66);
  color: white;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.22), rgba(2, 6, 23, 0.06));
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 40px;
  padding: 70px 0;
}

.hero-copy-wrap {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.orange {
  color: var(--orange);
}

.eyebrow.green {
  color: var(--green);
}

.hero-copy-wrap h1,
.page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-desc,
.page-hero p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--soft);
  font-size: 20px;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: white;
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.25);
}

.btn.ghost {
  border-color: var(--border);
  background: rgba(30, 41, 59, 0.76);
  color: white;
  backdrop-filter: blur(10px);
}

.btn.block {
  width: 100%;
}

.hero-feature-box {
  min-height: 315px;
  padding: 22px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.64));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-feature {
  display: none;
}

.hero-feature.is-active {
  display: block;
  animation: fadeUp 0.45s ease both;
}

.hero-feature h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.hero-feature p {
  min-height: 76px;
  margin: 0 0 22px;
  color: var(--soft);
}

.page-flow {
  padding-top: 54px;
  padding-bottom: 34px;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.breadcrumb span::before,
.breadcrumb a + span::before,
.breadcrumb a + a::before {
  content: "/";
  margin-right: 10px;
  color: #475569;
}

.page-hero {
  position: relative;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 22rem), linear-gradient(145deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.96));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mini-hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
}

.content-section {
  margin: 54px 0;
}

.slate-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(30, 41, 59, 0.46);
}

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

.section-title h2,
.filter-head h2,
.side-card h2,
.detail-section h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.section-title a {
  color: var(--cyan);
  font-weight: 800;
}

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

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

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

.side-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.movie-card {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.78);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--ring);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.36);
}

.card-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #020617;
}

.movie-card.compact .poster-wrap {
  aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.26), transparent);
  transition: opacity 0.24s ease;
}

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

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.9);
  color: white;
  font-size: 20px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.label {
  position: absolute;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  border-radius: 8px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.label-top-left {
  top: 12px;
  left: 12px;
  background: rgba(249, 115, 22, 0.88);
}

.label-top-right {
  top: 12px;
  right: 12px;
}

.rank-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, #fb923c, #ef4444);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 8px;
  color: white;
  font-size: 17px;
  line-height: 1.42;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

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

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

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
}

.card-meta span:last-child {
  color: var(--cyan);
}

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

.category-card {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.7);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--ring);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.26));
}

.category-card strong,
.category-card em {
  position: relative;
  z-index: 2;
}

.category-card strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.category-card em {
  color: var(--soft);
  font-size: 14px;
  font-style: normal;
}

.category-overview-card a {
  min-height: 220px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.62);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-overview-card a:hover {
  transform: translateY(-3px);
  border-color: var(--ring);
}

.category-cover {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

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

.category-cover span {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.76), transparent);
}

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

.category-overview-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.category-overview-card em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 800;
}

.filter-panel {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.18);
}

.filter-head {
  margin-bottom: 18px;
}

.filter-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.filter-controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 14px;
}

.filter-controls label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
  background: rgba(30, 41, 59, 0.78);
  color: white;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.no-results {
  display: none;
  padding: 30px;
  border: 1px dashed var(--border);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

.no-results.is-visible {
  display: block;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.58);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  border-color: var(--ring);
}

.rank-num {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  font-size: 18px;
  font-weight: 900;
  background: rgba(6, 182, 212, 0.9);
}

.rank-row img {
  width: 112px;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-main strong,
.rank-main em {
  display: block;
}

.rank-main strong {
  margin-bottom: 5px;
  color: white;
}

.rank-main em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.rank-side {
  color: var(--soft);
  font-size: 14px;
  white-space: nowrap;
}

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

.detail-main,
.detail-side {
  min-width: 0;
}

.player-card,
.detail-card,
.side-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.72);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.18);
}

.player-card {
  margin-bottom: 24px;
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #020617;
  overflow: hidden;
}

.player-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: brightness(0.75);
}

.player-overlay span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.92);
  color: white;
  font-size: 30px;
  box-shadow: 0 18px 45px rgba(6, 182, 212, 0.32);
  transform: translate(-50%, -50%);
}

.player-overlay.is-hidden {
  display: none;
}

.detail-card {
  padding: 28px;
}

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

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.11);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.one-line {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 18px;
  font-style: italic;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.detail-section {
  margin-top: 26px;
}

.detail-section h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.detail-section p {
  margin: 0;
  color: var(--soft);
  font-size: 16px;
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.side-card {
  padding: 18px;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.poster-card h2 {
  margin-top: 16px;
  font-size: 22px;
}

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

.site-footer {
  margin-top: 70px;
  border-top: 1px solid rgba(30, 41, 59, 0.95);
  background: #0b1220;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 36px;
  padding: 44px 0;
}

.footer-grid p {
  max-width: 460px;
  color: var(--muted);
}

.footer-grid h3 {
  margin: 0 0 14px;
}

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

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding: 20px 16px;
  border-top: 1px solid rgba(30, 41, 59, 0.95);
  color: #64748b;
  text-align: center;
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    min-height: 64px;
  }

  .logo {
    font-size: 20px;
  }

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

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

  .hero-tile:nth-child(n + 2) {
    display: none;
  }

  .hero-gradient {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.96));
  }

  .hero-content {
    gap: 24px;
    padding: 40px 0;
  }

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

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

  .slate-panel,
  .filter-panel,
  .page-hero,
  .detail-card {
    padding: 18px;
    border-radius: 20px;
  }

  .filter-controls {
    grid-template-columns: 1fr;
  }

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

  .rank-row {
    grid-template-columns: 42px 82px minmax(0, 1fr);
  }

  .rank-row img {
    width: 82px;
    height: 58px;
  }

  .rank-side {
    display: none;
  }

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

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

@media (max-width: 480px) {
  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

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