:root {
  --fire-50: #fff7ed;
  --fire-100: #ffedd5;
  --fire-500: #f97316;
  --fire-600: #ea580c;
  --fire-700: #c2410c;
  --ember-50: #fffbeb;
  --ember-100: #fef3c7;
  --ember-500: #f59e0b;
  --ember-600: #d97706;
  --forest-50: #f0fdf4;
  --forest-100: #dcfce7;
  --forest-600: #16a34a;
  --ash-50: #f9fafb;
  --ash-100: #f3f4f6;
  --ash-200: #e5e7eb;
  --ash-300: #d1d5db;
  --ash-500: #6b7280;
  --ash-600: #4b5563;
  --ash-700: #374151;
  --ash-800: #1f2937;
  --ash-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 16px 40px rgba(17, 24, 39, 0.12);
  --shadow-lg: 0 24px 70px rgba(17, 24, 39, 0.18);
  --radius-lg: 18px;
  --radius-xl: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ash-900);
  background: var(--ash-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "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;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(16px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--fire-500), var(--ember-600));
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.3);
}

.brand-text {
  display: grid;
}

.brand-text strong {
  color: var(--ash-900);
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-text small {
  color: var(--ash-600);
  font-size: 12px;
  margin-top: -2px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: var(--ash-700);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link.active {
  color: var(--fire-600);
}

.search-open,
.mobile-toggle,
.search-close,
.back-to-top {
  border: 0;
  cursor: pointer;
}

.search-open {
  padding: 10px 18px;
  color: var(--white);
  background: var(--ash-900);
  border-radius: 999px;
}

.mobile-toggle {
  display: none;
  color: var(--ash-800);
  background: transparent;
  font-size: 26px;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel.open {
  display: grid;
  gap: 12px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: var(--ash-700);
  font-weight: 700;
  border-top: 1px solid var(--ash-200);
}

.search-layer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  padding: 90px 18px 18px;
  background: rgba(17, 24, 39, 0.58);
  backdrop-filter: blur(10px);
}

.search-layer.open {
  display: block;
}

.search-box {
  width: min(780px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--ash-200);
}

.site-search-input,
.page-filter-input {
  width: 100%;
  border: 1px solid var(--ash-200);
  border-radius: 16px;
  padding: 14px 18px;
  outline: none;
  background: var(--white);
  color: var(--ash-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-input:focus,
.page-filter-input:focus {
  border-color: var(--fire-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-close {
  width: 42px;
  height: 42px;
  color: var(--ash-700);
  background: var(--ash-100);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.search-results {
  max-height: 64vh;
  overflow: auto;
  padding: 12px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  transition: background 0.2s ease;
}

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

.search-result-item img {
  width: 92px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.search-result-item strong {
  display: block;
  color: var(--ash-900);
  font-size: 17px;
}

.search-result-item span,
.search-result-item p,
.empty-result {
  color: var(--ash-600);
  font-size: 14px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fire-50), var(--ember-50) 48%, var(--ash-100));
}

.hero-slider {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 44px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 110px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 0 0 46px 46px;
  opacity: 0.12;
  filter: blur(10px);
}

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

.hero-content,
.hero-poster {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: var(--fire-700);
  background: rgba(255, 237, 213, 0.92);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-content h1 {
  margin: 0 0 18px;
  color: var(--ash-900);
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--ash-700);
  font-size: 20px;
}

.hero-tags,
.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--ash-700);
  background: var(--ash-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags .tag-pill {
  color: var(--ash-800);
  background: rgba(255, 255, 255, 0.78);
}

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

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

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--fire-600), var(--ember-600));
  box-shadow: 0 14px 26px rgba(234, 88, 12, 0.28);
}

.btn-light {
  color: var(--ash-900);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(209, 213, 219, 0.72);
}

.btn.full {
  width: 100%;
}

.hero-poster {
  display: block;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster:hover img {
  transform: scale(1.05);
}

.hero-tools {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: -88px;
  padding-bottom: 34px;
}

.hero-search {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(75, 85, 99, 0.28);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: var(--fire-600);
}

.hero-mini-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-movie {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.mini-movie img {
  width: 72px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.mini-movie span {
  color: var(--ash-900);
  font-weight: 800;
}

.page-section {
  padding: 72px 0;
  background: var(--white);
}

.gradient-soft {
  background: linear-gradient(135deg, var(--fire-50), var(--ember-50));
}

.gradient-green {
  background: linear-gradient(135deg, var(--forest-50), var(--ash-50));
}

.gradient-rank {
  background: linear-gradient(135deg, var(--ash-900), #27110a 55%, #3b1b08);
  color: var(--white);
}

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

.section-head h2,
.rank-layout h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-head p,
.rank-layout p {
  margin: 8px 0 0;
  color: var(--ash-600);
}

.gradient-rank .section-head p,
.gradient-rank .rank-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.section-more {
  color: var(--fire-600);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ash-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: var(--shadow-md);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ash-200);
}

.card-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.card-year {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.74);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 18px;
}

.card-meta {
  color: var(--ash-500);
  font-size: 13px;
  font-weight: 700;
}

.movie-card h3,
.ranking-info h2 {
  margin: 8px 0 8px;
  color: var(--ash-900);
  line-height: 1.28;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  font-size: 18px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card h3 a:hover,
.ranking-info h2 a:hover {
  color: var(--fire-600);
}

.movie-card p {
  display: -webkit-box;
  min-height: 50px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--ash-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-featured .card-cover img {
  aspect-ratio: 16 / 9;
}

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

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

.category-tile {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ash-200);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.category-main {
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 24px;
}

.category-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-600), var(--fire-600));
  border-radius: 16px;
  font-size: 22px;
  font-weight: 900;
}

.category-main strong {
  font-size: 22px;
}

.category-main p {
  margin: 0;
  color: var(--ash-600);
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 24px;
}

.category-samples a {
  padding: 6px 10px;
  color: var(--ash-700);
  background: var(--ash-100);
  border-radius: 999px;
  font-size: 13px;
}

.rank-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.rank-item span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--fire-600);
  border-radius: 12px;
  font-weight: 900;
}

.rank-item em {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.sub-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--ash-900), var(--fire-700));
  padding: 72px 0;
}

