:root {
  --color-primary: #0f766e;
  --color-primary-bright: #14b8a6;
  --color-secondary: #0891b2;
  --color-blue: #2563eb;
  --color-bg: #f8fafc;
  --color-bg-soft: #ecfeff;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f8fafc 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, #0d9488 0%, #0891b2 52%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 118, 110, 0.25);
}

.site-header-inner {
  width: min(100%, 1280px);
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.30);
  transition: transform 0.25s ease, background 0.25s ease;
}

.site-brand:hover .brand-mark {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.desktop-nav a,
.mobile-panel a {
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.search-page-form input {
  border: 0;
  outline: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.20);
  color: #ffffff;
  padding: 11px 14px;
  min-width: 220px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.header-search button,
.mobile-search button,
.search-page-form button,
.filter-panel button {
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
  color: var(--color-primary);
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-page-form button:hover,
.filter-panel button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 24px 20px;
  background: rgba(15, 118, 110, 0.95);
}

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

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

.page-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 24px;
}

.home-shell {
  padding-bottom: 72px;
}

.hero-section {
  width: min(100%, 1280px);
  margin: 0 auto 64px;
  padding: 28px 24px 0;
}

.hero-card {
  position: relative;
  display: block;
  min-height: 420px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: var(--shadow-strong);
}

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

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.50) 46%, rgba(15, 23, 42, 0.08) 100%);
}

.hero-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  font-size: 32px;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-card:hover .hero-play {
  opacity: 1;
  transform: scale(1);
}

.hero-copy {
  position: absolute;
  left: clamp(24px, 6vw, 64px);
  right: clamp(24px, 6vw, 64px);
  bottom: clamp(24px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
  color: #ffffff;
}

.hero-pill,
.card-cover-badge,
.rank-badge,
.tag-row a,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-pill {
  padding: 7px 13px;
  background: #14b8a6;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.32);
}

.hero-copy h1 {
  margin: 16px 0 8px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-line {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero-action {
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 14px;
  color: #0f766e;
  background: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.20);
}

.content-section {
  margin-bottom: 68px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 800;
  white-space: nowrap;
}

.section-link span {
  transition: transform 0.2s ease;
}

.section-link:hover span {
  transform: translateX(4px);
}

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

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

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

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

.movie-card:hover img,
.mini-card:hover img,
.category-tile:hover img,
.category-overview-card:hover img {
  transform: scale(1.08);
}

.play-hover {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.movie-card:hover .play-hover {
  opacity: 1;
  transform: scale(1);
}

.card-cover-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(8px);
}

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #2563eb);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 17px;
  min-height: 172px;
}

.movie-title,
.mini-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 800;
  line-height: 1.35;
}

.movie-title {
  font-size: 18px;
}

.movie-summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.movie-foot,
.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  color: var(--color-muted);
  font-size: 13px;
}

.movie-foot span:first-child,
.movie-meta-line span:first-child {
  color: var(--color-primary);
  font-weight: 800;
}

.soft-panel {
  padding: clamp(24px, 4vw, 48px);
  border-radius: 30px;
  background: linear-gradient(135deg, #ecfeff 0%, #eff6ff 100%);
}

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

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

.movie-card-horizontal {
  flex-direction: row;
  min-height: 146px;
}

.horizontal-poster {
  width: 210px;
  flex: 0 0 210px;
  aspect-ratio: auto;
}

.horizontal-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 18px 0;
  min-width: 0;
}

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

.category-tile,
.category-overview-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #0f172a;
  box-shadow: var(--shadow-soft);
}

.category-tile {
  min-height: 210px;
}

.category-tile img,
.category-overview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tile-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(15, 23, 42, 0.08));
}

.tile-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #ffffff;
}

