:root {
  --amber-50: #fff7ed;
  --amber-100: #ffedd5;
  --amber-200: #fed7aa;
  --amber-300: #fdba74;
  --amber-400: #fb923c;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-900: #7c2d12;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(146, 64, 14, 0.16);
  --shadow: 0 24px 60px rgba(120, 53, 15, 0.16);
  --shadow-soft: 0 12px 34px rgba(120, 53, 15, 0.12);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 45%, #fff7ed 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--amber-800), var(--orange-700), var(--amber-900));
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.28);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff7ed;
  min-width: 190px;
}

.brand-icon,
.footer-brand span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  color: var(--amber-900);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.brand-text small {
  color: var(--amber-200);
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  color: var(--amber-50);
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--amber-200);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.header-search {
  position: relative;
  width: 260px;
}

.header-search input,
.mobile-search input,
.filter-input,
.filter-select,
.search-main input {
  width: 100%;
  border: 1px solid rgba(253, 186, 116, 0.45);
  border-radius: 999px;
  outline: 0;
  color: #fff7ed;
  background: rgba(120, 53, 15, 0.45);
  padding: 11px 46px 11px 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: #fed7aa;
}

.header-search input:focus,
.mobile-search input:focus {
  border-color: #fed7aa;
  box-shadow: 0 0 0 4px rgba(253, 186, 116, 0.22);
  background: rgba(120, 53, 15, 0.62);
}

.header-search button {
  position: absolute;
  right: 5px;
  top: 5px;
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--amber-900);
  background: var(--amber-100);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  color: var(--amber-50);
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 18px;
}

.mobile-panel.is-open {
  display: grid;
  gap: 14px;
}

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

.mobile-search button,
.search-main button,
.btn-primary,
.btn-secondary,
.section-more,
.player-play-button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mobile-search button,
.search-main button,
.btn-primary {
  color: white;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 16px 32px rgba(217, 119, 6, 0.26);
}

.mobile-search button:hover,
.search-main button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.section-more:hover,
.player-play-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 38px rgba(120, 53, 15, 0.22);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--amber-900);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.68) saturate(1.05);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(251, 146, 60, 0.38), transparent 36%),
    linear-gradient(180deg, rgba(120, 53, 15, 0.48), rgba(124, 45, 18, 0.52) 42%, #fff7ed 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 680px;
  padding: 72px 20px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  align-items: center;
  gap: 46px;
}

.hero-copy {
  color: var(--amber-50);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 237, 213, 0.48);
  border-radius: 999px;
  background: rgba(120, 53, 15, 0.38);
  backdrop-filter: blur(12px);
  color: var(--amber-100);
  font-weight: 750;
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
}

.hero p {
  max-width: 680px;
  margin: 0 0 26px;
  color: var(--amber-100);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
}

.btn-secondary {
  color: var(--amber-900);
  background: rgba(255, 247, 237, 0.92);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.movie-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: var(--amber-50);
  border: 1px solid rgba(255, 237, 213, 0.42);
  background: rgba(120, 53, 15, 0.32);
  backdrop-filter: blur(10px);
}

.hero-poster {
  border-radius: 30px;
  padding: 14px;
  background: rgba(255, 247, 237, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-poster img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 237, 213, 0.38);
  border-radius: 999px;
  background: rgba(120, 53, 15, 0.42);
  backdrop-filter: blur(14px);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 237, 213, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

main {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-section,
.page-section {
  padding: 70px 0;
}

.home-section.tight,
.page-section.tight {
  padding-top: 36px;
}

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

.section-heading h2 {
  margin: 0 0 8px;
  color: var(--amber-900);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--amber-700);
  font-size: 17px;
}

.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--amber-50);
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
}

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 237, 213, 0.9);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(120, 53, 15, 0.20);
}

.movie-cover {
  position: relative;
  height: 250px;
  display: block;
  overflow: hidden;
  background: var(--amber-100);
}

.compact-card .movie-cover {
  height: 190px;
}

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

.movie-card:hover .movie-cover img,
.related-card:hover img,
.category-card:hover img {
  transform: scale(1.08);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(80, 32, 10, 0.72));
}

.year-badge,
.rank-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  min-width: 54px;
  text-align: center;
  color: #fff;
  background: rgba(217, 119, 6, 0.94);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.rank-badge {
  left: 14px;
  right: auto;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.movie-info {
  padding: 18px;
}

.movie-info h3 {
  margin: 0 0 8px;
  color: var(--amber-900);
  font-size: 20px;
  line-height: 1.25;
}

.movie-info h3 a:hover {
  color: var(--orange-700);
}

.movie-genre,
.movie-line {
  margin: 0;
}

.movie-genre {
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-line {
  margin-top: 9px;
  min-height: 48px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-meta {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.movie-meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--amber-500);
}

.movie-tags,
.detail-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-tags span,
.detail-tags span {
  color: var(--amber-800);
  background: linear-gradient(135deg, var(--amber-100), #ffedd5);
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 26px;
  color: #fff7ed;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--amber-700), var(--orange-700));
  box-shadow: var(--shadow-soft);
}

.category-tile::before,
.stats-band::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  right: -70px;
  top: -70px;
  filter: blur(1px);
}

.category-tile h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 26px;
}

.category-tile p {
  position: relative;
  margin: 0 0 24px;
  color: var(--amber-100);
  line-height: 1.7;
}

.category-tile span {
  position: relative;
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--amber-900);
  background: var(--amber-100);
  font-weight: 850;
}

