:root {
  color-scheme: light;
  --primary-50: #f0f7ff;
  --primary-100: #dceeff;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --secondary-50: #f8fafc;
  --secondary-100: #eef2f7;
  --secondary-200: #dbe3ee;
  --secondary-500: #64748b;
  --secondary-700: #334155;
  --secondary-900: #0f172a;
  --gold: #f59e0b;
  --white: #ffffff;
  --shadow-card: 0 18px 55px rgba(15, 23, 42, 0.10);
  --shadow-hover: 0 22px 70px rgba(2, 132, 199, 0.20);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --header-height: 76px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--secondary-900);
  background: linear-gradient(180deg, var(--secondary-50) 0%, #ffffff 42%, var(--secondary-50) 100%);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #ffffff;
  transition: background 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.site-header.is-scrolled,
.detail-page .site-header,
.page-main + .site-footer ~ .site-header {
  color: var(--secondary-900);
}

.site-header.is-scrolled,
.detail-page .site-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.35);
}

.brand-text {
  font-size: 21px;
  white-space: nowrap;
}

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

.desktop-nav a,
.mobile-nav a {
  font-weight: 700;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary-500);
  opacity: 1;
}

.search-shell {
  position: relative;
  width: min(290px, 32vw);
}

.global-search-input,
.local-filter-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--secondary-900);
  background: rgba(255, 255, 255, 0.88);
  padding: 12px 18px;
  outline: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.global-search-input:focus,
.local-filter-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
}

.global-search-results {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 80;
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--secondary-200);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
  padding: 8px;
  color: var(--secondary-900);
}

.search-result-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.search-result-item:hover {
  background: var(--primary-50);
}

.search-result-item img {
  width: 54px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary-200), var(--primary-100));
}

.search-result-item strong,
.search-result-item small {
  display: block;
}

.search-result-item small,
.empty-search {
  color: var(--secondary-500);
  font-size: 12px;
}

.empty-search {
  padding: 14px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}

.mobile-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--secondary-900);
  box-shadow: var(--shadow-card);
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
}

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

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.025);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: radial-gradient(circle at 70% 20%, rgba(14, 165, 233, 0.35), transparent 40%), linear-gradient(135deg, #0f172a, #075985);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.64) 44%, rgba(15, 23, 42, 0.14) 100%), linear-gradient(0deg, rgba(15, 23, 42, 0.78) 0%, transparent 46%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 740px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  color: #ffffff;
  padding-top: var(--header-height);
}

.eyebrow {
  margin: 0 0 12px;
  color: #bae6fd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--primary-600);
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-actions,
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.primary-button,
.ghost-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.35);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.outline-button {
  color: var(--primary-700);
  border: 1px solid var(--primary-100);
  background: #ffffff;
}

.primary-button:hover,
.ghost-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.38);
  font-size: 36px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.intro-panel,
.content-section,
.split-section,
.ranking-layout,
.detail-main,
.page-main {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.intro-panel {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: -76px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.intro-panel h1,
.page-hero h1,
.section-title h2,
.detail-content h1 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.intro-panel h1 {
  font-size: clamp(30px, 5vw, 54px);
}

.intro-panel p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--secondary-500);
}

.content-section,
.split-section,
.ranking-layout {
  margin-top: 76px;
}

.content-section.soft-section {
  padding: 44px;
  border-radius: var(--radius-xl);
  background: var(--secondary-100);
}

.compact-section {
  margin-top: 0;
}

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

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-title a {
  color: var(--primary-700);
  font-weight: 900;
}

.small-title h2 {
  font-size: 28px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(219, 227, 238, 0.82);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.36);
  box-shadow: var(--shadow-hover);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-200), var(--primary-100));
}

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

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

.play-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(2, 132, 199, 0.9);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.28);
}

.movie-info {
  padding: 18px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--secondary-500);
  font-size: 12px;
  font-weight: 800;
}

.movie-info h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.28;
}

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

.movie-info p {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--secondary-500);
  font-size: 14px;
}

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

.tag-row span,
.related-card em span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--primary-700);
  background: var(--primary-50);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

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

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

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

