:root {
  --rose: #e11d48;
  --rose-dark: #be123c;
  --rose-soft: #fff1f2;
  --ink: #111827;
  --muted: #6b7280;
  --line: rgba(225, 29, 72, 0.16);
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 80px rgba(159, 18, 57, 0.14);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 113, 133, 0.18), transparent 32rem),
    radial-gradient(circle at 92% 6%, rgba(251, 146, 60, 0.14), transparent 30rem),
    linear-gradient(180deg, #fff7f7 0%, #fff 34%, #fff8f8 100%);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(225, 29, 72, 0.12);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  color: #9f1239;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #fb7185, #e11d48 48%, #fb923c);
  box-shadow: 0 14px 35px rgba(225, 29, 72, 0.32);
}

.logo-text {
  font-size: 1.18rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #be123c;
  background: #ffe4e6;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.5rem;
}

.header-search input,
.mobile-search input,
.page-search input,
.filter-row input,
.filter-row select {
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.72rem 1rem;
  outline: none;
  transition: 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.page-search input:focus,
.filter-row input:focus,
.filter-row select:focus {
  border-color: rgba(225, 29, 72, 0.5);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
}

.header-search button,
.mobile-search button {
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #fb7185, #e11d48);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  background: #ffe4e6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  background: #be123c;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

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

.mobile-search {
  flex-basis: 100%;
  display: flex;
  gap: 0.5rem;
}

.mobile-search input {
  flex: 1;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 5.5rem 1.25rem 2rem;
  background:
    linear-gradient(135deg, rgba(159, 18, 57, 0.96), rgba(225, 29, 72, 0.9) 44%, rgba(251, 146, 60, 0.82)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 26rem);
  color: #fff;
}

.hero-glow {
  position: absolute;
  inset: -30% -10% auto auto;
  width: 46rem;
  height: 46rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(12px);
}

.hero-track {
  position: relative;
  max-width: 1240px;
  min-height: 470px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 4rem;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-content {
  order: 1;
  max-width: 710px;
}

.hero-image {
  order: 2;
  position: relative;
  border-radius: 2rem;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(76, 5, 25, 0.45);
}

.hero-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 1.55rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.36rem 0.78rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #be123c;
  background: #ffe4e6;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.hero-slider .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-movie-title {
  margin-top: 0.8rem !important;
  font-size: clamp(1.65rem, 3vw, 3.2rem) !important;
  letter-spacing: -0.04em !important;
  color: #ffe4e6;
}

.hero-content p {
  margin-top: 1.2rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-tags,
.movie-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags {
  margin-top: 1.2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  color: #be123c;
  background: #ffe4e6;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-tags .tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
}

.hero-actions,
.detail-actions,
.category-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.primary-btn,
.ghost-btn,
.section-more,
.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.84rem 1.25rem;
  font-weight: 900;
  transition: 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #fb7185, #e11d48);
  box-shadow: 0 18px 38px rgba(225, 29, 72, 0.28);
}

.primary-btn:hover,
.rank-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(225, 29, 72, 0.34);
}

.primary-btn.small {
  padding: 0.66rem 1rem;
}

.ghost-btn {
  color: #be123c;
  background: #fff1f2;
  border: 1px solid rgba(225, 29, 72, 0.16);
}

.hero-slider .ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-control-row {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-arrow {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 2rem;
  line-height: 1;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.hero-dot.active {
  width: 2rem;
  background: #fff;
}

.hero-thumbs {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 1.2rem auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem;
  border-radius: 1.1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.hero-thumb.active {
  background: rgba(255, 255, 255, 0.24);
}

.hero-thumb img {
  width: 3.2rem;
  height: 4.2rem;
  object-fit: cover;
  border-radius: 0.8rem;
}

.section-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.045em;
  color: #111827;
}

.section-heading p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.section-more {
  color: #be123c;
  background: #ffe4e6;
  flex-shrink: 0;
}

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

.category-chip,
.category-page-card,
.category-preview-card,
.detail-side-card,
.detail-article,
.player-card,
.filter-panel {
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.category-chip {
  display: grid;
  gap: 0.3rem;
  min-height: 6.5rem;
  padding: 1.2rem;
  transition: 0.2s ease;
}

.category-chip:hover,
.movie-card:hover,
.category-page-card:hover,
.category-preview-card:hover {
  transform: translateY(-4px);
}

.category-chip span {
  color: #9f1239;
  font-size: 1.1rem;
  font-weight: 950;
}

.category-chip small {
  color: #6b7280;
  line-height: 1.6;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(225, 29, 72, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(159, 18, 57, 0.1);
  transition: 0.2s ease;
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff1f2;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.055);
}

.poster-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(159, 18, 57, 0.82);
  font-size: 0.75rem;
  font-weight: 900;
}

.movie-card-body {
  padding: 0.95rem;
}

.movie-meta-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
  color: #e11d48;
  font-size: 0.78rem;
  font-weight: 850;
}

.movie-meta-line span + span::before {
  content: "·";
  margin-right: 0.45rem;
  color: #fb7185;
}

.movie-card h3 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.35;
  font-weight: 950;
  color: #111827;
}

.movie-card h3 a:hover,
.rank-content h3 a:hover,
.detail-side-card a:hover {
  color: #be123c;
}

.movie-card p {
  margin: 0.45rem 0 0.75rem;
  min-height: 3.15rem;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.65;
}

.movie-card.compact p {
  min-height: auto;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  max-width: 1240px;
  margin: 2.5rem auto 0;
  padding: 4.2rem 1.25rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #9f1239, #e11d48 54%, #fb923c);
  color: #fff;
  box-shadow: var(--shadow);
}

.page-hero.soft {
  background: linear-gradient(135deg, #fff1f2, #fff 55%, #ffedd5);
  color: #111827;
  border: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.9;
  font-size: 1.05rem;
}

.page-hero.soft p {
  color: #6b7280;
}

.category-page-grid,
.category-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.category-page-card,
.category-preview-card {
  padding: 1.2rem;
}

.category-page-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 1rem;
}

.category-page-info h2,
.category-preview-head h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.category-page-info p,
.category-preview-head p {
  margin-top: 0.5rem;
  color: #6b7280;
  line-height: 1.8;
}

.category-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category-preview-head a {
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  color: #be123c;
  background: #ffe4e6;
  font-weight: 900;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.mini-grid .movie-card-body {
  padding: 0.72rem;
}

.mini-grid .movie-card p,
.mini-grid .movie-tags {
  display: none;
}

.filter-panel {
  margin-top: 1.25rem;
  padding: 1rem;
}

.filter-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr auto;
  gap: 0.85rem;
  align-items: end;
}

.filter-row label {
  display: grid;
  gap: 0.35rem;
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 800;
}

.filter-row input,
.filter-row select {
  width: 100%;
  color: #111827;
}

.rank-list {
  display: grid;
  gap: 0.8rem;
}

.rank-list.large {
  gap: 0.65rem;
}

.rank-item {
  display: grid;
  grid-template-columns: 4rem 4.8rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(225, 29, 72, 0.1);
  box-shadow: 0 12px 30px rgba(159, 18, 57, 0.08);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #fb7185, #e11d48);
  font-weight: 950;
}

.rank-cover img {
  width: 4.6rem;
  height: 6.2rem;
  border-radius: 0.9rem;
  object-fit: cover;
}

.rank-content h3 {
  margin: 0;
  font-weight: 950;
  color: #111827;
}

.rank-content p {
  margin: 0.35rem 0;
  color: #6b7280;
  line-height: 1.65;
}

.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #be123c;
  font-size: 0.85rem;
  font-weight: 800;
}

