:root {
  --color-page: #f8fafc;
  --color-surface: #ffffff;
  --color-ink: #0f172a;
  --color-muted: #64748b;
  --color-line: #e2e8f0;
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-soft: #dbeafe;
  --color-gold: #facc15;
  --color-slate-900: #0f172a;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78));
  color: #ffffff;
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-ink);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.logo-title {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.logo-subtitle {
  color: currentColor;
  opacity: 0.68;
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: currentColor;
  opacity: 0.86;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
  opacity: 1;
}

.header-search {
  display: flex;
  align-items: center;
  width: min(240px, 24vw);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.site-header.is-scrolled .header-search,
.site-header.header-solid .header-search {
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: currentColor;
  background: transparent;
  padding: 9px 12px 9px 16px;
  font-size: 14px;
}

.header-search input::placeholder {
  color: currentColor;
  opacity: 0.52;
}

.header-search button {
  border: 0;
  color: #ffffff;
  background: var(--color-primary);
  padding: 9px 13px;
  cursor: pointer;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.13);
  color: currentColor;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 900;
}

.mobile-panel {
  display: none;
  padding: 0 24px 18px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-ink);
  border-top: 1px solid var(--color-line);
}

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

.mobile-panel .nav-link {
  display: flex;
  margin: 6px 0;
  justify-content: space-between;
}

.page-main {
  min-height: 62vh;
}

.hero {
  position: relative;
  min-height: 620px;
  height: 78vh;
  max-height: 760px;
  overflow: hidden;
  background: var(--color-slate-900);
  color: #ffffff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-image {
  transform: scale(1.09);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 28%, rgba(37, 99, 235, 0.36), transparent 34%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.72) 46%, rgba(15, 23, 42, 0.42)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: inherit;
  height: 100%;
  padding: 120px 24px 88px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(660px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 950;
  text-wrap: balance;
}

.hero-desc {
  max-width: 760px;
  margin: 0 0 26px;
  color: #dbeafe;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.pill.primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button.primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.34);
}

.button.primary:hover {
  background: var(--color-primary-dark);
}

.button.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.05);
}

.hero-control.prev {
  left: 22px;
  transform: translateY(-50%);
}

.hero-control.next {
  right: 22px;
  transform: translateY(-50%);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 54px 24px;
}

.section.compact {
  padding-top: 34px;
  padding-bottom: 34px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 26px;
}

.section-kicker {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin: 0 0 6px;
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.section-desc {
  margin: 8px 0 0;
  color: var(--color-muted);
  max-width: 760px;
}

.more-link {
  color: var(--color-primary);
  font-weight: 900;
  white-space: nowrap;
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(37, 99, 235, 0.32);
}

.poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

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

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

.poster:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
  opacity: 0.86;
}

.badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(37, 99, 235, 0.92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.poster-meta {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

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

.card-title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.38;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card:hover .card-title {
  color: var(--color-primary);
}

.card-desc {
  margin: 0 0 12px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.tag {
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 750;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  border-radius: var(--radius-xl);
  padding: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #ffffff, #eff6ff);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.category-card:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -48px;
  top: -48px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.11);
}

.category-card h2,
.category-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.category-card p {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 14px;
}

.category-count {
  margin-top: auto;
  color: var(--color-primary);
  font-weight: 900;
}

.page-hero {
  padding: 132px 24px 62px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.5), transparent 32%),
    linear-gradient(135deg, #1e3a8a, #0f172a 70%);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

.page-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.page-desc {
  margin: 0;
  max-width: 800px;
  color: #dbeafe;
  font-size: 17px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(140px, 0.5fr));
  gap: 12px;
  margin: 0 0 28px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  outline: none;
  background: #f8fafc;
  color: var(--color-ink);
  padding: 0 13px;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.13);
}

.result-count {
  margin: -12px 0 20px;
  color: var(--color-muted);
  font-weight: 800;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 70px 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-weight: 950;
  font-size: 18px;
}

.rank-poster {
  width: 94px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  object-fit: cover;
  background: #111827;
}

.rank-info h2,
.rank-info h3 {
  margin: 0 0 7px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 950;
}

.rank-info p {
  margin: 0;
  color: var(--color-muted);
}

.rank-button {
  color: #ffffff;
  background: var(--color-primary);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
}

.detail-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px 24px 60px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 30px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #020617;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.35);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.22), rgba(2, 6, 23, 0.48)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.72));
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-icon {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.95);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.45);
}

.play-icon:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #ffffff;
  margin-left: 7px;
}

.detail-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
}

.detail-one-line {
  margin: 0 0 18px;
  color: #334155;
  font-size: 17px;
  font-weight: 750;
}

.content-panel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.article-block,
.sidebar-block {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}

.article-block h2,
.sidebar-block h2,
.sidebar-block h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.article-block p {
  margin: 0 0 18px;
  color: #334155;
}

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

.related-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.related-item:hover {
  background: #f1f5f9;
}

.related-item img {
  width: 58px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 11px;
  background: #111827;
}

.related-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.related-item span {
  color: var(--color-muted);
  font-size: 12px;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.inline-list a {
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 13px;
}

.sitemap-list {
  columns: 4 220px;
  column-gap: 28px;
}

.sitemap-list a {
  display: block;
  break-inside: avoid;
  padding: 7px 0;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
}

.sitemap-list a:hover {
  color: var(--color-primary);
}

.site-footer {
  margin-top: 40px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}

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

.footer-title {
  color: #ffffff;
  font-weight: 950;
  font-size: 20px;
}

.footer-text {
  margin: 0;
  color: #94a3b8;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 15px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 14px;
}

.footer-links a:hover {
  color: #60a5fa;
}

.no-results {
  display: none;
  padding: 34px;
  text-align: center;
  color: var(--color-muted);
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

.no-results.is-visible {
  display: block;
}

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

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

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

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

  .detail-hero,
  .content-panel {
    grid-template-columns: 1fr;
  }

  .sidebar-block {
    order: 2;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .logo-title {
    font-size: 17px;
  }

  .logo-subtitle {
    display: none;
  }

  .hero {
    min-height: 560px;
    height: auto;
  }

  .hero-content {
    padding: 110px 18px 76px;
  }

  .hero-control {
    display: none;
  }

  .section {
    padding: 40px 16px;
  }

  .section-head {
    display: block;
  }

  .more-link {
    display: inline-block;
    margin-top: 12px;
  }

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

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

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

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

  .rank-button {
    grid-column: 2 / -1;
    text-align: center;
  }

  .rank-number {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .rank-poster {
    width: 82px;
  }

  .detail-wrap {
    padding: 88px 16px 40px;
  }

  .detail-card,
  .article-block,
  .sidebar-block {
    padding: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 38px 18px;
  }
}

@media (max-width: 420px) {
  .movie-grid,
  .movie-grid.wide {
    grid-template-columns: 1fr;
  }
}
