:root {
  --primary-50: #fff7ed;
  --primary-100: #faeee0;
  --primary-400: #e1a06a;
  --primary-600: #cb6f3f;
  --primary-700: #a95636;
  --primary-900: #6e3b2c;
  --secondary-50: #f7f5f3;
  --secondary-100: #e7e5e4;
  --secondary-200: #d1ccc9;
  --secondary-300: #b1aaa6;
  --secondary-500: #7c746e;
  --secondary-600: #6b645f;
  --secondary-700: #59534f;
  --secondary-800: #4d4845;
  --secondary-900: #433f3d;
  --secondary-950: #211d1b;
  --accent-50: #fff1eb;
  --accent-200: #fed6c3;
  --accent-500: #f97346;
  --accent-900: #772916;
  --white: #ffffff;
  --black: #000000;
  --shadow-md: 0 10px 30px rgba(33, 29, 27, 0.10);
  --shadow-lg: 0 20px 46px rgba(33, 29, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--secondary-50);
  color: var(--secondary-900);
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--secondary-950);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-600);
  color: var(--white);
  font-size: 13px;
  box-shadow: 0 0 0 4px rgba(203, 111, 63, 0.16);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link,
.mobile-link {
  color: var(--secondary-200);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--primary-400);
}

.header-search {
  position: relative;
  width: 260px;
  display: flex;
  align-items: center;
}

.header-search input,
.mobile-search input,
.local-filter {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--white);
  background: var(--secondary-800);
  border-radius: 999px;
  padding: 11px 44px 11px 18px;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.local-filter:focus {
  box-shadow: 0 0 0 3px rgba(217, 134, 74, 0.32);
  background: var(--secondary-700);
}

.header-search button,
.mobile-search button {
  position: absolute;
  right: 5px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--secondary-200);
  background: transparent;
}

.header-search button:hover,
.mobile-search button:hover {
  color: var(--primary-400);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: var(--secondary-800);
  border-radius: 10px;
  padding: 8px 11px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--secondary-800);
  padding: 16px;
  background: var(--secondary-900);
}

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

.mobile-panel nav {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mobile-search {
  position: relative;
}

main {
  min-height: 70vh;
}

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  color: var(--white);
  background: var(--secondary-950);
}

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33, 29, 27, 0.96), rgba(33, 29, 27, 0.70) 48%, rgba(33, 29, 27, 0.25)), linear-gradient(0deg, rgba(33, 29, 27, 0.96), transparent 45%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(16px, calc((100% - 1180px) / 2));
  width: min(760px, calc(100% - 32px));
  transform: translateY(-50%);
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
  background: var(--primary-600);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 46px);
  font-family: "Noto Serif SC", Georgia, serif;
}

.hero p {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--secondary-200);
  font-size: clamp(15px, 2.2vw, 19px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--secondary-200);
}

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

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

.primary-button,
.ghost-button,
.full-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: var(--primary-600);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(203, 111, 63, 0.30);
}

.primary-button:hover,
.full-link:hover {
  transform: translateY(-2px);
  background: var(--primary-700);
  box-shadow: var(--shadow-lg);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.ghost-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.20);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 78px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

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

.hero-dot.active {
  width: 34px;
  background: var(--primary-400);
}

.hero-category-bar {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 5;
  width: min(940px, calc(100% - 32px));
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(33, 29, 27, 0.70);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hero-category-bar a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--secondary-100);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.hero-category-bar a:hover {
  color: var(--white);
  background: var(--primary-600);
}

.content-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.content-section.compact {
  padding: 44px 0;
}

.content-section.narrow {
  max-width: 980px;
}

.inner-section {
  width: 100%;
  padding: 34px 0 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--secondary-900);
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--secondary-600);
}

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

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

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

.card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--secondary-200);
}

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

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

.score-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.poster-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card-link:hover .poster-mask {
  opacity: 1;
}

.poster-mask span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--primary-600);
  font-size: 13px;
  font-weight: 800;
}

.card-body {
  padding: 14px;
}

.card-body h3 {
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--secondary-900);
  font-size: 17px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.card-link:hover h3 {
  color: var(--primary-600);
}

.card-body p {
  height: 42px;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--secondary-600);
  font-size: 13px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--secondary-500);
  font-size: 12px;
}

.card-meta span:first-child {
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--primary-700);
  background: var(--primary-100);
  font-weight: 700;
}

.category-strip {
  background: var(--secondary-100);
}

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

.category-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  background: var(--secondary-900);
  box-shadow: var(--shadow-md);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 0.35s ease;
}

.category-card span,
.category-card strong {
  position: absolute;
  left: 18px;
  z-index: 2;
}

.category-card span {
  bottom: 46px;
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  bottom: 20px;
  color: var(--secondary-200);
}

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

