* {
  box-sizing: border-box;
}

:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --orange-50: #fff7ed;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(41, 37, 36, 0.12);
  --shadow-card: 0 12px 30px rgba(41, 37, 36, 0.10);
  --radius-xl: 1rem;
  --radius-2xl: 1.35rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-800);
  background: linear-gradient(135deg, var(--amber-50), var(--stone-50) 46%, var(--orange-50));
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(231, 229, 228, 0.85);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--stone-900);
  white-space: nowrap;
}

.site-logo__mark {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.75rem;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.30);
}

.site-logo--footer {
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.site-nav a,
.mobile-nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 0.8rem;
  color: var(--stone-600);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--amber-700);
  background: var(--amber-50);
}

.header-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--stone-200);
  background: var(--white);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(41, 37, 36, 0.06);
}

.header-search input {
  width: 13rem;
  border: 0;
  outline: 0;
  padding: 0.65rem 0.95rem;
  color: var(--stone-800);
}

.header-search button,
.search-panel button,
.hero-search-panel button {
  border: 0;
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  padding: 0.7rem 1rem;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 0.8rem;
  color: var(--stone-800);
  background: var(--amber-100);
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.hero-carousel {
  position: relative;
  min-height: 560px;
  height: 72vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--stone-900), #451a03);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: -24px;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.44);
  transform: scale(1.08);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 40%, rgba(245, 158, 11, 0.34), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 55%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1rem 9rem;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  color: #fde68a;
  background: rgba(217, 119, 6, 0.20);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-slide h1,
.hero-slide h2 {
  max-width: 760px;
  margin: 1.2rem 0 1rem;
  color: var(--white);
  font-size: clamp(2.6rem, 7vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  color: var(--stone-200);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-tags span {
  padding: 0.25rem 0.55rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.82rem;
}

.hero-slide p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  padding: 0.92rem 1.35rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 16px 34px rgba(234, 88, 12, 0.32);
}

.button--glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.hero-search-panel {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  z-index: 4;
  transform: translateX(-50%);
  width: min(92vw, 1000px);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.25rem;
  background: rgba(28, 25, 23, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-search-panel form,
.search-panel {
  display: flex;
  gap: 0.7rem;
}

.hero-search-panel input,
.search-panel input {
  flex: 1;
  border: 0;
  border-radius: 0.9rem;
  outline: 0;
  padding: 0.95rem 1rem;
  color: var(--stone-900);
  background: var(--white);
}

.hero-search-panel button,
.search-panel button {
  border-radius: 0.9rem;
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.hero-category-links a {
  padding: 0.45rem 0.72rem;
  color: #fde68a;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-controls {
  position: absolute;
  right: 1.4rem;
  bottom: 2.8rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

.hero-prev,
.hero-next {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.8rem;
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
}

.hero-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dot.active {
  width: 1.9rem;
  background: var(--amber-500);
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.content-section--warm,
.content-section--white {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

.content-section--warm {
  background: linear-gradient(135deg, var(--amber-50), var(--orange-50));
}

.content-section--white {
  background: var(--white);
}

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

.section-heading__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-heading__icon {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.85rem;
  color: var(--amber-700);
  background: var(--amber-100);
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  color: var(--stone-800);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  letter-spacing: -0.04em;
}

.section-heading > span {
  color: var(--stone-500);
  font-weight: 700;
}

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

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

.movie-card {
  min-width: 0;
}

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

.movie-card__link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(231, 229, 228, 0.72);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(41, 37, 36, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card__link:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 119, 6, 0.28);
  box-shadow: 0 24px 50px rgba(41, 37, 36, 0.14);
}

.movie-card__poster {
  position: relative;
  min-height: 13.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.28), transparent 32%),
    linear-gradient(135deg, var(--stone-200), var(--amber-100));
}

.movie-card--small .movie-card__poster {
  min-height: 11rem;
}

.movie-card--large .movie-card__poster {
  min-height: 17rem;
}

.movie-card__poster img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.movie-card__link:hover .movie-card__poster img {
  transform: scale(1.08);
}

.image-missing {
  opacity: 0;
}

.movie-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card__link:hover .movie-card__poster::after {
  opacity: 1;
}

.movie-card__badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  border-radius: 0.55rem;
  padding: 0.32rem 0.55rem;
  color: var(--white);
  background: var(--amber-500);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.movie-card__tags {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.movie-card__tags span {
  border-radius: 0.45rem;
  padding: 0.25rem 0.45rem;
  color: var(--stone-700);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.movie-card__body {
  padding: 1rem;
}

.movie-card__body h3 {
  margin: 0 0 0.5rem;
  color: var(--stone-800);
  font-size: 1rem;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.movie-card__link:hover h3 {
  color: var(--amber-700);
}

.movie-card__meta {
  margin: 0 0 0.65rem;
  color: var(--stone-500);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-card__desc {
  display: -webkit-box;
  min-height: 2.7rem;
  margin: 0;
  color: var(--stone-600);
  font-size: 0.85rem;
  line-height: 1.58;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card__foot {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--stone-100);
  color: var(--stone-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.movie-card__foot span:last-child {
  color: var(--amber-700);
}

.category-blocks {
  display: grid;
  gap: 2.5rem;
}

.category-blocks h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--stone-700);
  font-size: 1.25rem;
}

.category-blocks h3 span {
  width: 0.32rem;
  height: 1.8rem;
  border-radius: 999px;
  background: var(--amber-600);
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 26%, rgba(245, 158, 11, 0.34), transparent 34%),
    linear-gradient(135deg, var(--stone-900), #451a03 52%, var(--stone-900));
}

.page-hero--compact {
  padding: 4.6rem 1rem 4rem;
}

.page-hero > div {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  color: var(--amber-100);
}

.page-hero h1 {
  max-width: 900px;
  margin: 1rem 0 1rem;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-hero p:not(.eyebrow) {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--stone-200);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.toolbar label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--stone-600);
  font-weight: 800;
}

.toolbar input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--stone-200);
  border-radius: 0.8rem;
  padding: 0.85rem 1rem;
  outline: 0;
}

.toolbar-link {
  color: var(--amber-700);
  font-weight: 900;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 2.4rem;
}

.pagination a {
  min-width: 2.4rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--stone-200);
  border-radius: 0.75rem;
  background: var(--white);
  color: var(--stone-700);
  text-align: center;
  font-weight: 800;
}

.pagination a:hover,
.pagination a.active {
  color: var(--white);
  background: var(--amber-600);
  border-color: var(--amber-600);
}

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

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

.category-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-xl);
  color: var(--stone-800);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(41, 37, 36, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(41, 37, 36, 0.12);
}

.category-tile span {
  font-weight: 900;
}

.category-tile b {
  color: var(--amber-700);
}

.detail-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: var(--stone-500);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.78fr);
  gap: 2rem;
}

.detail-main {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: var(--shadow-soft);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  color: var(--white);
  background: transparent;
  padding: 0;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58);
}

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  font-size: 2rem;
  padding-left: 0.2rem;
}

