:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --cyan: #0891b2;
  --blue: #2563eb;
  --purple: #7c3aed;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.06);
  --shadow-md: 0 10px 25px rgb(15 23 42 / 0.08);
  --shadow-xl: 0 25px 70px rgb(15 23 42 / 0.22);
  --radius-lg: 18px;
  --radius-xl: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  white-space: nowrap;
}

.brand span:last-child {
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 12px 30px rgb(13 148 136 / 0.28);
}

.brand-mark svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  margin-left: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 15px;
}

.main-nav a,
.footer-links a,
.mobile-links a {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.footer-links a:hover,
.mobile-links a:hover {
  color: var(--teal);
}

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

.header-search input,
.mobile-panel input,
.quick-search input,
.live-search input {
  min-width: 0;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--gray-50);
  color: var(--gray-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  width: 220px;
  padding: 10px 16px;
}

.header-search button,
.mobile-panel button,
.quick-search button {
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search input:focus,
.mobile-panel input:focus,
.quick-search input:focus,
.live-search input:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgb(13 148 136 / 0.12);
}

.header-search button:hover,
.mobile-panel button:hover,
.quick-search button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gray-700);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--gray-100);
  padding: 16px;
  background: var(--white);
}

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

.mobile-panel form {
  max-width: 100%;
}

.mobile-panel input {
  flex: 1;
  padding: 10px 14px;
}

.mobile-links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mobile-links a {
  padding: 11px 14px;
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--gray-700);
  font-weight: 600;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--white);
}

.hero-stage {
  position: relative;
  min-height: 560px;
}

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

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.08) contrast(1.04);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 28%, rgb(255 255 255 / 0.16), transparent 34%),
    linear-gradient(90deg, rgb(15 118 110 / 0.96), rgb(8 145 178 / 0.84) 48%, rgb(17 24 39 / 0.66));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  gap: 48px;
  align-items: center;
  width: min(100% - 32px, 1280px);
  min-height: 560px;
  margin-inline: auto;
  padding: 56px 0 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgb(255 255 255 / 0.16);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.18);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy h1,
.page-hero h1,
.detail-hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
}

.hero-copy p,
.page-hero p,
.detail-hero p {
  max-width: 760px;
  margin: 0;
  color: rgb(255 255 255 / 0.88);
  font-size: 18px;
}

.hero-tags,
.detail-tags,
.card-tags,
.meta-pills,
.category-strip,
.year-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
  border-radius: 999px;
  background: rgb(255 255 255 / 0.16);
  padding: 6px 10px;
  font-size: 13px;
  color: rgb(255 255 255 / 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.24);
}

.btn.ghost {
  background: rgb(255 255 255 / 0.16);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.22);
}

.btn.text {
  color: var(--white);
  padding-inline: 6px;
}

.hero-poster {
  display: block;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
  border: 0;
  color: var(--white);
  background: rgb(255 255 255 / 0.18);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.22);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 28px;
  background: var(--white);
}

.quick-entry {
  margin-top: -30px;
  position: relative;
  z-index: 6;
}