.category-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: var(--secondary-900);
  box-shadow: var(--shadow-card);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.16) 100%);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--secondary-700), var(--primary-600));
  transition: transform 0.35s ease;
}

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

.category-card span,
.category-card p {
  position: relative;
  z-index: 1;
}

.category-card span {
  font-size: 24px;
  font-weight: 900;
}

.category-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.rank-panel {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

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

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

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

.rank-item:hover {
  background: var(--primary-50);
  transform: translateX(4px);
}

.rank-number {
  color: var(--gold);
  font-size: 19px;
  font-weight: 950;
}

.rank-item img {
  width: 74px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--secondary-200), var(--primary-100));
}

.rank-text strong,
.rank-text small {
  display: block;
}

.rank-text strong {
  line-height: 1.3;
}

.rank-text small {
  color: var(--secondary-500);
}

.page-main {
  padding-top: calc(var(--header-height) + 54px);
}

.page-hero {
  overflow: hidden;
  position: relative;
  padding: 64px;
  border-radius: 32px;
  color: #ffffff;
  background: radial-gradient(circle at 78% 10%, rgba(14, 165, 233, 0.42), transparent 34%), linear-gradient(135deg, #0f172a, #075985 56%, #0284c7);
  box-shadow: var(--shadow-card);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 70px);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.local-tools {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin-top: 28px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: var(--primary-700);
  background: #ffffff;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 30px;
  align-items: start;
}

.ranking-featured {
  margin-top: 0;
}

.detail-main {
  padding-top: calc(var(--header-height) + 36px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--secondary-500);
  font-weight: 800;
}

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

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.22);
  aspect-ratio: 16 / 9;
}

.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.22), rgba(2, 6, 23, 0.58));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  font-size: 34px;
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.36);
}

.play-overlay strong {
  font-size: 20px;
}

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

.detail-content,
.detail-facts {
  margin-top: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.detail-content h1 {
  font-size: clamp(32px, 5vw, 58px);
}

.one-line {
  margin: 16px 0 20px;
  color: var(--secondary-700);
  font-size: 18px;
  font-weight: 700;
}

.detail-content h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.detail-content p:not(.eyebrow):not(.one-line) {
  color: var(--secondary-700);
}

.detail-side {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--secondary-200), var(--primary-100));
  box-shadow: var(--shadow-card);
}

.detail-facts dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.detail-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--secondary-100);
}

.detail-facts dt {
  color: var(--secondary-500);
  font-weight: 800;
}

.detail-facts dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.full-button {
  width: 100%;
  margin-top: 22px;
}

.related-section {
  margin-bottom: 76px;
}

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

.related-card a {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--secondary-200);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.related-card img {
  width: 106px;
  height: 76px;
  border-radius: 14px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--secondary-200), var(--primary-100));
}

.related-card strong,
.related-card small,
.related-card em {
  display: block;
}

.related-card small {
  color: var(--secondary-500);
}

.related-card em {
  margin-top: 6px;
}

.site-footer {
  margin-top: 84px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--secondary-900);
}

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

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 24px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #ffffff;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

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

[hidden] {
  display: none !important;
}

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

  .menu-button {
    display: block;
  }

  .search-shell {
    margin-left: auto;
    width: min(360px, 46vw);
  }

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

  .split-section,
  .ranking-layout,
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }

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

  .rank-list-large {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  .header-inner {
    width: min(100% - 20px, 1180px);
    gap: 10px;
  }

  .brand-text {
    font-size: 17px;
  }

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

  .search-shell {
    display: none;
  }

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

  .hero-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-right: 16px;
  }

  .hero-copy h2 {
    font-size: 44px;
  }

  .hero-arrow {
    display: none;
  }

  .intro-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .content-section.soft-section {
    padding: 24px;
  }

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

  .movie-grid,
  .small-grid,
  .preview-grid,
  .category-grid,
  .wide-category-grid,
  .related-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 36px 68px 1fr;
  }

  .page-hero {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .detail-content,
  .detail-facts {
    padding: 22px;
  }

  .related-card a {
    grid-template-columns: 92px 1fr;
  }

  .related-card img {
    width: 92px;
    height: 68px;
  }

  .footer-inner {
    padding: 40px 0;
  }
}
