:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

body {
  min-height: 100vh;
  color: var(--slate-800);
  background: linear-gradient(180deg, var(--slate-50), var(--white));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500), var(--amber-600));
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.28);
}

.nav-shell {
  width: min(1280px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
}

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

.nav-links a:hover,
.mobile-panel a:hover {
  color: var(--amber-100);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-search input,
.mobile-search input,
.hero-search-panel input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate-800);
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.hero-search-panel input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  background: var(--white);
  border-color: var(--amber-400);
  box-shadow: 0 0 0 4px rgba(252, 211, 77, 0.28);
}

.nav-search input {
  width: 240px;
  padding: 10px 16px;
}

.nav-search button,
.mobile-search button,
.hero-search-panel button,
.primary-btn {
  border: 0;
  border-radius: 999px;
  color: var(--amber-700, #b45309);
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(120, 53, 15, 0.12);
}

.nav-search button {
  padding: 10px 18px;
}

.menu-toggle {
  display: none;
  color: var(--white);
  font-size: 28px;
}

.mobile-panel {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 12px;
}

.mobile-panel a {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-search {
  display: flex;
  gap: 8px;
}

.mobile-search input {
  min-width: 0;
  flex: 1;
  padding: 10px 16px;
}

.mobile-search button {
  padding: 10px 16px;
}

.hero-carousel {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

.hero-slides {
  position: relative;
  min-height: 76vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  filter: blur(18px) saturate(1.1);
  transform: scale(1.1);
  opacity: 0.46;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(245, 158, 11, 0.94), rgba(249, 115, 22, 0.86), rgba(15, 23, 42, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  align-items: center;
  gap: 52px;
  color: var(--white);
  padding: 74px 0 132px;
}

.hero-copy h1 {
  max-width: 840px;
  margin-top: 14px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.07em;
  text-shadow: 0 16px 32px rgba(120, 53, 15, 0.24);
}

.hero-copy p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.78;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #92400e;
  background: var(--amber-100);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.hero-copy .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

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

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

.hero-tags span,
.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.tag-row span {
  color: #92400e;
  background: var(--amber-50);
}

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

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

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.text-link:hover,
.movie-card:hover,
.category-tile:hover,
.overview-card:hover {
  transform: translateY(-3px);
}

.ghost-btn {
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.hero-poster {
  display: block;
  height: 560px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.38);
  transform: rotate(2deg);
}

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

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

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

.hero-search-panel {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 24px;
  width: min(980px, calc(100% - 32px));
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 20px 54px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hero-search-panel form {
  display: flex;
  gap: 10px;
}

.hero-search-panel input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
}

.hero-search-panel button {
  padding: 0 26px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.quick-links a {
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.section-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 64px auto 24px;
}

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

.section-shell h2,
.page-hero h1,
.detail-info h1 {
  margin-top: 12px;
  color: var(--slate-900);
  font-weight: 950;
  letter-spacing: -0.055em;
}

.section-shell h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.section-shell p,
.page-hero p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--slate-600);
  line-height: 1.8;
}

.section-more,
.text-link {
  color: #92400e;
  background: var(--amber-100);
}

.category-strip,
.movie-grid,
.overview-grid,
.rank-panel,
.ranking-table,
.related-grid {
  width: min(1280px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.82));
}

.category-tile span {
  position: absolute;
  z-index: 2;
  inset: auto 18px 18px;
}

.category-tile strong,
.footer-brand {
  display: block;
  font-size: 20px;
  font-weight: 950;
}

.category-tile em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

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

.home-grid {
  margin-top: 22px;
}

.movie-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  box-shadow: 0 28px 62px rgba(15, 23, 42, 0.14);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.poster-link img {
  transition: transform 0.35s ease;
}

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

.score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #78350f;
  background: var(--amber-300);
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(120, 53, 15, 0.18);
}

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

.movie-meta-line,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--slate-500);
  font-size: 13px;
}

.movie-card h2 {
  margin-top: 8px;
  color: var(--slate-900);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.28;
}

.movie-card h2 a:hover,
.footer-links a:hover,
.rank-row:hover .rank-name,
.ranking-line:hover strong {
  color: var(--amber-600);
}

.movie-card p {
  margin-top: 8px;
  min-height: 3.3em;
  color: var(--slate-600);
  line-height: 1.65;
}

.movie-card .tag-row {
  margin-top: 14px;
}

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

.rank-row,
.ranking-line {
  display: grid;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
}

.rank-row {
  grid-template-columns: 56px minmax(0, 1fr) minmax(140px, 260px);
  padding: 16px;
}

.rank-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #78350f;
  background: var(--amber-100);
  font-weight: 950;
}

