:root {
  --bg: #f8fbff;
  --bg-soft: #eef6ff;
  --panel: #ffffff;
  --ink: #172033;
  --muted: #5f6f89;
  --muted-light: #8a9ab2;
  --line: #dce8f6;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #dbeafe;
  --slate: #0f172a;
  --gold: #f59e0b;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 30px rgba(37, 99, 235, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.22), transparent 30rem),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 48%, #f7fbff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 232, 246, 0.9);
}

.header-inner {
  min-height: var(--header-height);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--slate);
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

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

.nav-links a,
.mobile-main a,
.mobile-cats a {
  color: #38506f;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 650;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.mobile-main a:hover,
.mobile-cats a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--blue-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 4px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 20px 18px;
  background: rgba(255, 255, 255, 0.95);
}

.mobile-main,
.mobile-cats {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-cats {
  margin-top: 8px;
}

.main-wrap {
  min-height: 60vh;
}

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  color: #fff;
  background: #0f172a;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 6s ease;
  pointer-events: none;
}

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

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 28, 0.88) 0%, rgba(15, 23, 42, 0.58) 43%, rgba(15, 23, 42, 0.22) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.85), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 70vh;
  margin: 0 auto;
  padding: 96px 20px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: end;
  gap: 36px;
}

.hero-copy {
  max-width: 760px;
  padding-bottom: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.34);
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.2vw, 22px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.btn-light {
  color: var(--blue);
  background: var(--blue-soft);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.hero-panel {
  align-self: end;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

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

.hero-mini {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-mini:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(3px);
}

.hero-mini img {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-mini strong {
  display: block;
  color: #fff;
  line-height: 1.35;
}

.hero-mini em {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 13px;
}

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

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #fff;
}

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

.section {
  margin-bottom: 72px;
}

.section-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 246, 0.78);
  box-shadow: var(--shadow-soft);
}

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

.section-title h1,
.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-title p {
  margin: 8px 0 0;
  max-width: 680px;
  color: var(--muted);
}

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

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

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

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

.movie-card-poster,
.movie-card-wide,
.category-card,
.rank-row,
.related-card {
  background: var(--panel);
  border: 1px solid rgba(220, 232, 246, 0.95);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover,
.category-card:hover,
.rank-row:hover,
.related-card:hover {
  transform: translateY(-5px);
}

.movie-card-poster:hover,
.movie-card-wide:hover,
.category-card:hover,
.rank-row:hover,
.related-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow);
}

.movie-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}

.movie-thumb-video {
  aspect-ratio: 16 / 10;
}

.movie-thumb img,
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

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

.movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.38), transparent 48%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.movie-card:hover .movie-thumb::after {
  opacity: 1;
}

.movie-duration,
.movie-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 750;
  color: #fff;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
}

.movie-duration {
  right: 10px;
  bottom: 10px;
}

.movie-badge {
  left: 10px;
  top: 10px;
  background: rgba(37, 99, 235, 0.86);
}

.play-pill {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(37, 99, 235, 0.9);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.42);
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.movie-card:hover .play-pill,
.related-card:hover .play-pill {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
  padding: 16px;
}

.movie-card-body h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted-light);
  font-size: 13px;
}

.movie-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 20px;
  scroll-snap-type: x proximity;
}

.horizontal-scroll .movie-card {
  scroll-snap-align: start;
}

.category-card {
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 255, 0.92)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 14rem);
}

.category-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.category-card p {
  color: var(--muted);
  margin: 10px 0 18px;
}

.category-card span {
  color: var(--blue);
  font-weight: 750;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 76px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
}

.rank-index {
  color: var(--blue);
  font-size: 24px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.rank-row img {
  width: 76px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-info strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.rank-info em {
  display: block;
  color: var(--muted-light);
  font-style: normal;
  font-size: 13px;
  margin-top: 3px;
}

.rank-score {
  color: var(--gold);
  font-weight: 800;
}

.page-hero {
  padding: 76px 0 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.18), transparent 24rem),
    linear-gradient(135deg, #f8fbff, #eef6ff);
}

.page-hero .container {
  padding-top: 0;
  padding-bottom: 28px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 700;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(4, minmax(130px, 170px));
  gap: 12px;
  margin: 0 0 28px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.search-field span {
  color: var(--blue);
  font-weight: 900;
  font-size: 22px;
}

.search-field input,
.filter-bar select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.filter-bar select {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

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

.detail-hero {
  position: relative;
  min-height: 52vh;
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--slate);
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 28, 0.9), rgba(15, 23, 42, 0.55)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.92), transparent 54%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px 20px 44px;
}

.detail-hero h1 {
  max-width: 900px;
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.detail-hero p {
  max-width: 820px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.detail-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

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

.player-card,
.article-card,
.side-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.video-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.video-box video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.34), transparent 16rem),
    linear-gradient(0deg, rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.12));
}

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

.player-button {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 5px;
  font-size: 34px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.45);
}

.player-info {
  padding: 24px;
}

.player-info h2,
.article-card h2,
.side-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.2;
}

.player-info p,
.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-card {
  margin-top: 24px;
  padding: 28px;
}

.article-card p + p {
  margin-top: 16px;
}

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

.side-meta {
  display: grid;
  gap: 12px;
}

.side-meta div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.side-meta span {
  color: var(--muted);
}

.side-meta strong {
  text-align: right;
  color: var(--ink);
}

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

.related-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 13px;
  align-items: center;
  padding: 10px;
}

.related-card .related-thumb {
  position: relative;
  width: 92px;
  height: 68px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--blue-soft);
}

.related-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.alpha-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.alpha-links a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 750;
}

.empty-state {
  display: none;
  padding: 36px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.empty-state.is-visible {
  display: block;
}

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

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

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

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

  .hero-panel {
    max-width: 640px;
  }

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

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

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

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

  .hero,
  .hero-content {
    min-height: 72vh;
  }

  .hero-content {
    padding-top: 82px;
    padding-bottom: 72px;
  }

  .hero-panel {
    display: none;
  }

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

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

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

  .search-field {
    grid-column: 1 / -1;
  }

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

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

  .brand {
    font-size: 19px;
  }

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

  .container {
    padding: 42px 14px;
  }

  .hero h1,
  .detail-hero h1,
  .page-hero h1 {
    letter-spacing: -0.04em;
  }

  .hero-copy {
    padding-bottom: 12px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .grid-posters,
  .grid-wide,
  .grid-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .movie-card-body {
    padding: 12px;
  }

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

  .section-card {
    padding: 20px;
  }

  .rank-row {
    grid-template-columns: 38px 64px 1fr;
  }

  .rank-score {
    display: none;
  }

  .rank-row img {
    width: 64px;
    height: 48px;
  }

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

  .search-field {
    grid-column: auto;
  }

  .player-info,
  .article-card,
  .side-card {
    padding: 18px;
  }

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

  .related-card .related-thumb {
    width: 82px;
    height: 62px;
  }
}
