:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --light: #f8fafc;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --purple: #7c3aed;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 44%, #f1f5f9 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #fff;
  background: linear-gradient(90deg, #020617, #0f172a 48%, #020617);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.32);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #2563eb);
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

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

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
}

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

.nav-link {
  color: #e2e8f0;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
}

.header-search,
.mobile-search,
.big-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
}

.header-search input,
.mobile-search input,
.big-search input {
  width: 230px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 12px 14px;
}

.header-search button,
.mobile-search button,
.big-search button {
  border: 0;
  color: #fff;
  padding: 12px 16px;
  cursor: pointer;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-nav-link {
  padding: 10px 4px;
  color: #e2e8f0;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  color: #fff;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.68), rgba(2, 6, 23, 0.22)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  transform: scale(1.04);
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 18% 20%, rgba(34, 211, 238, 0.24), transparent 34%), radial-gradient(circle at 72% 74%, rgba(37, 99, 235, 0.28), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 54px;
  height: 100%;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(34, 211, 238, 0.38);
  border-radius: 999px;
  color: #a5f3fc;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: rgba(14, 165, 233, 0.14);
  backdrop-filter: blur(10px);
}

.hero h1,
.hero h2 {
  margin: 22px 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.8;
}

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

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

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  aspect-ratio: 2 / 3;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.34);
}

.hero-dot.is-active {
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
}

.featured-strip {
  position: relative;
  z-index: 5;
  margin-top: -48px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  color: #fff;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.compact-heading {
  margin-bottom: 14px;
}

.compact-heading span {
  color: #a5f3fc;
  font-weight: 800;
}

.compact-heading a,
.section-heading a,
.text-link {
  color: #0891b2;
  font-weight: 800;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-tile {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  border-radius: 18px;
  background: #0f172a;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  min-height: 136px;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.feature-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-size: 16px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.feature-tile:hover img {
  opacity: 0.9;
  transform: scale(1.06);
}

.section-block {
  padding: 70px 0 0;
}

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

.section-heading h2,
.page-hero h1,
.story-card h2,
.related-panel h2,
.ranking-side h2,
.site-footer h2 {
  margin: 0;
}

.section-heading h2 {
  color: #0f172a;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

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

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.16);
}

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

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.06);
  opacity: 0.78;
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.92), rgba(37, 99, 235, 0.92));
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  display: grid;
  min-width: 38px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.32);
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 13px;
}

.movie-meta-line a {
  color: #0891b2;
  font-weight: 800;
}

.movie-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.35;
}

.movie-card p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #0e7490;
  font-size: 12px;
  background: #ecfeff;
}

.category-band {
  margin-top: 74px;
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a 55%, #082f49);
}

.light-heading h2,
.light-heading p,
.light-heading a {
  color: #fff;
}

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

.category-tile {
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, background 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.category-tile strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.category-tile span {
  color: #cbd5e1;
  line-height: 1.7;
}

.page-shell {
  min-height: 70vh;
}

.page-hero {
  color: #fff;
  padding: 86px 0;
  background: radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.22), transparent 32%), linear-gradient(135deg, #020617, #1e3a8a 58%, #0f172a);
}

.page-hero h1 {
  margin-top: 20px;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 720px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.small-hero {
  padding: 72px 0;
}

.category-overview-grid {
  display: grid;
  gap: 24px;
  padding: 64px 0;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-cover-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: #0f172a;
}

.category-overview-card h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 30px;
}

.category-overview-card p {
  margin: 0 0 14px;
  color: #64748b;
  line-height: 1.75;
}

.category-overview-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.category-overview-card li a {
  color: #334155;
}

.filter-panel {
  margin-top: -34px;
}

.filter-card {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.filter-card input,
.filter-card select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  outline: 0;
  padding: 0 14px;
  color: #0f172a;
  background: #f8fafc;
}

