:root {
  --color-bg: #f8fafc;
  --color-panel: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-soft: #e5e7eb;
  --color-accent: #059669;
  --color-accent-dark: #047857;
  --color-emerald-soft: #d1fae5;
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 42px rgba(15, 23, 42, 0.14);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981, #2563eb);
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.28);
}

.brand-name {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 9px 13px;
  border-radius: 999px;
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-accent-dark);
  background: var(--color-emerald-soft);
}

.nav-link-muted {
  color: #64748b;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #111827;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #111827;
}

.hero-backdrop {
  position: absolute;
  inset: -40px;
  background-position: center;
  background-size: cover;
  filter: blur(22px) brightness(0.42);
  transform: scale(1.08);
  transition: background-image 0.6s ease, opacity 0.6s ease;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.64) 52%, rgba(17, 24, 39, 0.32)),
    linear-gradient(0deg, #111827, transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 70vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 42px;
  padding: 70px 0 86px;
}

.hero-copy {
  color: #ffffff;
}

.hero-slide {
  display: none;
  max-width: 760px;
  animation: fadeUp 0.5s ease both;
}

.hero-slide.is-active {
  display: block;
}

.hero-kicker,
.detail-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-kicker span,
.detail-kicker span,
.detail-kicker a {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #d1fae5;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #e5e7eb;
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions,
.quick-entry,
.filter-row,
.search-result-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: var(--color-accent);
  box-shadow: 0 14px 28px rgba(5, 150, 105, 0.3);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--color-accent-dark);
  box-shadow: 0 18px 36px rgba(5, 150, 105, 0.36);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.ghost-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.ghost-button.dark {
  color: #0f172a;
  background: #ffffff;
  border-color: #e2e8f0;
}

.hero-search {
  width: min(620px, 100%);
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 0 14px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button {
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: var(--color-accent);
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
}

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-panel-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-mini-card:hover,
.hero-mini-card.is-active {
  transform: translateX(-4px);
  background: rgba(16, 185, 129, 0.38);
}

.hero-mini-card img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(37, 99, 235, 0.32));
}

.hero-mini-card span {
  font-weight: 750;
}

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

.hero-control,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-control {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 30px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-entry,
.content-section,
.page-main,
.detail-main {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.quick-entry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  gap: 16px;
}

.quick-entry a {
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.quick-entry strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.quick-entry span {
  color: var(--color-muted);
}

.content-section {
  padding: 58px 0 0;
}

.soft-panel {
  margin-top: 58px;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ecfdf5, #eff6ff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-line {
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), rgba(5, 150, 105, 0));
}

.section-more {
  color: var(--color-accent-dark);
  font-weight: 800;
}

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

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

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

.category-grid {
  padding-top: 28px;
}

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

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

.movie-poster,
.horizontal-cover,
.ranking-cover,
.detail-poster {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ecfdf5, #dbeafe);
}

.movie-poster {
  display: block;
  aspect-ratio: 3 / 4;
}

.wide-card .movie-poster {
  aspect-ratio: 16 / 10;
}

.movie-poster img,
.horizontal-cover img,
.ranking-cover img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover img,
.horizontal-card:hover img,
.ranking-row:hover img {
  transform: scale(1.06);
}

.poster-badge,
.poster-year {
  position: absolute;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(5, 150, 105, 0.92);
  backdrop-filter: blur(10px);
}

.poster-badge {
  left: 12px;
}

.poster-year {
  right: 12px;
  background: rgba(15, 23, 42, 0.72);
}

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

.movie-title,
.horizontal-title,
.ranking-title {
  display: block;
  color: #0f172a;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
}

.movie-title:hover,
.horizontal-title:hover,
.ranking-title:hover {
  color: var(--color-accent-dark);
}

.movie-card-body p,
.horizontal-card p,
.ranking-info p,
.category-overview-card p,
.footer-brand p,
.footer-group p {
  color: var(--color-muted);
}

.movie-card-body p {
  min-height: 46px;
  margin: 9px 0 12px;
  font-size: 14px;
}

.movie-meta,
.horizontal-meta,
.ranking-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

.movie-meta a,
.ranking-meta a {
  color: var(--color-accent-dark);
  font-weight: 800;
}

.movie-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.movie-tags span,
.detail-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #065f46;
  background: #d1fae5;
  font-size: 12px;
  font-weight: 750;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.horizontal-cover {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}

