:root {
  color-scheme: light;
  --brand: #ea580c;
  --brand-dark: #c2410c;
  --brand-soft: #ffedd5;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f8fafc;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0, #f8fafc 420px, #eef2f7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 55%, #fb923c 100%);
  box-shadow: 0 14px 34px rgba(194, 65, 12, 0.25);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: var(--brand);
  background: #ffffff;
  box-shadow: inset 0 -2px 0 rgba(234, 88, 12, 0.12);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

.desktop-nav a,
.mobile-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.22s ease, transform 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-panel a:hover,
.mobile-panel a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.top-search {
  display: flex;
  align-items: center;
  width: min(310px, 28vw);
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.top-search input,
.mobile-search input,
.large-search input,
.filter-panel input,
.filter-panel select {
  min-width: 0;
  border: 1px solid transparent;
  outline: none;
}

.top-search input {
  flex: 1;
  padding: 10px 12px;
  color: #ffffff;
  background: transparent;
}

.top-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.top-search button,
.mobile-search button,
.large-search button {
  border: none;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.top-search button {
  padding: 9px 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #ffffff;
}

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

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.mobile-search input {
  flex: 1;
  padding: 12px;
  border-radius: 14px;
  color: #ffffff;
  background: transparent;
}

.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.mobile-search button {
  padding: 0 18px;
}

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

.hero-carousel {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 580px;
  margin: 26px auto 30px;
  overflow: hidden;
  border-radius: 32px;
  color: #ffffff;
  background: #111827;
  box-shadow: var(--shadow);
}

.hero-track,
.hero-slide {
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 44px;
  padding: 76px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(12, 18, 32, 0.90), rgba(12, 18, 32, 0.62) 48%, rgba(234, 88, 12, 0.32)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(251, 146, 60, 0.52), transparent 28%), linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.36));
}

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

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow,
.hero-copy .eyebrow,
.page-hero p,
.section-heading p,
.category-overview-head p,
.detail-side p {
  margin: 0 0 10px;
  color: #fb923c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.85;
}

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

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

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.primary-button,
.ghost-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, #ea580c, #f97316);
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.36);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.primary-button:hover,
.ghost-button:hover,
.section-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  background: linear-gradient(135deg, #111827, #7c2d12);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 76px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 9px;
}

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

.hero-dot.is-active {
  background: #ffffff;
}

.quick-search-panel,
.content-section,
.category-overview,
.filter-panel,
.detail-content,
.player-card,
.detail-side,
.next-links,
.ranking-list,
.page-hero {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.quick-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 26px;
  align-items: center;
  margin: 0 0 30px;
  padding: 28px;
}

.quick-search-panel p {
  margin: 0 0 8px;
  color: var(--brand);
  font-weight: 900;
}

.quick-search-panel h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.large-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 22px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.large-search input {
  flex: 1;
  padding: 0 16px;
  border-radius: 16px;
  background: transparent;
}

.large-search button {
  padding: 0 24px;
  color: #ffffff;
  background: var(--brand);
}

.content-section,
.category-overview {
  margin: 30px 0;
  padding: 28px;
}

.section-heading,
.category-overview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading h2,
.category-overview-head h2,
.page-hero h1,
.detail-content h2,
.ranking-info h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-heading h2,
.category-overview-head h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.section-link {
  min-height: 40px;
  padding: 0 18px;
  color: var(--brand-dark);
  background: var(--brand-soft);
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: #fdba74;
  box-shadow: 0 24px 48px rgba(234, 88, 12, 0.16);
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #7c2d12);
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 2 / 2.85;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(234, 88, 12, 0.92);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.rank-badge {
  background: rgba(15, 23, 42, 0.78);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 15px;
}

.card-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.card-body em {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.45;
}

.compact-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  min-height: 140px;
}

.compact-card .poster-frame img {
  height: 100%;
  aspect-ratio: auto;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 60%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(234, 88, 12, 0.13);
}

