:root {
  color-scheme: dark;
  --color-bg: #141618;
  --color-surface: #24272c;
  --color-surface-strong: #353940;
  --color-line: #464c56;
  --color-text: #ffffff;
  --color-muted: #a6adbb;
  --color-soft: #6b7280;
  --color-primary: #1890ff;
  --color-primary-light: #40a9ff;
  --color-secondary: #13c2c2;
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(24, 144, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(19, 194, 194, 0.14), transparent 30rem),
    var(--color-bg);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(36, 39, 44, 0.96);
  border-color: rgba(70, 76, 86, 0.75);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

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

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

.brand-icon,
.footer-logo span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 14px 36px rgba(24, 144, 255, 0.25);
}

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

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

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

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

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--color-primary-light);
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.menu-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  display: none;
  place-items: center;
  gap: 4px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 14px;
  border: 1px solid rgba(70, 76, 86, 0.75);
  border-radius: 18px;
  background: rgba(20, 22, 24, 0.96);
}

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

.mobile-nav a:hover {
  color: #ffffff;
  background: rgba(24, 144, 255, 0.14);
}

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

main {
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  padding: 96px 0 56px;
}

.hero-stage {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 72vh;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  background: #000000;
  box-shadow: var(--shadow-card);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: 44px;
  padding: clamp(28px, 6vw, 72px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: blur(4px) saturate(1.12);
  opacity: 0.58;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 22, 24, 0.96), rgba(20, 22, 24, 0.64) 48%, rgba(20, 22, 24, 0.25)),
    linear-gradient(0deg, rgba(20, 22, 24, 0.9), transparent 45%);
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(64, 169, 255, 0.35);
  border-radius: 999px;
  color: var(--color-primary-light);
  background: rgba(24, 144, 255, 0.12);
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(40px, 8vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 690px;
  margin: 0;
  color: #dbe4f0;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.8;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 18px 42px rgba(24, 144, 255, 0.32);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-poster {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  aspect-ratio: 3 / 4;
}

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

.hero-controls {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-controls button,
.hero-dot {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--color-primary-light);
}

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.search-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(70, 76, 86, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(36, 39, 44, 0.72);
  backdrop-filter: blur(16px);
}

.search-panel label {
  flex: 1;
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-size: 14px;
}

.search-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(70, 76, 86, 0.9);
  border-radius: 14px;
  outline: 0;
  color: #ffffff;
  background: rgba(20, 22, 24, 0.9);
  padding: 0 16px;
}

.search-panel input:focus {
  border-color: rgba(64, 169, 255, 0.85);
  box-shadow: 0 0 0 4px rgba(24, 144, 255, 0.14);
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-filters button,
.sibling-links a {
  border: 1px solid rgba(64, 169, 255, 0.24);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(24, 144, 255, 0.12);
  cursor: pointer;
  padding: 9px 13px;
}

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

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

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

.movie-card {
  border: 1px solid rgba(70, 76, 86, 0.65);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(36, 39, 44, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(64, 169, 255, 0.55);
  background: rgba(53, 57, 64, 0.94);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

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

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

.rating-badge,
.rank-mark {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #111827;
  background: #facc15;
  font-weight: 900;
}

.rating-badge {
  left: 12px;
}

.rank-mark {
  right: 12px;
  color: #ffffff;
  background: rgba(24, 144, 255, 0.9);
}

.movie-card-body {
  padding: 14px;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-topline a:hover,
.breadcrumb a:hover,
.info-panel a:hover {
  color: var(--color-primary-light);
}

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

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--color-soft);
  font-size: 13px;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  min-height: 24px;
  font-size: 12px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.07);
}

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

.category-tile,
.category-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(70, 76, 86, 0.66);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(36, 39, 44, 0.96), rgba(20, 22, 24, 0.86));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover,
.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(64, 169, 255, 0.55);
}

.category-covers,
.category-card-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  overflow: hidden;
}

.category-card-covers {
  grid-template-columns: repeat(6, 1fr);
}

.category-covers img,
.category-card-covers img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.category-tile strong,
.category-card h2 {
  font-size: 22px;
  margin: 0;
}

.category-tile span,
.category-card p {
  color: var(--color-muted);
  line-height: 1.7;
  font-size: 14px;
}

