:root {
  --autumn-50: #fff7ed;
  --autumn-100: #ffedd5;
  --autumn-200: #fed7aa;
  --autumn-400: #fb923c;
  --autumn-500: #f97316;
  --autumn-600: #ea580c;
  --autumn-700: #c2410c;
  --autumn-800: #9a3412;
  --leaf-100: #fef9c3;
  --leaf-200: #fef08a;
  --leaf-400: #facc15;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-md: 0 4px 12px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 18px 45px rgba(17, 24, 39, 0.14);
  --shadow-xl: 0 28px 80px rgba(154, 52, 18, 0.22);
  --radius: 18px;
  --gradient: linear-gradient(135deg, #f97316, #ea580c 48%, #fb923c);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--autumn-50), #ffffff 42%, #ffffff);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  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.92);
  border-bottom: 1px solid rgba(254, 215, 170, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(154, 52, 18, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark,
.footer-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.32);
}

.brand-text strong {
  display: block;
  color: var(--autumn-700);
  font-size: 22px;
  line-height: 1.1;
}

.brand-text small {
  display: block;
  color: var(--autumn-500);
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 14px;
  color: var(--gray-700);
  font-weight: 700;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--autumn-700);
  background: var(--autumn-100);
}

.header-search,
.mobile-search,
.hero-search,
.inline-filter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.inline-filter input {
  min-width: 0;
  border: 2px solid var(--autumn-200);
  outline: none;
  border-radius: 999px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-800);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 210px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.inline-filter input:focus {
  border-color: var(--autumn-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.header-search button,
.mobile-search button,
.hero-search button,
.inline-filter button {
  border: 0;
  color: #ffffff;
  background: var(--autumn-600);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.inline-filter button:hover {
  background: var(--autumn-700);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--autumn-700);
  background: var(--autumn-100);
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 22px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid var(--autumn-100);
}

.mobile-brand {
  margin: 12px 0;
  color: var(--autumn-700);
  font-weight: 900;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search input {
  flex: 1;
}

.hero-section {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
  background: var(--gradient);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.38), transparent 24%), radial-gradient(circle at 82% 14%, rgba(254, 240, 138, 0.32), transparent 22%), radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.24), transparent 30%);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 640px;
  padding: 54px 0 44px;
}

.hero-carousel {
  position: relative;
}

.hero-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
}

.hero-slide.is-active {
  display: flex;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--leaf-200);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--autumn-100);
  font-size: clamp(18px, 2vw, 24px);
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--autumn-800);
  background: var(--autumn-100);
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

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

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

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--autumn-700);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(154, 52, 18, 0.18);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
}

.hero-poster {
  position: relative;
  display: block;
  flex: 0 0 min(36vw, 360px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.24);
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
}

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

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-play,
.play-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--autumn-600);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(154, 52, 18, 0.34);
}

.hero-play {
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  font-size: 28px;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 28px;
}

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

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

.hero-dot.is-active {
  width: 42px;
  background: #ffffff;
}

.hero-search {
  width: min(720px, 100%);
  margin-top: 34px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-search input {
  flex: 1;
  border: 0;
  padding-left: 22px;
}

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

.raised-block {
  padding: 46px;
  background: #ffffff;
  border: 1px solid var(--autumn-100);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

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

.section-heading h2,
.channel-nav h2,
.related-panel h2,
.detail-article h2,
.site-footer h2 {
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 950;
}

.section-heading p,
.page-hero p,
.site-footer p {
  margin: 0;
  color: var(--gray-600);
}

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

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

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--autumn-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
  border-color: var(--autumn-200);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--autumn-100);
}

.poster img,
.list-cover img,
.rank-cover img,
.compact-card img,
.category-card img,
.detail-cover img,
.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster img {
  transition: transform 0.45s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72));
}

.play-chip {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-chip {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.duration-pill {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 3px 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  padding: 18px;
}

.card-meta,
.rank-meta {
  margin-bottom: 8px;
  color: var(--autumn-600);
  font-size: 13px;
  font-weight: 900;
}

.movie-card h2,
.rank-item h2 {
  margin: 0 0 10px;
  color: var(--gray-900);
  font-size: 20px;
  line-height: 1.25;
}

.movie-card h2 a:hover,
.rank-item h2 a:hover,
.compact-card:hover strong {
  color: var(--autumn-700);
}

.movie-card p,
.rank-item p {
  display: -webkit-box;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.list-stack {
  display: grid;
  gap: 18px;
}

.movie-card-list {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}

.list-cover {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  background: var(--autumn-100);
}

.list-body {
  padding: 22px;
}

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

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

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 0.45s ease;
}

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

.category-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(154, 52, 18, 0.86));
}

.category-content {
  position: absolute;
  inset: auto 18px 18px;
  color: #ffffff;
}