.quick-entry-inner {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.quick-search {
  width: 100%;
}

.quick-search input {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
}

.quick-search button {
  padding: 14px 22px;
}

.category-strip a,
.year-filters button,
.meta-pills span,
.meta-pills a {
  border: 0;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 9px 14px;
  font-weight: 700;
}

.category-strip a:hover,
.year-filters button:hover,
.year-filters button.active,
.meta-pills a:hover {
  background: var(--teal);
  color: var(--white);
}

.page-stack {
  display: grid;
  gap: 44px;
  padding: 46px 0 64px;
}

.content-section {
  min-width: 0;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

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

.section-link span {
  font-size: 22px;
  line-height: 1;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 20px;
}

.small-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

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

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

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

.card-cover {
  position: relative;
  overflow: hidden;
  background: var(--gray-200);
  aspect-ratio: 16 / 9;
}

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

.card-link:hover .card-cover img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 14px;
  opacity: 0;
  color: var(--white);
  background: linear-gradient(to top, rgb(0 0 0 / 0.78), rgb(0 0 0 / 0.18), transparent);
  transition: opacity 0.25s ease;
}

.card-link:hover .card-overlay {
  opacity: 1;
}

.card-overlay p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-badge,
.card-year,
.rank-number {
  position: absolute;
  top: 10px;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.card-badge {
  left: 10px;
  padding: 5px 10px;
  background: var(--teal);
}

.card-year {
  right: 10px;
  padding: 5px 9px;
  background: rgb(0 0 0 / 0.66);
}

.rank-number {
  left: 10px;
  top: auto;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 12px 24px rgb(239 68 68 / 0.3);
}

.play-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.play-bubble svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
  margin-left: 3px;
}

.card-link:hover .play-bubble {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body {
  padding: 14px;
}

.card-body h3 {
  display: -webkit-box;
  margin: 0 0 9px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.card-link:hover .card-body h3 {
  color: var(--teal);
}

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

.card-tags {
  margin-top: 10px;
  gap: 6px;
}

.card-tags span {
  background: var(--gray-100);
  color: var(--gray-500);
  padding: 4px 8px;
  font-size: 12px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.slim-hero {
  padding: 58px 0 64px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 10%, rgb(255 255 255 / 0.18), transparent 32%),
    radial-gradient(circle at 12% 86%, rgb(15 118 110 / 0.36), transparent 36%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.detail-hero h1 {
  max-width: 920px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgb(255 255 255 / 0.88);
  font-weight: 700;
}

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

.category-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.category-card a {
  display: block;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgb(13 148 136 / 0.2);
}

.category-card h2 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.category-card p {
  margin: 0;
  color: var(--gray-600);
}

.category-sample {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-sample a {
  display: block;
  padding: 0;
  color: var(--teal);
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
}

.filter-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.live-search input {
  width: 100%;
  padding: 14px 18px;
}

.year-filters button {
  transition: background 0.2s ease, color 0.2s ease;
}

.empty-state {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--gray-600);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.detail-hero {
  min-height: 360px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: blur(1px) saturate(1.08);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(15 118 110 / 0.96), rgb(8 145 178 / 0.82), rgb(17 24 39 / 0.72));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 0 76px;
}

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

.detail-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.player-card,
.detail-card,
.aside-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.player-card {
  padding: 10px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.72), rgb(0 0 0 / 0.24));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 24px 60px rgb(13 148 136 / 0.36);
  transition: transform 0.25s ease;
}

.play-overlay:hover .player-start {
  transform: scale(1.06);
}

.player-start svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
  margin-left: 4px;
}

.player-error {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: rgb(0 0 0 / 0.78);
  color: var(--white);
  padding: 12px 18px;
  font-weight: 700;
}

.detail-card {
  padding: 26px;
}

.detail-card h2,
.aside-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.25;
}

.detail-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
}

.meta-pills {
  margin-bottom: 18px;
}

.meta-pills span,
.meta-pills a {
  background: var(--gray-100);
  font-size: 14px;
}

.detail-tags span {
  background: var(--gray-100);
  color: var(--gray-700);
}

.related-section {
  margin-top: 8px;
}

.detail-aside {
  position: sticky;
  top: 88px;
}

.aside-card {
  padding: 22px;
}

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

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

.side-related img {
  width: 118px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  background: var(--gray-200);
}

.side-related strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-900);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.side-related small {
  display: block;
  margin-top: 6px;
  color: var(--gray-500);
}

.side-related:hover strong {
  color: var(--teal);
}

.site-footer {
  color: var(--gray-300);
  background: linear-gradient(135deg, #111827, #1f2937);
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 36px;
}

.footer-logo span:last-child {
  color: var(--white);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.footer-brand p {
  max-width: 520px;
  color: #9ca3af;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #9ca3af;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding: 22px 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  color: #9ca3af;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
    font-size: 14px;
  }

  .header-search input {
    width: 180px;
  }

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

  .detail-aside {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 42px;
  }

  .hero-poster {
    max-width: 460px;
    transform: none;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .brand {
    font-size: 20px;
  }

  .hero-slider,
  .hero-stage,
  .hero-content {
    min-height: 640px;
  }

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

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

  .hero-copy p,
  .page-hero p,
  .detail-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .quick-search,
  .footer-bottom,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-search {
    display: grid;
  }

  .btn,
  .quick-search button {
    width: 100%;
  }

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

  .card-body {
    padding: 12px;
  }

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

  .card-meta,
  .card-tags,
  .card-overlay {
    font-size: 12px;
  }

  .slim-hero {
    padding: 42px 0 48px;
  }

  .detail-hero-inner {
    padding: 44px 0 54px;
  }

  .detail-grid {
    padding-top: 22px;
  }

  .detail-card {
    padding: 20px;
  }

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

  .side-related img {
    width: 108px;
  }
}
