:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.22);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --deep-blue: #1d4ed8;
  --pink: #f472b6;
  --amber: #fbbf24;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 80px rgba(2, 8, 23, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 30rem),
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.18), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 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: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 45px rgba(2, 8, 23, 0.36);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-logo__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #020617;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.24);
}

.site-logo__text {
  font-size: 20px;
  color: transparent;
  background: linear-gradient(90deg, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.site-nav__link {
  color: #cbd5e1;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--cyan);
}

.header-search {
  position: relative;
  width: 260px;
}

.header-search input {
  width: 100%;
  height: 40px;
  padding: 0 42px 0 16px;
  color: #fff;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.wide-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(34, 211, 238, 0.82);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.header-search button {
  position: absolute;
  right: 7px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  color: var(--cyan);
  background: transparent;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #e2e8f0;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.98);
}

.mobile-nav a {
  display: block;
  padding: 12px;
  border-radius: 12px;
  color: #dbeafe;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
}

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

.hero-carousel {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: 68px;
  background: #020617;
}

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

.hero-track {
  top: 68px;
}

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

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  filter: saturate(1.1) contrast(1.08);
}

.hero-backdrop.is-missing {
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.74) 48%, rgba(15, 23, 42, 0.48) 100%),
    radial-gradient(circle at 75% 32%, rgba(34, 211, 238, 0.26), transparent 24rem),
    linear-gradient(180deg, transparent 55%, #020617 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 692px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 56px;
}

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

.hero-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-title-sub {
  margin: 0 0 14px;
  color: transparent;
  background: linear-gradient(90deg, #f8fafc, #67e8f9 50%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.hero-copy p {
  margin: 0;
  max-width: 720px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  color: #bfdbfe;
  background: rgba(30, 41, 59, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

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

.button-primary {
  color: #03131a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.24);
}

.button-ghost {
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.58);
}

.button-ghost:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.12);
}

.hero-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.18), transparent 18rem),
    rgba(15, 23, 42, 0.75);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-5deg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-card img.is-missing {
  opacity: 0;
}

.hero-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 23, 42, 0.62);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-control:hover {
  color: var(--cyan);
  background: rgba(15, 23, 42, 0.9);
}

.hero-control--prev {
  left: 24px;
}

.hero-control--next {
  right: 24px;
}

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

.hero-dots button {
  width: 28px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(226, 232, 240, 0.34);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.quick-search-panel {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 28px;
  align-items: center;
  margin-top: -54px;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search-panel h2,
.section-heading h2,
.ranking-panel h2,
.detail-text h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.quick-search-panel p,
.section-heading p,
.ranking-panel p,
.page-hero p,
.detail-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.wide-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.wide-search input,
.filter-bar input,
.filter-bar select {
  min-height: 46px;
  padding: 0 15px;
  color: #fff;
  background: rgba(30, 41, 59, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  outline: none;
}

.wide-search button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  color: #03131a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  cursor: pointer;
  font-weight: 900;
}

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

.section-heading {
  margin-bottom: 26px;
}

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

.category-tile a,
.category-overview-card a {
  display: block;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.06)),
    rgba(15, 23, 42, 0.76);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-tile a:hover,
.category-overview-card a:hover,
.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 22px 58px rgba(8, 47, 73, 0.35);
}

.category-tile__name,
.category-overview-card span {
  display: block;
  margin-bottom: 10px;
  color: #e0f2fe;
  font-size: 19px;
  font-weight: 900;
}

.category-tile p,
.category-overview-card p {
  margin: 0;
  color: #a5b4fc;
  line-height: 1.65;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.category-samples a {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #bae6fd;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-overview-card a {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.category-overview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.category-overview-card img.is-missing {
  opacity: 0;
}

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

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

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card.is-hidden {
  display: none;
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.16), rgba(15, 23, 42, 0.92) 68%);
}

.poster-frame {
  display: block;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 50% 20%, rgba(34, 211, 238, 0.24), transparent 42%),
    linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(2, 6, 23, 0.95));
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.poster-image.is-missing {
  opacity: 0;
}

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

.poster-badge,
.poster-score,
.rank-number {
  position: absolute;
  z-index: 2;
  top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.poster-badge {
  left: 10px;
}

.poster-score {
  right: 10px;
  color: #fef3c7;
}

.rank-number {
  left: 10px;
  top: 44px;
  color: #03131a;
  background: linear-gradient(135deg, var(--amber), #fb7185);
}

.movie-card__body {
  padding: 14px;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--cyan);
}

.movie-card__meta,
.movie-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.movie-card__desc {
  margin-top: 8px;
  color: #cbd5e1;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  min-height: 24px;
  padding: 3px 8px;
  font-size: 12px;
}

.ranking-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.52);
}

.rank-row:hover {
  border-color: rgba(34, 211, 238, 0.44);
}

.rank-row span {
  color: var(--cyan);
  font-weight: 900;
}

.rank-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  color: var(--amber);
  font-style: normal;
  font-weight: 900;
}

.ranking-more {
  width: 100%;
  margin-top: 18px;
}

.page-main {
  padding-top: 96px;
}

.page-hero {
  padding: 56px 0 28px;
}

.page-hero--compact {
  padding-top: 36px;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

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

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

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px;
  gap: 12px;
  margin-top: 26px;
  max-width: 760px;
}

.empty-message {
  display: none;
  margin-top: 18px;
  color: #fda4af;
  font-weight: 700;
}

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

.detail-main {
  padding-bottom: 70px;
}

.detail-shell {
  padding-top: 28px;
}

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

.player-card,
.detail-info,
.detail-text {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
}

.video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 211, 238, 0.22), transparent 19rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

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

.player-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  color: #03131a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 45px rgba(34, 211, 238, 0.3);
  font-size: 28px;
}

.player-label {
  font-size: 18px;
  font-weight: 900;
}

.player-message {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 4;
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.82);
  text-align: center;
}

.player-message.is-visible {
  display: block;
}

.detail-info {
  padding: 24px;
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.detail-one-line {
  margin: 0;
  color: #dbeafe;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.tag-row--detail {
  margin-bottom: 22px;
}

.detail-text {
  padding: 26px;
}

.detail-text h2 + p {
  margin-top: 8px;
}

.detail-text p + h2 {
  margin-top: 28px;
}

.site-footer {
  margin-top: 86px;
  padding: 34px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.65);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #cbd5e1;
}

.footer-grid p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

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

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

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

  .ranking-panel {
    position: static;
  }
}

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

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-carousel {
    min-height: 820px;
  }

  .hero-content {
    min-height: 752px;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 80px;
  }

  .hero-card {
    width: min(300px, 82vw);
    transform: none;
  }

  .quick-search-panel {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

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

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

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 540px) {
  .container,
  .site-header__inner,
  .mobile-nav {
    width: min(100% - 22px, 1180px);
  }

  .site-logo__text {
    max-width: 220px;
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-control {
    display: none;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-actions,
  .wide-search {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .section-block {
    padding-top: 52px;
  }

  .page-main {
    padding-top: 82px;
  }

  .detail-info,
  .detail-text {
    padding: 18px;
  }
}