.rank-name {
  min-width: 0;
  color: var(--slate-900);
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta {
  color: var(--slate-500);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-main,
.detail-main {
  padding: 42px 0 80px;
}

.page-hero {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 34px;
  padding: 52px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 18%, rgba(252, 211, 77, 0.5), transparent 28%),
    linear-gradient(135deg, var(--white), var(--amber-50));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: end;
}

.category-hero > .hero-mini-list {
  grid-column: 2;
  grid-row: 1 / span 3;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.12);
}

.mini-card img {
  width: 72px;
  height: 96px;
  border-radius: 14px;
}

.mini-card strong,
.mini-card em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card strong {
  color: var(--slate-900);
  font-weight: 900;
}

.mini-card em {
  margin-top: 8px;
  color: var(--slate-500);
  font-size: 13px;
}

.filter-panel {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.filter-panel label {
  color: var(--slate-700);
  font-weight: 900;
}

.filter-panel input {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
}

.filter-panel select {
  padding: 12px 16px;
}

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

.overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.overview-cover {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  overflow: hidden;
  border-radius: 24px;
}

.overview-cover img {
  min-height: 150px;
}

.overview-body h2 {
  margin-top: 14px;
  color: var(--slate-900);
  font-size: 30px;
  font-weight: 950;
}

.overview-body p {
  margin-top: 12px;
  color: var(--slate-600);
  line-height: 1.75;
}

.overview-body .text-link {
  margin-top: 18px;
}

.ranking-table {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.ranking-line {
  grid-template-columns: 64px minmax(0, 1fr) minmax(200px, 0.7fr) 70px;
  padding: 16px 18px;
}

.ranking-line span {
  color: var(--amber-600);
  font-weight: 950;
}

.ranking-line strong {
  color: var(--slate-900);
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-line em {
  color: var(--slate-500);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-line b {
  color: #78350f;
  text-align: right;
}

.breadcrumb {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--slate-500);
}

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

.detail-hero,
.detail-content,
.player-section,
.related-section {
  width: min(1280px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 84% 12%, rgba(245, 158, 11, 0.2), transparent 32%),
    var(--white);
  box-shadow: var(--shadow);
}

.detail-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 58px rgba(15, 23, 42, 0.2);
}

.detail-info h1 {
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.02;
}

.detail-one-line {
  margin-top: 20px;
  color: var(--slate-600);
  font-size: 20px;
  line-height: 1.8;
}

.detail-meta {
  margin-top: 22px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--slate-100);
}

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

.player-section {
  margin-top: 34px;
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 36px;
  background: #020617;
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.24);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.42));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-action {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #78350f;
  background: var(--amber-300);
  font-size: 34px;
  box-shadow: 0 20px 46px rgba(120, 53, 15, 0.32);
}

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

.detail-content article {
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.detail-content h2 {
  color: var(--slate-900);
  font-size: 28px;
  font-weight: 950;
}

.detail-content p {
  margin-top: 16px;
  color: var(--slate-600);
  font-size: 17px;
  line-height: 2;
}

.related-section {
  margin-top: 22px;
}

.compact-title {
  width: 100%;
}

.related-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.related-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.related-card img {
  aspect-ratio: 2 / 3;
}

.related-card span,
.related-card small {
  display: block;
  padding-left: 14px;
  padding-right: 14px;
}

.related-card span {
  padding-top: 14px;
  color: var(--slate-900);
  font-weight: 900;
}

.related-card small {
  padding-top: 6px;
  padding-bottom: 14px;
  color: var(--slate-500);
}

.site-footer {
  margin-top: 70px;
  color: var(--white);
  background: linear-gradient(180deg, var(--slate-900), #020617);
}

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

.footer-grid p {
  max-width: 520px;
  margin-top: 12px;
  color: var(--slate-400);
  line-height: 1.8;
}

.footer-grid h2 {
  color: var(--amber-300);
  font-size: 18px;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  color: var(--slate-400);
}

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 30px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--slate-400);
}

.hidden-card {
  display: none !important;
}

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

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

  .nav-search {
    display: none;
  }

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

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

@media (max-width: 860px) {
  .hero-content,
  .category-hero,
  .detail-hero,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 26px;
    padding-top: 46px;
    padding-bottom: 172px;
  }

  .hero-poster {
    display: none;
  }

  .hero-search-panel form,
  .filter-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .category-hero > .hero-mini-list {
    grid-column: auto;
    grid-row: auto;
  }

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

  .rank-panel,
  .ranking-line {
    grid-template-columns: 1fr;
  }

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

  .rank-meta {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    height: 64px;
  }

  .brand {
    font-size: 20px;
  }

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

  .page-hero,
  .detail-hero {
    padding: 24px;
    border-radius: 28px;
  }

  .category-strip,
  .movie-grid,
  .related-grid,
  .hero-mini-list {
    grid-template-columns: 1fr;
  }

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

  .overview-cover {
    min-height: 240px;
  }

  .section-split {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-card p {
    min-height: auto;
  }
}