.page-main {
  padding-top: 96px;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 20px;
  min-height: 300px;
  border: 1px solid rgba(70, 76, 86, 0.65);
  border-radius: 32px;
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(24, 144, 255, 0.28), rgba(19, 194, 194, 0.12)),
    linear-gradient(145deg, rgba(36, 39, 44, 0.95), rgba(20, 22, 24, 0.82));
  box-shadow: var(--shadow-card);
}

.page-hero p {
  margin: 0 0 10px;
  color: var(--color-primary-light);
  font-weight: 800;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.page-hero span {
  display: block;
  max-width: 760px;
  color: #d1d5db;
  line-height: 1.8;
}

.sibling-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.rank-section {
  max-width: 960px;
}

.rank-list,
.side-related {
  display: grid;
  gap: 16px;
}

.rank-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(70, 76, 86, 0.65);
  border-radius: var(--radius-lg);
  background: rgba(36, 39, 44, 0.84);
}

.rank-cover {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

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

.rank-content {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 8px;
}

.rank-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.rank-topline b {
  color: var(--color-primary-light);
}

.rank-topline a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-topline span {
  margin-left: auto;
  color: #facc15;
}

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

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
}

.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
}

.detail-primary,
.detail-sidebar,
.info-panel,
.player-card,
.movie-detail-copy,
.side-related {
  min-width: 0;
}

.player-card,
.movie-detail-copy,
.info-panel,
.side-related {
  border: 1px solid rgba(70, 76, 86, 0.65);
  border-radius: var(--radius-xl);
  background: rgba(36, 39, 44, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.player-card {
  padding: 16px;
}

.player-shell {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000000;
}

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

.big-play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(24, 144, 255, 0.92), rgba(19, 194, 194, 0.92));
  box-shadow: 0 24px 70px rgba(24, 144, 255, 0.38);
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.big-play-button span {
  transform: translateX(4px);
  font-size: 36px;
}

.big-play-button:hover {
  transform: scale(1.06);
}

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

.movie-detail-copy {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.movie-detail-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-lead {
  margin: 0 0 20px;
  color: #dbe4f0;
  font-size: 18px;
  line-height: 1.8;
}

.movie-detail-copy h2,
.info-panel h2,
.side-related h2 {
  margin: 30px 0 12px;
  font-size: 24px;
}

.movie-detail-copy p {
  color: #d1d5db;
  line-height: 1.95;
}

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

.info-panel {
  padding: 18px;
  position: sticky;
  top: 96px;
}

.info-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.06);
}

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

.info-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(70, 76, 86, 0.55);
}

.info-panel dt {
  color: var(--color-muted);
}

.info-panel dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.side-related {
  margin-top: 22px;
  padding: 18px;
}

.side-related .rank-row {
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 0;
  border: 0;
  background: transparent;
}

.side-related .rank-cover {
  aspect-ratio: 16 / 10;
}

.side-related .rank-row p {
  display: none;
}

.related-section {
  padding-top: 58px;
}

[data-movie-card].is-hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.movie-card,
.rank-row,
.category-tile,
.category-card {
  animation: fadeIn 0.45s ease both;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid rgba(70, 76, 86, 0.7);
  background: rgba(20, 22, 24, 0.92);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 22px;
}

.footer-brand p,
.site-footer li,
.site-footer a {
  color: var(--color-muted);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.site-footer a:hover {
  color: var(--color-primary-light);
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--color-soft);
  border-top: 1px solid rgba(70, 76, 86, 0.52);
}

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

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

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
  }

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

  .detail-sidebar {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
  }

  .info-panel {
    position: static;
  }

  .side-related {
    margin-top: 0;
  }
}

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

  .menu-button {
    display: grid;
  }

  .brand-text small {
    display: none;
  }

  .header-inner {
    height: 68px;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 24px;
    padding: 28px;
  }

  .hero-poster {
    width: min(62vw, 260px);
    grid-row: 1;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-controls {
    right: 20px;
    bottom: 20px;
  }

  .hero-dots {
    left: 20px;
    bottom: 32px;
  }

  .section-heading,
  .search-panel {
    display: grid;
    align-items: start;
  }

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

  .movie-card-body {
    padding: 12px;
  }

  .movie-card p,
  .tag-row {
    display: none;
  }

  .page-main {
    padding-top: 84px;
  }

  .page-hero {
    min-height: 240px;
    border-radius: 24px;
  }

  .rank-row {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-row p {
    display: none;
  }

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

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

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

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

  .hero-poster {
    width: min(74vw, 280px);
  }
}