.tile-copy strong,
.overview-copy strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.tile-copy span,
.overview-copy span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.ranking-panel {
  padding: clamp(24px, 4vw, 48px);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

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

.page-hero {
  color: #ffffff;
  background: linear-gradient(90deg, #0d9488 0%, #0891b2 60%, #2563eb 100%);
  padding: 48px 0;
  margin-bottom: 46px;
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  line-height: 1.7;
}

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

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

.detail-breadcrumb {
  color: var(--color-muted);
  margin: 30px 0 18px;
}

.detail-breadcrumb a:hover {
  color: var(--color-primary);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 160px;
  background: #ffffff;
  color: var(--color-text);
}

.overview-image {
  display: block;
  overflow: hidden;
}

.overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.overview-copy span {
  color: var(--color-muted);
  -webkit-line-clamp: 3;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 180px 120px;
  gap: 12px;
  padding: 18px;
  margin-bottom: 34px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select,
.search-page-form input {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: var(--color-text);
  background: #ffffff;
  padding: 12px 14px;
  outline: 0;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-page-form input:focus {
  border-color: var(--color-primary-bright);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.filter-panel button,
.search-page-form button {
  color: #ffffff;
  background: linear-gradient(90deg, #0d9488, #0891b2);
}

.search-section {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.search-page-form {
  margin-bottom: 16px;
}

.search-page-form input {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--color-text);
}

.search-status {
  color: var(--color-muted);
  margin: 12px 0 24px;
  font-weight: 700;
}

.detail-page {
  padding-bottom: 74px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.82fr);
  gap: 34px;
}

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

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: var(--shadow-strong);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.10));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  font-size: 34px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

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

.detail-card,
.side-card {
  margin-top: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-card {
  padding: clamp(24px, 4vw, 38px);
}

.detail-card h1 {
  margin: 18px 0;
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-card h2,
.side-card h2 {
  margin: 28px 0 12px;
  font-size: 23px;
  line-height: 1.3;
}

.detail-card p {
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.lead-text {
  font-weight: 800;
  color: var(--color-text) !important;
}

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

.tag-row a,
.tag-row span {
  padding: 7px 12px;
}

.tag-row a {
  color: var(--color-primary);
  background: #ccfbf1;
}

.tag-row span {
  color: #334155;
  background: #f1f5f9;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--color-border);
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--color-muted);
}

.detail-meta strong {
  color: var(--color-text);
}

.review-box {
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #ecfeff 0%, #eff6ff 100%);
}

.review-box p {
  margin: 0;
  color: #1e293b;
}

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

.side-card {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.side-card h2 {
  margin-top: 0;
}

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

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

.mini-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: #0f172a;
}

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

.mini-copy {
  min-width: 0;
}

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

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
  padding: 54px 0 24px;
}

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

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.footer-brand-block p {
  max-width: 460px;
  color: #94a3b8;
  line-height: 1.8;
}

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

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

.site-footer a {
  color: #94a3b8;
}

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

.footer-bottom {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 22px 24px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  color: #64748b;
  font-size: 14px;
}

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

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-header-inner {
    gap: 16px;
  }
}

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

  .hero-card {
    min-height: 360px;
    aspect-ratio: 16 / 10;
  }

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

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

  .split-section,
  .ranking-list,
  .category-overview-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

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

  .side-card {
    position: static;
  }
}

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

  .brand-subtitle {
    display: none;
  }

  .brand-title {
    font-size: 19px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .page-shell,
  .hero-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-section {
    margin-bottom: 42px;
  }

  .hero-card {
    min-height: 430px;
    aspect-ratio: auto;
    border-radius: 22px;
  }

  .hero-play {
    display: none;
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

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

  .hero-line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

  .card-grid,
  .compact-grid,
  .featured-grid,
  .ranking-grid,
  .category-movie-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal,
  .mini-card,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    flex-direction: column;
  }

  .horizontal-poster {
    width: 100%;
    flex-basis: auto;
    aspect-ratio: 16 / 9;
  }

  .horizontal-body {
    padding: 17px;
  }

  .category-overview-card {
    min-height: auto;
  }

  .overview-image {
    aspect-ratio: 16 / 9;
  }

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

  .search-page-form,
  .mobile-search {
    align-items: stretch;
    flex-direction: column;
  }

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

  .detail-card {
    padding: 22px;
  }

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