.category-content strong {
  display: block;
  font-size: 24px;
  font-weight: 950;
}

.category-content em {
  display: -webkit-box;
  margin-top: 6px;
  overflow: hidden;
  color: var(--autumn-100);
  font-style: normal;
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--gradient);
}

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

.page-hero h1 {
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 780px;
  color: var(--autumn-100);
  font-size: 18px;
}

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

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

.inline-filter {
  width: min(720px, 100%);
  margin-top: 28px;
}

.inline-filter input {
  flex: 1;
}

.empty-state {
  display: none;
  margin: 28px 0;
  padding: 28px;
  text-align: center;
  color: var(--gray-600);
  background: #ffffff;
  border: 1px solid var(--autumn-100);
  border-radius: var(--radius);
}

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

.channel-nav {
  margin-bottom: 60px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--autumn-100);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.channel-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.channel-nav a {
  padding: 9px 13px;
  color: var(--autumn-700);
  background: var(--autumn-100);
  border-radius: 999px;
  font-weight: 900;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #ffffff;
  background: var(--gradient);
  border-radius: 18px;
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.24);
}

.rank-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--autumn-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.rank-cover {
  min-height: 110px;
  background: var(--autumn-100);
}

.rank-body {
  padding: 18px;
}

.detail-hero {
  min-height: 560px;
  background: #111827;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  filter: blur(5px);
  transform: scale(1.04);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(154, 52, 18, 0.7));
}

.detail-hero-inner {
  position: relative;
  padding: 58px 0 76px;
}

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

.detail-cover {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 8px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
}

.detail-info h1 {
  margin-bottom: 20px;
}

.detail-one-line {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--autumn-100);
  font-size: 20px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 8px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 900;
}

.detail-tags {
  margin-bottom: 28px;
}

.player-section {
  margin-top: -68px;
  position: relative;
  z-index: 2;
}

.movie-player {
  position: relative;
  overflow: hidden;
  background: #000000;
  border: 10px solid #ffffff;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
  cursor: pointer;
}

.player-start span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  background: var(--autumn-600);
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-start:hover span {
  background: var(--autumn-700);
  transform: scale(1.08);
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  padding: 54px 0 78px;
}

.detail-article,
.related-panel {
  background: #ffffff;
  border: 1px solid var(--autumn-100);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.detail-article {
  padding: 34px;
}

.detail-article h2,
.related-panel h2 {
  font-size: 26px;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: 17px;
}

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

.info-list div {
  padding: 14px;
  background: var(--autumn-50);
  border-radius: 14px;
}

.info-list dt {
  color: var(--autumn-700);
  font-size: 13px;
  font-weight: 900;
}

.info-list dd {
  margin: 2px 0 0;
  color: var(--gray-800);
  font-weight: 800;
}

.related-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 22px;
}

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

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

.compact-card img {
  aspect-ratio: 16 / 10;
  background: var(--autumn-100);
  border-radius: 12px;
}

.compact-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 15px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact-card em {
  display: block;
  margin-top: 5px;
  color: var(--gray-500);
  font-style: normal;
  font-size: 12px;
}

.site-footer {
  margin-top: 30px;
  background: linear-gradient(180deg, var(--autumn-50), var(--autumn-100));
  border-top: 1px solid var(--autumn-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  padding: 46px 0 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--autumn-700);
  font-size: 22px;
  font-weight: 950;
}

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

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

.site-footer a {
  color: var(--gray-600);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--autumn-700);
}

.footer-bottom {
  padding: 18px;
  text-align: center;
  color: var(--gray-600);
  border-top: 1px solid rgba(254, 215, 170, 0.85);
}

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

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

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open .mobile-panel {
    display: block;
  }

  .hero-slide {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-poster {
    flex: none;
    width: min(320px, 100%);
  }

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

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

  .detail-cover {
    max-width: 300px;
  }

  .related-panel {
    position: static;
  }

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

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

  .header-inner {
    min-height: 66px;
  }

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

  .hero-section,
  .hero-inner {
    min-height: 720px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 38px;
  }

  .hero-search,
  .inline-filter,
  .mobile-search {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

  .hero-search input,
  .inline-filter input,
  .mobile-search input {
    width: 100%;
  }

  .featured-grid,
  .movie-grid,
  .category-movie-grid,
  .category-grid,
  .category-grid.wide {
    grid-template-columns: 1fr;
  }

  .raised-block {
    padding: 26px 18px;
  }

  .movie-card-list,
  .rank-item,
  .rank-row {
    grid-template-columns: 1fr;
  }

  .rank-number {
    width: 44px;
    height: 44px;
  }

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

  .detail-hero-inner {
    padding: 34px 0 86px;
  }

  .detail-article {
    padding: 24px;
  }

  .info-list {
    grid-template-columns: 1fr;
  }
}