.stats-band {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  color: #fff7ed;
  background: linear-gradient(90deg, var(--amber-800), var(--orange-700), var(--amber-900));
}

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

.stat-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 237, 213, 0.22);
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.stat-card span {
  color: var(--amber-100);
}

.page-hero {
  padding: 74px 0;
  color: #fff7ed;
  background:
    radial-gradient(circle at 22% 20%, rgba(251, 146, 60, 0.36), transparent 30%),
    linear-gradient(90deg, var(--amber-700), var(--orange-600), var(--amber-800));
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.05;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--amber-100);
  font-size: 18px;
  line-height: 1.8;
}

.filter-bar {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
}

.filter-input,
.filter-select,
.search-main input {
  color: var(--text);
  background: #fff;
  border-color: rgba(146, 64, 14, 0.20);
  padding: 14px 18px;
  box-shadow: 0 10px 24px rgba(120, 53, 15, 0.08);
}

.filter-input:focus,
.filter-select:focus,
.search-main input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 74px 150px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.rank-number {
  font-size: 30px;
  font-weight: 900;
  color: var(--amber-600);
  text-align: center;
}

.rank-item img {
  width: 150px;
  height: 98px;
  object-fit: cover;
  border-radius: 18px;
}

.rank-item h2 {
  margin: 0 0 8px;
  color: var(--amber-900);
}

.rank-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.rank-action {
  justify-self: end;
  padding: 11px 18px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  font-weight: 800;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: var(--amber-700);
  font-size: 14px;
  margin-bottom: 24px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.detail-card,
.sidebar-card,
.player-card,
.search-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 237, 213, 0.9);
}

.player-card {
  margin-bottom: 30px;
}

.player-shell {
  position: relative;
  background: #0f172a;
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #0f172a;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.player-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(217, 119, 6, 0.28), rgba(15, 23, 42, 0.72)),
    linear-gradient(180deg, rgba(15, 23, 42, 0.10), rgba(15, 23, 42, 0.78));
}

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

.player-play-button {
  position: relative;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 237, 213, 0.52);
  color: var(--amber-900);
  background: rgba(255, 247, 237, 0.92);
  font-size: 34px;
}

.player-copy {
  padding: 22px 24px 26px;
}

.player-copy h1 {
  margin: 0 0 10px;
  color: var(--amber-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.player-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.detail-card {
  padding: 28px;
}

.detail-card h2,
.sidebar-card h2,
.search-card h2 {
  margin: 0 0 18px;
  color: var(--amber-900);
  font-size: 24px;
}

.detail-card p {
  color: #374151;
  line-height: 1.95;
  margin: 0 0 18px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.meta-grid div {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--amber-50), #fff);
  border: 1px solid var(--line);
}

.meta-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.meta-grid strong {
  color: var(--amber-900);
}

.sidebar-card {
  padding: 22px;
  margin-bottom: 24px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.related-card img {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card h3 {
  margin: 0 0 6px;
  color: var(--amber-900);
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.search-main {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  display: flex;
  gap: 12px;
}

.search-main input {
  min-height: 58px;
  padding-left: 22px;
}

.search-main button {
  min-width: 120px;
  padding: 0 22px;
}

.search-results {
  min-height: 180px;
}

.search-empty {
  padding: 36px;
  border-radius: 24px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  border: 1px dashed rgba(146, 64, 14, 0.22);
}

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

.site-footer {
  margin-top: 70px;
  color: var(--amber-100);
  background: linear-gradient(135deg, var(--amber-900), var(--orange-900), #431407);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 20px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff7ed;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff7ed;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  color: var(--amber-300);
  line-height: 1.8;
}

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

.site-footer a {
  color: var(--amber-300);
}

.site-footer a:hover {
  color: #fff7ed;
}

.footer-bottom {
  padding: 20px;
  border-top: 1px solid rgba(253, 186, 116, 0.18);
  text-align: center;
  color: rgba(253, 186, 116, 0.82);
  font-size: 13px;
}

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

  .mobile-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-actions,
  .hero-tags {
    justify-content: center;
  }

  .hero-poster {
    display: none;
  }

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

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

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

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

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

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

  .brand-text small {
    display: none;
  }

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

  .hero-content {
    padding: 56px 16px 96px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .home-section,
  .page-section {
    padding: 48px 0;
  }

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

  .movie-grid,
  .category-grid,
  .search-result-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .movie-cover,
  .compact-card .movie-cover {
    height: 230px;
  }

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

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

  .rank-item img {
    width: 100px;
    height: 82px;
  }

  .rank-action {
    grid-column: 2 / 4;
    justify-self: start;
  }

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

  .search-main {
    display: grid;
  }

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