.category-card span {
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.category-card em {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  color: #374151;
  font-style: normal;
  font-size: 13px;
}

.page-shell {
  padding: 28px 0 42px;
}

.page-hero {
  margin-bottom: 28px;
  padding: 42px;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
}

.page-hero.small-hero {
  padding: 34px 42px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero span,
.category-overview-head span {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px 180px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 15px;
  color: var(--ink);
  background: #f8fafc;
  border-color: #e5e7eb;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #fb923c;
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.16);
}

.flush-section {
  margin-top: 0;
}

.empty-state {
  margin: 24px 0 0;
  padding: 24px;
  border-radius: 18px;
  color: var(--muted);
  background: #f8fafc;
  text-align: center;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 60px 86px minmax(0, 1fr) 70px;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.ranking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #ea580c, #fb923c);
  font-size: 22px;
  font-weight: 900;
}

.ranking-cover {
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
}

.ranking-cover img {
  width: 86px;
  height: 112px;
  object-fit: cover;
}

.ranking-info h2 {
  font-size: 20px;
}

.ranking-info p {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ranking-info span {
  color: #9ca3af;
  font-size: 13px;
}

.ranking-row > strong {
  color: var(--brand-dark);
  font-size: 22px;
}

.detail-shell {
  padding: 26px 0 44px;
}

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

.breadcrumb a {
  color: var(--brand-dark);
  font-weight: 800;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: stretch;
}

.player-card {
  padding: 16px;
}

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #020617;
}

.video-box video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: none;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(234, 88, 12, 0.28), rgba(2, 6, 23, 0.74));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  padding-left: 5px;
  border-radius: 999px;
  color: var(--brand);
  background: #ffffff;
  font-size: 38px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.play-overlay strong {
  font-size: 20px;
}

.detail-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
}

.detail-side img {
  width: 100%;
  aspect-ratio: 2 / 2.85;
  object-fit: cover;
  border-radius: 20px;
  background: #111827;
}

.detail-side h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.detail-side span {
  color: var(--muted);
  line-height: 1.6;
}

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

.detail-content article p {
  color: #374151;
  font-size: 16px;
  line-height: 1.95;
}

.detail-content h2 {
  margin-top: 28px;
  font-size: 26px;
}

.lead-text {
  color: #111827 !important;
  font-size: 20px !important;
  font-weight: 800;
}

.detail-tags span {
  color: var(--brand-dark);
  background: #fff7ed;
  border-color: #fed7aa;
}

.next-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
  padding: 18px;
}

.next-links a {
  padding: 14px;
  border-radius: 16px;
  color: #374151;
  background: #f8fafc;
  font-weight: 800;
  line-height: 1.5;
}

.next-links a:hover {
  color: var(--brand-dark);
  background: #fff7ed;
}

.related-section {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 38px;
  color: #fff7ed;
  background: #111827;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
}

.footer-inner strong {
  font-size: 18px;
}

.footer-inner span {
  color: rgba(255, 247, 237, 0.72);
}

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

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

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 260px;
    padding: 54px;
  }

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

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

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

@media (max-width: 860px) {
  .hero-carousel {
    min-height: 720px;
    border-radius: 24px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 26px;
    padding: 44px 24px 76px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

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

  .hero-dots {
    left: 24px;
  }

  .quick-search-panel,
  .watch-layout,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .large-search,
  .filter-panel {
    grid-template-columns: 1fr;
  }

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

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

  .detail-side {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 17px;
  }

  main,
  .page-shell,
  .detail-shell,
  .hero-carousel {
    width: min(100% - 20px, 1180px);
  }

  .hero-carousel {
    min-height: 660px;
    margin-top: 12px;
  }

  .hero-control {
    display: none;
  }

  .quick-search-panel,
  .content-section,
  .category-overview,
  .page-hero,
  .detail-content {
    padding: 20px;
    border-radius: 20px;
  }

  .section-heading,
  .category-overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .large-search {
    flex-direction: column;
  }

  .large-search input,
  .large-search button {
    min-height: 48px;
  }

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

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

  .compact-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .ranking-row {
    grid-template-columns: 46px 72px minmax(0, 1fr);
  }

  .ranking-row > strong {
    display: none;
  }

  .ranking-number {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .ranking-cover img {
    width: 72px;
    height: 96px;
  }

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