.horizontal-card p {
  margin: 8px 0 12px;
  font-size: 14px;
}

.page-main,
.detail-main {
  padding: 38px 0 70px;
}

.page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 260px;
  padding: 38px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.45), transparent 30%),
    linear-gradient(135deg, #0f172a, #064e3b 55%, #1e3a8a);
  box-shadow: var(--shadow-md);
}

.small-hero {
  min-height: 220px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #dbeafe;
  font-size: 18px;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.category-overview-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.category-overview-head strong {
  color: var(--color-accent-dark);
  font-size: 16px;
}

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

.category-samples a {
  color: #334155;
  font-weight: 700;
}

.category-samples a:hover {
  color: var(--color-accent-dark);
}

.filter-panel,
.search-app {
  margin-top: 26px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.filter-row label {
  display: grid;
  gap: 7px;
  min-width: 210px;
  flex: 1;
  color: #475569;
  font-weight: 800;
}

.filter-row input,
.filter-row select {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  outline: 0;
  padding: 12px 14px;
  background: #f8fafc;
}

.filter-row input:focus,
.filter-row select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.filter-count,
.search-result-head {
  margin-top: 16px;
  color: #475569;
  font-weight: 800;
}

.ranking-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 64px 92px 1fr 78px;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.ranking-rank,
.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981, #2563eb);
  font-weight: 900;
}

.ranking-rank {
  width: 54px;
  height: 54px;
  font-size: 18px;
}

.rank-number {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 38px;
  height: 30px;
  font-size: 13px;
}

.ranking-cover {
  width: 92px;
  height: 112px;
  border-radius: 16px;
}

.ranking-info p {
  margin: 8px 0;
}

.ranking-score {
  color: var(--color-accent-dark);
  font-size: 28px;
  text-align: right;
}

.search-app .movie-grid {
  margin-top: 22px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #64748b;
  font-weight: 700;
}

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

.player-section {
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: var(--shadow-md);
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.video-element {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.34), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

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

.play-symbol {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-accent);
  font-size: 34px;
  box-shadow: 0 20px 45px rgba(5, 150, 105, 0.35);
}

.player-overlay strong {
  font-size: 24px;
}

.player-overlay small {
  color: #d1fae5;
}

.player-status {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.68);
  font-size: 13px;
  pointer-events: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  margin-top: 32px;
}

.detail-poster {
  height: 430px;
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.detail-info {
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.detail-info h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 18px 0;
  color: #334155;
  font-size: 20px;
  font-weight: 700;
}

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

.detail-meta-grid div {
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
}

.detail-meta-grid span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.detail-meta-grid strong {
  display: block;
  margin-top: 5px;
  color: #0f172a;
}

.detail-info h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.detail-info p {
  color: #475569;
  font-size: 17px;
}

.related-section {
  width: 100%;
}

.site-footer {
  margin-top: 70px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 46px 0;
}

.footer-logo {
  color: #ffffff;
  font-size: 20px;
}

.footer-group h3 {
  margin: 0 0 12px;
  color: #ffffff;
}

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

.footer-group a:hover {
  color: #6ee7b7;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 18px;
  color: #94a3b8;
  text-align: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-panel-title {
    grid-column: 1 / -1;
  }

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

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

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

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

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

@media (max-width: 820px) {
  .site-nav {
    height: 62px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    border-radius: 14px;
  }

  .hero-inner {
    min-height: 660px;
    padding: 54px 0 96px;
  }

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

  .hero-mini-card {
    grid-template-columns: 72px 1fr;
  }

  .quick-entry,
  .category-overview-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .compact-grid,
  .wide-grid,
  .horizontal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .ranking-row {
    grid-template-columns: 50px 76px 1fr;
  }

  .ranking-score {
    grid-column: 3;
    text-align: left;
    font-size: 20px;
  }

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

  .detail-poster {
    width: min(320px, 100%);
    height: auto;
    aspect-ratio: 3 / 4;
  }
}

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

  .hero-search,
  .filter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search button {
    width: 100%;
  }

  .movie-grid,
  .compact-grid,
  .wide-grid,
  .horizontal-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-card {
    grid-template-columns: 98px 1fr;
  }

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

  .section-line {
    width: 100%;
    flex: none;
  }

  .detail-info {
    padding: 20px;
  }

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