:root {
  --sand-50: #faf8f3;
  --sand-100: #f5f0e6;
  --sand-200: #ede1cd;
  --sand-300: #dcc59d;
  --sand-500: #c49a5c;
  --sand-600: #b07d44;
  --sand-700: #8f6235;
  --sand-800: #6d4a29;
  --sand-900: #4a3218;
  --dune-50: #fff4e8;
  --dune-100: #ffe3c2;
  --dune-500: #d97706;
  --dune-600: #c05f14;
  --dune-700: #9c4613;
  --white: #ffffff;
  --ink: #2c1b0c;
  --muted: #7d5d3b;
  --shadow-sm: 0 1px 2px rgba(74, 50, 24, 0.06);
  --shadow-md: 0 8px 24px rgba(74, 50, 24, 0.12);
  --shadow-lg: 0 18px 45px rgba(74, 50, 24, 0.18);
  --radius-lg: 18px;
  --radius-xl: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--sand-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(196, 154, 92, 0.22);
  background: rgba(250, 248, 243, 0.86);
  backdrop-filter: blur(16px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sand-900);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--dune-500), var(--sand-600));
  box-shadow: var(--shadow-md);
}

.logo-mark span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: var(--sand-700);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--dune-500), var(--sand-500));
  transition: width 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--sand-100);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--sand-800);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

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

.mobile-link {
  padding: 12px 14px;
  color: var(--sand-700);
  border-radius: 12px;
  font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--dune-700);
  background: var(--sand-100);
}

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

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--sand-900);
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-layer {
  background:
    linear-gradient(90deg, rgba(36, 22, 8, 0.86), rgba(36, 22, 8, 0.48), rgba(36, 22, 8, 0.16)),
    linear-gradient(0deg, rgba(36, 22, 8, 0.88), transparent 58%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 92px;
  max-width: 780px;
  color: var(--white);
}

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

.hero-tags span,
.detail-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.hero-meta span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions,
.search-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn-primary,
.btn-ghost,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--dune-500), var(--sand-600));
  box-shadow: 0 12px 28px rgba(192, 95, 20, 0.26);
}

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

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--dune-600);
  background: transparent;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 6;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: var(--white);
}

.search-band {
  background: linear-gradient(180deg, var(--sand-100), var(--sand-50));
}

.search-band .section-container {
  padding-top: 32px;
  padding-bottom: 16px;
}

.search-panel,
.catalog-controls,
.detail-card,
.info-card,
.category-panel,
.top-rank-card {
  border: 1px solid rgba(196, 154, 92, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.search-panel {
  padding: 24px;
}

.search-panel label,
.catalog-controls label {
  display: block;
  margin-bottom: 8px;
  color: var(--sand-800);
  font-size: 14px;
  font-weight: 800;
}

.search-row input,
.catalog-controls input,
.catalog-controls select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(196, 154, 92, 0.35);
  border-radius: 999px;
  color: var(--sand-900);
  background: var(--white);
  outline: 0;
}

.search-row input {
  flex: 1 1 320px;
  padding: 0 18px;
}

.catalog-controls input,
.catalog-controls select {
  padding: 0 14px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading span {
  width: 6px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--dune-500), var(--dune-600));
}

.section-heading h2 {
  flex: 1;
  margin: 0;
  color: var(--sand-900);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
}

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

.soft-section {
  background: linear-gradient(180deg, var(--sand-50), var(--white));
}

.card-rail {
  display: flex;
  gap: 22px;
  margin: 0 -16px;
  padding: 0 16px 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.card-rail::-webkit-scrollbar {
  display: none;
}

.rail-item {
  flex: 0 0 322px;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 92, 0.18);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  border-color: rgba(192, 95, 20, 0.34);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand-200);
}

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

.movie-card:hover .card-cover img {
  transform: scale(1.06);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 11, 4, 0.56), transparent 58%);
  opacity: 0.8;
}

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(217, 119, 6, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #ef4444, var(--dune-500));
  box-shadow: 0 10px 20px rgba(157, 58, 10, 0.25);
  font-weight: 900;
}

.card-body {
  padding: 16px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--sand-600);
  font-size: 13px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 0 0 8px;
  color: var(--sand-900);
  font-size: 18px;
  line-height: 1.35;
}

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

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

.tag-row span {
  padding: 4px 8px;
  border-radius: 7px;
  color: var(--sand-700);
  background: var(--sand-100);
  font-size: 12px;
  font-weight: 700;
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.category-tile img,
.category-tile-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-tile img {
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile-layer {
  background: linear-gradient(0deg, rgba(36, 22, 8, 0.9), rgba(36, 22, 8, 0.2));
}

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

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

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

.timeline-stack {
  display: grid;
  gap: 36px;
}

.timeline-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.timeline-title span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--dune-500), var(--sand-600));
  box-shadow: var(--shadow-md);
  font-weight: 900;
}

