:root {
  --bg: #fff7ed;
  --bg-soft: #fffbeb;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(251, 146, 60, 0.18);
  --orange: #f97316;
  --amber: #f59e0b;
  --deep: #111827;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(124, 45, 18, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(249, 115, 22, 0.14);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 22px;
  line-height: 1;
  background: linear-gradient(135deg, #ea580c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: #374151;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: #fff7ed;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #9a3412;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 12px 14px;
  color: #374151;
  border-radius: 14px;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  min-height: 640px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(135deg, #fb923c 0%, #f97316 42%, #f59e0b 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0), #fff7ed);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: 8%;
  top: 8%;
  background: rgba(255, 255, 255, 0.24);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: 12%;
  background: rgba(255, 236, 179, 0.38);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.eyebrow.dark {
  color: #9a3412;
  background: #ffedd5;
  box-shadow: none;
}

.hero-copy h1 {
  margin: 24px 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0 0 28px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.8;
}

.hero-search,
.filter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-search {
  max-width: 620px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 22px 60px rgba(124, 45, 18, 0.24);
}

.hero-search input,
.filter-controls input,
.filter-controls select {
  min-width: 0;
  border: 0;
  outline: 0;
}

.hero-search input {
  flex: 1;
  padding: 14px 18px;
  color: #111827;
  background: transparent;
}

.hero-search button,
.filter-controls button,
.primary-action,
.secondary-action,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-search button,
.filter-controls button,
.primary-action {
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

.hero-search button {
  padding: 14px 22px;
}

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

.primary-action,
.secondary-action {
  min-height: 48px;
  padding: 0 22px;
}

.secondary-action {
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.primary-action:hover,
.secondary-action:hover,
.text-link:hover,
.hero-search button:hover,
.filter-controls button:hover {
  transform: translateY(-2px);
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 35px 80px rgba(124, 45, 18, 0.32);
  backdrop-filter: blur(12px);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.5s ease, transform 0.7s ease;
}

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

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

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

.hero-slide-overlay {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
}

.hero-slide-overlay span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.hero-slide-overlay h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.hero-slide-overlay p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.hero-slide-overlay a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 18px;
  color: #9a3412;
  font-weight: 900;
  border-radius: 999px;
  background: #fff7ed;
}

.hero-nav {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.38);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

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

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.is-active {
  width: 24px;
  background: #fff;
}

.section-block {
  padding: 64px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.rank-preview h2,
.filter-panel h2,
.story-card h2,
.player-title-row h2 {
  margin: 8px 0 8px;
  color: #1f2937;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
}

.section-heading p,
.rank-preview p,
.filter-panel p,
.category-overview-head p,
.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(124, 45, 18, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: var(--shadow);
}

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

.movie-card.compact .poster {
  aspect-ratio: 4 / 5;
}

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

.movie-card:hover .poster img,
.category-tile:hover img,
.mini-card:hover img {
  transform: scale(1.06);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #9a3412;
  font-size: 12px;
  font-weight: 800;
}

.card-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #ffedd5;
}

.movie-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.movie-card h2 a:hover {
  color: var(--orange);
}

.movie-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.tag-row span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #92400e;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: #fef3c7;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.rank-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.text-link {
  width: fit-content;
  margin-top: 22px;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.rank-list-preview,
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(124, 45, 18, 0.08);
}

.mini-card img {
  width: 82px;
  height: 104px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card strong {
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.35;
}

.mini-card em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

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

.category-tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 210px;
  border-radius: 26px;
  background: #111827;
  box-shadow: var(--shadow);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 0.35s ease;
}

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

.category-tile span {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
}

.category-tile strong,
.category-tile em {
  display: block;
}

.category-tile strong {
  font-size: 20px;
  margin-bottom: 8px;
}

.category-tile em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-style: normal;
}

.filter-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(124, 45, 18, 0.08);
}

.filter-panel h2 {
  font-size: 24px;
}

.filter-controls input,
.filter-controls select {
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 999px;
  background: #fff7ed;
}

.filter-controls input {
  flex: 1;
}

.filter-controls button {
  height: 48px;
  padding: 0 20px;
}

.empty-state {
  display: none;
  margin: 24px 0 0;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  border-radius: 18px;
  background: #fff;
}

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

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #f97316, #f59e0b);
}

.compact-hero {
  padding: 78px 0 74px;
}

.compact-hero h1,
.detail-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.compact-hero p,
.detail-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

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

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

.category-overview-card {
  padding: 28px;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.category-overview-head span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

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

.category-overview-head h2 a:hover {
  color: var(--orange);
}

.category-overview-card .mini-grid {
  margin-top: 22px;
}

.detail-hero {
  padding: 42px 0 64px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(124, 45, 18, 0.34);
}

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

.lead-text {
  font-size: 20px;
}

.detail-tags {
  margin-top: 20px;
}

.detail-tags span {
  color: #9a3412;
  background: rgba(255, 255, 255, 0.86);
}

.detail-content {
  padding: 56px 0 70px;
}

.player-card,
.story-card {
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.player-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, rgba(249, 115, 22, 0.18), rgba(17, 24, 39, 0.74));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid #fff;
}

.player-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
}

.player-title-row h2 {
  margin: 0;
  font-size: 24px;
}

.player-title-row span {
  color: #9a3412;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffedd5;
}

.story-card {
  margin-top: 26px;
  padding: 30px;
}

.story-card h2 {
  font-size: 28px;
}

.story-card p + h2 {
  margin-top: 28px;
}

.related-block {
  padding-bottom: 0;
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
  padding: 48px 0;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fb923c;
  font-size: 18px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 9px 0;
  color: #9ca3af;
}

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

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-layout,
  .split-section,
  .filter-panel,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .mobile-toggle {
    display: block;
  }

  .nav-shell {
    height: 66px;
  }

  .brand-text strong {
    font-size: 19px;
  }

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

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

  .hero-search,
  .filter-controls,
  .hero-actions,
  .detail-actions,
  .player-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-search {
    border-radius: 24px;
  }

  .hero-search button,
  .filter-controls button,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-showcase {
    min-height: 420px;
    border-radius: 26px;
  }

  .hero-slide-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-nav {
    top: 14px;
    right: 14px;
  }

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

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

  .rank-list-preview,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .rank-preview,
  .category-overview-card,
  .story-card {
    padding: 20px;
    border-radius: 22px;
  }

  .card-body {
    padding: 14px;
  }

  .movie-card h2 {
    font-size: 17px;
  }

  .movie-card p {
    font-size: 13px;
  }

  .compact-hero h1,
  .detail-copy h1 {
    font-size: 40px;
  }

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

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

  .movie-grid,
  .ranking-grid,
  .featured-grid,
  .related-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 380px;
  }

  .detail-content {
    padding-top: 34px;
  }
}