.rank-panel,
.sticky-panel,
.detail-card,
.player-card,
.category-overview-card,
.filter-panel {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.rank-panel {
  position: sticky;
  top: 86px;
  padding: 22px;
}

.rank-panel h2,
.sticky-panel h2 {
  margin: 0 0 16px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  padding: 11px 10px;
  background: var(--secondary-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  transform: translateX(3px);
  background: var(--primary-100);
}

.rank-number {
  color: var(--primary-600);
  font-weight: 900;
}

.rank-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.rank-type {
  color: var(--secondary-500);
  font-size: 12px;
}

.full-link {
  width: 100%;
  margin-top: 18px;
  color: var(--white);
  background: var(--primary-600);
}

.page-hero {
  background: linear-gradient(90deg, var(--secondary-950), var(--secondary-800));
  color: var(--white);
  padding: 54px 0;
}

.page-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
  background: var(--primary-600);
  font-weight: 800;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  font-family: "Noto Serif SC", Georgia, serif;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--secondary-200);
  font-size: 17px;
}

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

.category-overview-card {
  padding: 22px;
}

.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 25px;
}

.category-overview-card p {
  margin: 0 0 12px;
  color: var(--secondary-600);
}

.category-overview-card strong {
  color: var(--primary-600);
}

.category-preview {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.filter-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
}

.filter-panel.wide {
  align-items: stretch;
}

.filter-title {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 900;
}

.local-filter {
  color: var(--secondary-900);
  background: var(--secondary-50);
  border: 1px solid var(--secondary-200);
}

.local-filter:focus {
  background: var(--white);
}

.filter-count {
  flex: 0 0 auto;
  color: var(--secondary-600);
}

.filter-count strong {
  color: var(--primary-600);
}

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

.ranking-card a {
  display: grid;
  grid-template-columns: 58px 70px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-radius: 16px;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ranking-index {
  color: var(--primary-600);
  font-size: 22px;
  font-weight: 900;
}

.ranking-card img {
  width: 70px;
  height: 94px;
  border-radius: 10px;
  object-fit: cover;
}

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

.ranking-main strong,
.ranking-main em {
  display: block;
}

.ranking-main strong {
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
}

.ranking-main em,
.ranking-meta {
  color: var(--secondary-600);
  font-size: 14px;
  font-style: normal;
}

.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 60px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--secondary-600);
  font-size: 14px;
}

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

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

.player-card {
  padding: 12px;
  overflow: hidden;
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--black);
}

.video-element {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  object-fit: contain;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.30);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-600);
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
}

.video-player.is-playing .play-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-message {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: none;
  border-radius: 12px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}

.video-player.has-message .player-message {
  display: block;
}

.detail-card {
  margin-top: 22px;
  padding: 24px;
}

.detail-title-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.detail-poster {
  width: 180px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.detail-card h1 {
  margin: 0 0 14px;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-meta span,
.tag-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--secondary-700);
  background: var(--secondary-100);
  font-size: 13px;
  font-weight: 700;
}

.detail-meta span:first-child,
.tag-pill:hover {
  color: var(--primary-700);
  background: var(--primary-100);
}

.lead-text {
  margin: 0 0 16px;
  color: var(--secondary-700);
  font-size: 17px;
  font-weight: 700;
}

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

.detail-section {
  margin-top: 28px;
}

.detail-section h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.detail-section p {
  margin: 0 0 12px;
  color: var(--secondary-700);
}

.review-block {
  border-left: 4px solid var(--primary-600);
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--primary-50);
}

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

.sticky-panel {
  position: sticky;
  top: 86px;
  padding: 20px;
}

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

.side-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.side-poster {
  width: 96px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: var(--secondary-200);
}

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

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

.side-info strong,
.side-info em {
  display: block;
}

.side-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-info em {
  color: var(--secondary-500);
  font-size: 12px;
  font-style: normal;
}

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

.site-footer {
  background: var(--secondary-950);
  color: var(--secondary-300);
  padding: 48px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p,
.site-footer p {
  margin: 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 17px;
}

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

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

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

@media (max-width: 1120px) {
  .movie-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .rank-panel,
  .sticky-panel {
    position: static;
  }

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

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

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

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    margin-left: 0;
  }

  .content-section {
    padding: 40px 0;
  }

  .section-heading,
  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .ranking-card a {
    grid-template-columns: 44px 58px minmax(0, 1fr);
  }

  .ranking-meta {
    grid-column: 3;
  }

  .detail-title-row {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 16px;
  }

  .detail-poster {
    width: 130px;
  }

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

@media (max-width: 560px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .logo {
    font-size: 15px;
  }

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

  .hero h2 {
    font-size: 26px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

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

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

  .card-body h3 {
    font-size: 15px;
  }

  .card-body p {
    height: 38px;
    font-size: 12px;
  }

  .detail-card,
  .category-overview-card {
    padding: 18px;
  }

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

  .detail-poster {
    width: min(210px, 100%);
  }

  .side-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

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