.timeline-title h3 {
  margin: 0;
  color: var(--sand-800);
  font-size: 24px;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(217, 119, 6, 0.32), transparent 30%),
    linear-gradient(135deg, var(--sand-900), var(--sand-700));
}

.page-hero.slim .section-container {
  padding-top: 52px;
  padding-bottom: 52px;
}

.page-hero h1 {
  margin: 10px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

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

.breadcrumb b {
  color: rgba(255, 255, 255, 0.4);
}

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

.category-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
}

.category-panel-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--sand-200);
}

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

.category-panel-body {
  padding: 24px;
}

.category-panel h2 {
  margin: 0 0 10px;
  color: var(--sand-900);
}

.category-panel p {
  margin: 0 0 18px;
  color: var(--sand-700);
}

.catalog-controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
}

.catalog-controls.wide {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.empty-tip {
  display: none;
  margin: 30px 0 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: var(--sand-700);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.empty-tip.show {
  display: block;
}

.top-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.top-rank-card {
  overflow: hidden;
}

.top-rank-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.top-rank-card div {
  padding: 20px;
}

.top-rank-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #ef4444, var(--dune-500));
  font-weight: 900;
}

.top-rank-card h2 {
  margin: 0 0 8px;
  color: var(--sand-900);
  font-size: 23px;
}

.top-rank-card p {
  margin: 0 0 12px;
  color: var(--sand-700);
}

.top-rank-card em {
  color: var(--sand-600);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.detail-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--sand-900);
}

.detail-hero > img,
.detail-hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-hero > img {
  object-fit: cover;
}

.detail-hero-layer {
  background:
    linear-gradient(90deg, rgba(36, 22, 8, 0.92), rgba(36, 22, 8, 0.58), rgba(36, 22, 8, 0.25)),
    linear-gradient(0deg, rgba(36, 22, 8, 0.9), transparent 70%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 70px;
}

.detail-kicker {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.detail-hero h1 {
  max-width: 900px;
  margin: 12px 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.12;
}

.detail-hero p {
  max-width: 820px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 360px;
  gap: 28px;
  align-items: start;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #120b05;
  box-shadow: var(--shadow-lg);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #120b05;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(0deg, rgba(18, 11, 5, 0.66), rgba(18, 11, 5, 0.26));
  cursor: pointer;
}

.player-shell.is-playing .player-start {
  display: none;
}

.player-start span {
  width: 82px;
  height: 82px;
  display: block;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.94);
  box-shadow: 0 20px 48px rgba(217, 119, 6, 0.28);
}

.player-start span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  margin-left: -8px;
  margin-top: -14px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--white);
  content: "";
}

.player-start strong {
  margin-top: 120px;
  position: absolute;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.detail-card,
.info-card {
  padding: 24px;
}

.detail-card h2,
.info-card h2 {
  margin: 0 0 14px;
  color: var(--sand-900);
  font-size: 24px;
}

.detail-card p {
  margin: 0;
  color: var(--sand-700);
  font-size: 17px;
}

.info-card dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.info-card dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand-100);
}

.info-card dt {
  color: var(--sand-600);
  font-weight: 800;
}

.info-card dd {
  margin: 0;
  color: var(--sand-900);
}

.related-list {
  display: grid;
  gap: 14px;
}

.related-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  align-items: center;
}

.related-card img {
  width: 116px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
}

.related-card strong {
  display: block;
  color: var(--sand-900);
  line-height: 1.35;
}

.related-card em {
  display: block;
  margin-top: 5px;
  color: var(--sand-600);
  font-size: 13px;
  font-style: normal;
}

.site-footer {
  margin-top: 44px;
  color: var(--sand-100);
  background: var(--sand-900);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

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

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

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

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

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

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

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 600px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 78px;
  }

  .movie-grid.four-col,
  .movie-grid.three-col,
  .category-grid,
  .category-panels,
  .top-rank-grid,
  .catalog-controls,
  .catalog-controls.wide,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section-container {
    width: min(100% - 24px, 1180px);
    padding: 42px 0;
  }

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

  .hero {
    min-height: 560px;
  }

  .hero h1,
  .detail-hero h1,
  .page-hero h1 {
    letter-spacing: -0.02em;
  }

  .search-row {
    display: grid;
  }

  .rail-item {
    flex-basis: 280px;
  }

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

  .category-panel-cover img {
    height: 96px;
  }

  .detail-hero {
    min-height: 480px;
  }

  .related-card {
    grid-template-columns: 96px 1fr;
  }

  .related-card img {
    width: 96px;
    height: 64px;
  }
}