.empty-state {
  padding: 36px;
  border-radius: 22px;
  color: #64748b;
  text-align: center;
  background: #fff;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 60px 0;
}

.ranking-side {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.ranking-side h2 {
  color: #0f172a;
  font-size: 22px;
}

.ranking-side ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.ranking-side li a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
}

.ranking-side strong {
  color: #0f172a;
}

.ranking-side span {
  color: #64748b;
  font-size: 13px;
}

.big-search {
  max-width: 740px;
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.12);
}

.big-search input {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
}

.big-search button {
  min-height: 58px;
  padding: 0 28px;
}

.search-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.search-shortcuts a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #cffafe;
  background: rgba(255, 255, 255, 0.1);
}

.detail-shell {
  background: linear-gradient(180deg, #020617 0, #0f172a 420px, #f8fafc 421px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 0 18px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumb a {
  color: #67e8f9;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 24px;
  align-items: stretch;
}

.player-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #000;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.32);
}

.movie-player {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.2), rgba(2, 6, 23, 0.7));
}

.play-overlay.is-hidden {
  display: none;
}

.play-overlay span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  font-size: 32px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.38);
}

.play-overlay strong {
  margin-top: -160px;
  font-size: 18px;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: #e2e8f0;
  font-size: 13px;
  background: rgba(2, 6, 23, 0.72);
}

.detail-info-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  color: #fff;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(18px);
}

.detail-cover {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  background: #020617;
}

.detail-copy {
  padding: 24px;
}

.detail-copy h1 {
  margin: 16px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.detail-copy p {
  color: #cbd5e1;
  line-height: 1.75;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0 0;
}

.detail-meta div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.detail-meta dt {
  color: #94a3b8;
  font-size: 12px;
}

.detail-meta dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 800;
}

.detail-tags span {
  color: #cffafe;
  background: rgba(34, 211, 238, 0.16);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  padding-top: 34px;
}

.story-card,
.related-panel {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.story-card h2,
.related-panel h2 {
  color: #0f172a;
  font-size: 24px;
}

.story-card h2:not(:first-child) {
  margin-top: 30px;
}

.story-card p {
  color: #475569;
  font-size: 17px;
  line-height: 1.9;
}

.related-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.related-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: #f8fafc;
  transition: background 0.2s ease;
}

.related-item:hover {
  background: #ecfeff;
}

.related-item img {
  width: 110px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  background: #0f172a;
}

.related-item span {
  display: grid;
  align-content: center;
  gap: 5px;
}

.related-item strong {
  color: #0f172a;
  line-height: 1.35;
}

.related-item small {
  color: #64748b;
}

.related-item em {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-style: normal;
}

.related-item em span {
  padding: 3px 6px;
  border-radius: 999px;
  color: #0e7490;
  font-size: 11px;
  background: #ecfeff;
}

.site-footer {
  margin-top: 80px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 19px;
}

.site-footer p {
  color: #94a3b8;
  line-height: 1.75;
}

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

.site-footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

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

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero-content,
  .detail-grid,
  .detail-content-grid,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

  .movie-grid.four-cols,
  .movie-grid.three-cols,
  .category-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-side {
    position: static;
  }
}

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

  .brand-copy strong {
    font-size: 17px;
  }

  .hero {
    height: 74vh;
    min-height: 540px;
  }

  .hero-content {
    gap: 0;
  }

  .hero h1,
  .hero h2 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .feature-row,
  .movie-grid.four-cols,
  .movie-grid.three-cols,
  .category-grid,
  .footer-grid,
  .filter-card,
  .category-overview-card,
  .category-overview-card ul {
    grid-template-columns: 1fr;
  }

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

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

  .filter-card {
    gap: 10px;
  }

  .detail-grid {
    gap: 16px;
  }

  .player-card,
  .movie-player {
    min-height: 260px;
  }

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

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

  .related-item img {
    width: 92px;
    height: 70px;
  }
}