.rank-action {
  color: #fff;
  background: linear-gradient(135deg, #fb7185, #e11d48);
}

.page-search {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 760px;
}

.page-search input {
  flex: 1;
}

.search-empty {
  padding: 3rem;
  text-align: center;
  color: #6b7280;
  border: 1px dashed rgba(225, 29, 72, 0.25);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.68);
}

.breadcrumb {
  max-width: 1240px;
  margin: 1.7rem auto 0;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #6b7280;
  font-weight: 750;
}

.breadcrumb a {
  color: #be123c;
}

.detail-hero {
  max-width: 1240px;
  margin: 1.25rem auto 0;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 28px 70px rgba(159, 18, 57, 0.24);
}

.detail-info h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.detail-one-line {
  max-width: 820px;
  margin-top: 1rem;
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.9;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.detail-meta-grid span {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid rgba(225, 29, 72, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: #4b5563;
}

.detail-meta-grid b {
  color: #be123c;
  font-size: 0.82rem;
}

.detail-tags {
  margin-top: 1rem;
}

.player-section {
  padding-top: 2rem;
}

.player-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #111827;
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111827;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.9rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.72));
  font-size: 1.05rem;
  font-weight: 950;
  transition: opacity 0.22s ease;
}

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

.play-icon {
  width: 5.4rem;
  height: 5.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #e11d48;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  font-size: 2rem;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
}

.detail-article,
.detail-side-card {
  padding: 1.35rem;
}

.detail-article h2,
.detail-side-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.detail-article h2 + p {
  margin-bottom: 1.25rem;
}

.detail-article p {
  color: #4b5563;
  line-height: 2;
  font-size: 1.02rem;
}

.detail-side-card {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.detail-side-card a {
  display: block;
  padding: 0.8rem;
  border-radius: 0.9rem;
  color: #4b5563;
  background: #fff1f2;
  font-weight: 800;
}

.site-footer {
  margin-top: 5rem;
  padding: 2.5rem 1.25rem;
  background: #fff1f2;
  border-top: 1px solid rgba(225, 29, 72, 0.12);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: #be123c;
  font-weight: 850;
}

.hidden-by-filter {
  display: none !important;
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .hero-slide,
  .detail-hero,
  .detail-content-grid,
  .category-page-card {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-image {
    order: initial;
  }

  .hero-slide {
    gap: 2rem;
  }

  .hero-track {
    min-height: 820px;
  }

  .hero-image img {
    height: 360px;
  }

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

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

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

  .category-page-grid,
  .category-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-slider {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-track {
    min-height: 770px;
  }

  .hero-slide {
    display: block;
  }

  .hero-image {
    margin-top: 1.5rem;
  }

  .hero-image img {
    height: 300px;
  }

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

  .section-heading,
  .footer-inner,
  .page-search {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .rank-item {
    grid-template-columns: 3rem 4.2rem minmax(0, 1fr);
  }

  .rank-action {
    grid-column: 2 / -1;
  }

  .detail-hero {
    padding: 1rem;
  }

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

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

@media (max-width: 480px) {
  .header-inner {
    padding: 0.8rem 0.9rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .movie-grid,
  .compact-grid,
  .mini-grid,
  .category-chip-grid {
    grid-template-columns: 1fr;
  }

  .hero-track {
    min-height: 820px;
  }

  .hero-thumbs {
    display: none;
  }

  .page-hero {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
    padding: 3rem 1rem;
  }
}
