:root {
  --bg: #0f172a;
  --panel: #111827;
  --panel-soft: #1e293b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.18);
  --orange: #f97316;
  --red: #dc2626;
  --yellow: #facc15;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(249, 115, 22, 0.16), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(220, 38, 38, 0.14), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Microsoft YaHei",
    sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.3);
}

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

.nav-link,
.mobile-link {
  color: #cbd5e1;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
  padding: 9px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fff;
  background: rgba(249, 115, 22, 0.16);
}

.header-search {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.25);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.95);
}

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

.mobile-link {
  padding: 12px 14px;
}

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

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

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

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.35) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0) 38%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
}

.hero-bg.image-missing {
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.26), rgba(220, 38, 38, 0.22)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.2), transparent 24rem),
    #111827;
}

.hero-bg.image-missing::before,
.poster-wrap.image-missing::before,
.ranking-thumb.image-missing::before,
.category-cover.image-missing::before,
.category-overview-cover.image-missing::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  content: attr(data-title);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(220, 38, 38, 0.72)),
    #1e293b;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
}

.hero-content > * {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  color: #fed7aa;
  font-weight: 800;
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.hero-meta,
.movie-meta,
.detail-meta-grid,
.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-meta {
  margin: 28px 0;
}

.hero-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-btn,
.ghost-btn,
.panel-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 18px 35px rgba(220, 38, 38, 0.24);
}

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.primary-btn:hover,
.ghost-btn:hover,
.panel-more:hover,
.movie-card:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.hero-arrow--prev {
  left: 24px;
}

.hero-arrow--next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  bottom: 34px;
  left: 50%;
  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.45);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-search {
  position: relative;
  z-index: 8;
  margin-top: -48px;
}

.quick-search-box,
.filter-panel,
.search-page-panel,
.panel-section,
.ranking-panel,
.detail-article,
.detail-side,
.player-section,
.sitemap-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quick-search-box {
  padding: 22px;
}

.quick-search-box label {
  display: block;
  margin-bottom: 12px;
  color: #e2e8f0;
  font-weight: 900;
}

.quick-search-box div,
.filter-line,
.search-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-controls {
  grid-template-columns: 1fr 180px 160px;
}

.quick-search input,
.filter-panel input,
.search-page-panel input,
.filter-panel select,
.search-page-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  padding: 0 14px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
}

.quick-search button,
.search-hints button,
.chip-line button {
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  min-height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-weight: 900;
}

.content-section {
  padding: 58px 0 0;
}

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

.section-heading h2,
.ranking-panel h2,
.detail-article h2,
.detail-side h2,
.sitemap-section h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.section-heading p,
.ranking-panel p,
.page-hero p,
.category-overview-card p,
.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-heading a,
.panel-more,
.detail-side a {
  color: #fed7aa;
  font-weight: 900;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.movie-grid--mosaic .movie-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.82);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  border-color: rgba(249, 115, 22, 0.55);
}

.poster-wrap,
.detail-poster,
.ranking-thumb,
.category-cover,
.category-overview-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1e293b;
}

.poster-wrap {
  aspect-ratio: 2 / 3;
}

.poster-wrap img,
.detail-poster img,
.ranking-thumb img,
.category-cover img,
.category-overview-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-badge,
.play-chip {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
}

.poster-badge {
  top: 10px;
  left: 10px;
  min-height: 26px;
  padding: 0 10px;
  background: rgba(249, 115, 22, 0.9);
  font-size: 12px;
}

.play-chip {
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-line {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 8px 0 12px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  gap: 7px;
  margin-bottom: 10px;
  font-size: 12px;
}

.movie-meta span {
  min-height: 24px;
  padding: 2px 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
  font-size: 12px;
}

.movie-card--wide {
  display: grid;
  grid-template-columns: 130px 1fr;
}

.movie-card--wide .poster-wrap {
  height: 100%;
  min-height: 190px;
}

.movie-card--large .movie-title,
.movie-card--featured .movie-title {
  font-size: 20px;
}

.panel-section {
  padding: 30px;
  margin-top: 58px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.88), rgba(15, 23, 42, 0.84));
}

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

.category-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: rgba(249, 115, 22, 0.16);
  font-size: 24px;
}

.category-card strong {
  display: block;
  font-size: 22px;
}

.category-card em {
  display: block;
  color: #fed7aa;
  font-style: normal;
  font-weight: 900;
}

.category-card p {
  max-width: 78%;
  color: #cbd5e1;
}