.sub-hero.fire {
  background: linear-gradient(135deg, var(--fire-600), var(--ember-600));
}

.category-hero {
  background: linear-gradient(135deg, var(--forest-600), var(--ash-800));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.breadcrumb span::before,
.breadcrumb a + span::before,
.breadcrumb a + a::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.sub-hero h1 {
  max-width: 900px;
  margin: 0 0 12px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.sub-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.filter-bar {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--ash-200);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.ranking-list {
  display: grid;
  gap: 16px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--ash-200);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.ranking-cover {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.ranking-cover img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}

.ranking-cover span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--fire-600);
  border-radius: 14px;
  font-weight: 900;
}

.ranking-info p {
  color: var(--ash-700);
}

.detail-top {
  padding: 28px 0 72px;
  background: linear-gradient(180deg, var(--ash-900) 0, var(--ash-900) 360px, var(--ash-50) 360px);
}

.detail-top .breadcrumb {
  color: rgba(255, 255, 255, 0.7);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--white);
  border: 0;
  background: radial-gradient(circle at center, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.68));
  cursor: pointer;
}

.player-overlay.hidden {
  display: none;
}

.play-circle {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  padding-left: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--fire-600), var(--ember-600));
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.34);
}

.detail-info,
.detail-block,
.poster-panel,
.related-panel {
  background: var(--white);
  border: 1px solid var(--ash-200);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.detail-info {
  padding: 28px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.detail-meta span {
  padding: 8px 12px;
  color: var(--fire-700);
  background: var(--fire-50);
  border-radius: 12px;
  font-weight: 800;
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lead-text {
  margin: 0 0 18px;
  color: var(--ash-700);
  font-size: 18px;
}

.detail-block {
  padding: 28px;
}

.detail-block h2,
.related-panel h2 {
  margin: 0 0 14px;
  color: var(--ash-900);
  font-size: 24px;
}

.detail-block p {
  margin: 0;
  color: var(--ash-700);
  white-space: pre-line;
}

.review-block {
  background: var(--forest-50);
  border-left: 6px solid var(--forest-600);
}

.detail-side {
  position: sticky;
  top: 96px;
}

.poster-panel {
  padding: 16px;
}

.poster-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
}

.related-panel {
  padding: 18px;
}

.related-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--ash-200);
}

.related-item:first-of-type {
  border-top: 0;
}

.related-item img {
  width: 96px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  grid-row: span 2;
}

.related-item span {
  color: var(--ash-900);
  font-weight: 800;
}

.related-item small {
  color: var(--ash-500);
}

.site-footer {
  color: var(--ash-100);
  background: var(--ash-900);
}

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

.footer-brand {
  color: var(--white);
  font-size: 24px;
}

.site-footer p {
  color: var(--ash-300);
}

.site-footer h3 {
  margin-top: 0;
  color: var(--white);
}

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

.footer-links a {
  color: var(--ash-300);
}

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

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

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--fire-600);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  display: block;
}

.hidden-card {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero-slide {
    grid-template-columns: 1fr 320px;
  }

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

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

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 780px) {
  .nav-links,
  .search-open {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-slider {
    min-height: 760px;
  }

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

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

  .hero-tools {
    grid-template-columns: 1fr;
    margin-top: -70px;
  }

  .hero-search,
  .filter-bar {
    flex-direction: column;
  }

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

  .section-head {
    display: grid;
  }

  .movie-grid,
  .featured-grid,
  .movie-grid-three,
  .category-grid,
  .category-grid.large {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    grid-template-columns: 1fr;
  }

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

  .detail-top {
    background: var(--ash-50);
    padding-top: 18px;
  }

  .detail-top .breadcrumb {
    color: var(--ash-600);
  }

  .detail-top .breadcrumb span::before,
  .detail-top .breadcrumb a + span::before,
  .detail-top .breadcrumb a + a::before {
    color: var(--ash-400);
  }
}