.play-title {
  position: absolute;
  left: 50%;
  top: calc(50% + 3.4rem);
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.player-shell.is-playing .player-cover {
  display: none;
}

.detail-card,
.detail-side__card {
  margin-top: 1.4rem;
  border: 1px solid rgba(231, 229, 228, 0.82);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.detail-card {
  padding: clamp(1.3rem, 4vw, 2rem);
}

.detail-card h1 {
  margin: 0 0 0.8rem;
  color: var(--stone-800);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.detail-card h2 {
  margin: 1.6rem 0 0.65rem;
  color: var(--stone-800);
  font-size: 1.25rem;
}

.detail-card p {
  margin: 0;
  color: var(--stone-700);
  line-height: 1.9;
}

.lead-text {
  font-weight: 800;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  color: var(--stone-600);
  font-weight: 800;
}

.detail-meta span {
  border-radius: 0.7rem;
  padding: 0.4rem 0.65rem;
  background: var(--stone-100);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--stone-100);
}

.tag-list span {
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--amber-700);
  background: var(--amber-100);
  font-size: 0.86rem;
  font-weight: 800;
}

.detail-side__card {
  position: sticky;
  top: 5.5rem;
  padding: 1rem;
}

.detail-side__card img {
  width: 100%;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--stone-200), var(--amber-100));
}

.detail-side__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--stone-100);
  color: var(--stone-500);
  font-size: 0.92rem;
}

.detail-side__row:last-child {
  border-bottom: 0;
}

.detail-side__row b {
  color: var(--stone-800);
  text-align: right;
}

.search-page {
  min-height: 460px;
}

.search-panel {
  margin-bottom: 1.5rem;
}

.site-footer {
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.76);
  background: var(--stone-900);
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.4rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer p {
  max-width: 520px;
  margin: 0.8rem 0 0;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--amber-200);
}

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

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

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

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

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

  .detail-side__card {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-carousel {
    height: auto;
    min-height: 760px;
  }

  .hero-slide__content {
    padding: 4rem 1rem 18rem;
  }

  .hero-search-panel {
    bottom: 5.6rem;
  }

  .hero-search-panel form,
  .search-panel {
    flex-direction: column;
  }

  .hero-controls {
    left: 1rem;
    right: auto;
    bottom: 1.8rem;
  }

  .section-heading,
  .toolbar,
  .site-footer__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar label {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .movie-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

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

  .movie-card__poster {
    min-height: 10.5rem;
  }

  .movie-card__body {
    padding: 0.85rem;
  }

  .movie-card__desc {
    min-height: 2.45rem;
  }

  .page-hero--compact {
    padding-top: 3.2rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .hero-slide h1,
  .hero-slide h2 {
    font-size: 2.55rem;
  }
}