.category-cover {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 130px;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  opacity: 0.52;
  transform: rotate(8deg);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.ranking-panel {
  align-self: start;
  padding: 24px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 42px 54px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.ranking-list--full .ranking-row {
  grid-template-columns: 54px 72px 1fr auto;
  padding: 16px;
}

.ranking-index {
  color: #fed7aa;
  font-weight: 900;
}

.ranking-thumb {
  width: 54px;
  aspect-ratio: 2 / 3;
  border-radius: 10px;
}

.ranking-list--full .ranking-thumb {
  width: 72px;
}

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

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

.ranking-score {
  color: var(--yellow);
  font-weight: 900;
}

.panel-more {
  width: 100%;
  margin-top: 18px;
  background: rgba(249, 115, 22, 0.12);
}

.horizontal-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-item {
  flex: 0 0 250px;
}

.page-main {
  padding: 48px 0 72px;
}

.page-hero {
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(220, 38, 38, 0.13)),
    rgba(17, 24, 39, 0.82);
  box-shadow: var(--shadow);
}

.page-hero--compact {
  padding: 42px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.78);
}

.category-overview-cover {
  aspect-ratio: 2 / 3;
  border-radius: 16px;
}

.category-overview-card h2 {
  margin: 0 0 8px;
}

.category-overview-card strong {
  color: #fed7aa;
}

.mini-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mini-link-list a {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
  font-size: 13px;
}

.filter-panel,
.search-page-panel {
  margin-top: 26px;
  padding: 20px;
}

.filter-line {
  grid-template-columns: 1fr 180px;
}

.chip-line,
.search-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip-line button,
.search-hints button {
  min-height: 34px;
  background: rgba(148, 163, 184, 0.14);
}

.chip-line button.is-active {
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.result-summary {
  margin-bottom: 20px;
  color: #cbd5e1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #cbd5e1;
}

.breadcrumb a {
  color: #fed7aa;
}

.detail-hero {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 34px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.detail-one-line {
  color: #cbd5e1;
  font-size: 18px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}

.detail-meta-grid span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.58);
  color: #e2e8f0;
}

.detail-meta-grid strong {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.tag-row--large span {
  min-height: 30px;
  padding: 4px 11px;
  font-size: 13px;
}

.detail-actions {
  margin-top: 28px;
}

.player-section {
  margin-top: 42px;
  padding: 24px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 45%, rgba(249, 115, 22, 0.26), transparent 18rem),
    rgba(0, 0, 0, 0.58);
}

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

.player-play-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-size: 28px;
}

.player-cover strong {
  font-size: clamp(22px, 4vw, 36px);
}

.player-cover em {
  color: #fed7aa;
  font-style: normal;
  font-weight: 900;
}

.player-status {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #cbd5e1;
  font-size: 12px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  margin-top: 34px;
}

.detail-article,
.detail-side {
  padding: 28px;
}

.detail-article p {
  color: #cbd5e1;
  font-size: 17px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px 14px;
}

.detail-side dt {
  color: var(--muted);
}

.detail-side dd {
  margin: 0;
}

.prev-next {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.ranking-list--full {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.72);
}

.sitemap-section {
  margin-top: 28px;
  padding: 26px;
}

.sitemap-section h2 {
  margin-top: 24px;
}

.sitemap-section h2:first-child {
  margin-top: 0;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.sitemap-links--pages {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sitemap-links a {
  overflow: hidden;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.11);
  color: #cbd5e1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.58);
}

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

.site-footer h3 {
  margin: 0 0 12px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.not-found-page .page-hero {
  text-align: center;
}

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

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

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

  .hero-arrow {
    display: none;
  }

  .quick-search-box div,
  .filter-line,
  .search-controls,
  .category-overview-grid,
  .detail-hero,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .movie-grid--five,
  .movie-grid--four,
  .movie-grid--three,
  .movie-grid--mosaic,
  .category-grid,
  .sitemap-links,
  .sitemap-links--pages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-grid--mosaic .movie-card:first-child {
    grid-column: span 2;
  }

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

  .page-hero,
  .page-hero--compact {
    padding: 30px 22px;
  }

  .category-overview-card {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 560px) {
  .movie-grid--five,
  .movie-grid--four,
  .movie-grid--three,
  .movie-grid--mosaic,
  .category-grid,
  .sitemap-links,
  .sitemap-links--pages {
    grid-template-columns: 1fr;
  }

  .movie-grid--mosaic .movie-card:first-child {
    grid-column: span 1;
  }

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

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

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

  .ranking-row,
  .ranking-list--full .ranking-row {
    grid-template-columns: 38px 50px 1fr;
  }

  .ranking-score {
    grid-column: 3;
  }
}
