
:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --amber: #f59e0b;
  --amber-soft: #fffbeb;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #f1f5f9;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 36%, #fffbeb 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.12);
}

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

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

.brand-text {
  font-size: 26px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #374151;
  font-weight: 600;
}

.desktop-nav a,
.mobile-panel a {
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--orange-dark);
}

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

.header-search input,
.mobile-search input,
.filter-card input,
.filter-card select {
  width: 100%;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 999px;
  padding: 10px 46px 10px 16px;
  outline: none;
  background: #ffffff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-card input:focus,
.filter-card select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.header-search button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: #374151;
  cursor: pointer;
}

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

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

.mobile-panel a:hover {
  background: #fff7ed;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin: 8px 0 12px;
}

.mobile-search input {
  border-radius: 16px;
  padding-right: 16px;
}

.mobile-search button,
.reset-filter {
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: var(--orange);
  padding: 10px 16px;
  cursor: pointer;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: linear-gradient(135deg, #fef3c7 0%, #ffedd5 45%, #fde68a 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  opacity: 0.38;
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero-glow-one {
  width: 280px;
  height: 280px;
  left: 10%;
  top: 70px;
  background: var(--orange);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  right: 6%;
  bottom: 80px;
  background: var(--amber);
  animation-delay: 1s;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.28; }
  50% { transform: scale(1.12); opacity: 0.45; }
}

.hero-shell {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-summary {
  max-width: 660px;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.8;
  color: #4b5563;
}

.hero-tags,
.tag-row,
.detail-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-pill,
.detail-meta-grid span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #7c2d12;
  padding: 8px 14px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(251, 146, 60, 0.12);
}

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

.btn-primary,
.btn-secondary,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 26px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.28);
}

.btn-secondary {
  color: var(--orange-dark);
  background: #ffffff;
  border: 2px solid rgba(249, 115, 22, 0.36);
}

.btn-light {
  color: var(--orange-dark);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(124, 45, 18, 0.16);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 36px rgba(249, 115, 22, 0.25);
}

.btn-primary.full {
  width: 100%;
  margin-top: 18px;
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #fdba74, #f97316);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

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

.hero-poster::after,
.poster-wrap::after,
.detail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.34));
  pointer-events: none;
}

.hero-poster span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
}

.hero-control-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 36px;
}

.hero-dots,
.hero-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.28);
  cursor: pointer;
}

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

.hero-arrows button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.9);
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(251, 146, 60, 0.18);
}

.stats-section {
  background: #ffffff;
  padding: 34px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card,
.category-card,
.category-overview-card,
.filter-card,
.ranking-panel,
.detail-article,
.related-panel {
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.stat-card {
  padding: 30px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--orange-dark);
  font-size: 42px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

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

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

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.section-title a {
  color: var(--orange-dark);
  font-weight: 800;
}

.compact-title {
  display: block;
}

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

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

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

.movie-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.movie-card-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
}

.movie-card-compact .poster-wrap {
  aspect-ratio: 16 / 9;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.type-badge,
.score-badge,
.category-count {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.type-badge {
  left: 12px;
  top: 12px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
}

.score-badge {
  right: 12px;
  top: 12px;
  color: #78350f;
  background: rgba(254, 243, 199, 0.94);
}

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

.movie-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--orange-dark);
}

.movie-desc {
  min-height: 3.2em;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.movie-meta span {
  border-radius: 999px;
  background: #f8fafc;
  padding: 5px 8px;
}

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

.tag-pill {
  background: #fff7ed;
  color: #9a3412;
  box-shadow: none;
  font-size: 12px;
}

.warm-section {
  background: linear-gradient(180deg, #ffffff, #fff7ed);
}

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

.category-card,
.category-overview-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card::before,
.category-overview-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -38px;
  top: -38px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.11);
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card h3,
.category-overview-card h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.category-card p,
.category-overview-card p {
  color: var(--muted);
  line-height: 1.7;
}

.category-count {
  position: static;
  display: inline-flex;
  color: #ffffff;
  background: var(--orange);
}

.home-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.ranking-panel {
  position: sticky;
  top: 92px;
  padding: 26px;
}

.ranking-head h2 {
  margin-top: 0;
}

.rank-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.rank-list li + li {
  border-top: 1px solid #f1f5f9;
}

.rank-list a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
}

.rank-num,
.table-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-weight: 800;
}

.rank-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.rank-score {
  color: var(--orange-dark);
  font-weight: 800;
}

.cta-section {
  padding: 84px 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 52px);
}

.cta-inner p {
  max-width: 780px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.8;
}

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

.page-hero {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #ffffff;
}

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

.page-hero .eyebrow,
.cta-section .eyebrow {
  color: #fffbeb;
}

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

.page-hero p:not(.eyebrow) {
  max-width: 850px;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.94;
}

.list-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding: 42px 0 78px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 92px;
}

.filter-card {
  padding: 22px;
}

.filter-card h2 {
  margin: 0 0 18px;
}

.filter-card label {
  display: block;
  margin: 16px 0 8px;
  color: #374151;
  font-weight: 800;
}

.filter-card input,
.filter-card select {
  border-radius: 16px;
  padding: 11px 14px;
}

.reset-filter {
  width: 100%;
  margin-top: 18px;
}

.list-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.list-toolbar p {
  margin: 0;
  color: var(--muted);
}

.list-toolbar strong {
  color: var(--orange-dark);
}

.toolbar-note {
  font-size: 14px;
}

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

.category-overview-card {
  min-height: auto;
}

.category-main-link {
  display: block;
}

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.sample-links a {
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.responsive-table {
  overflow-x: auto;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.rank-table th,
.rank-table td {
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
}

.rank-table th {
  color: #78350f;
  background: #fff7ed;
}

.rank-table a {
  color: var(--orange-dark);
  font-weight: 800;
}

.detail-hero {
  padding: 54px 0;
  background: linear-gradient(135deg, #fff7ed, #ffedd5 58%, #fde68a);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-cover {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  box-shadow: var(--shadow);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #9a3412;
  font-weight: 700;
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 850px;
  margin: 0 0 20px;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.8;
}

.large-tags .tag-pill {
  font-size: 14px;
}

.player-section {
  padding: 60px 0 20px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #0f172a;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #0f172a;
}

.play-trigger {
  position: absolute;
  inset: 0;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.68));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

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

.play-icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--orange-dark);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.player-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: 52px 0 84px;
  align-items: start;
}

.detail-article,
.related-panel {
  padding: 30px;
}

.detail-article h2,
.related-panel h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.detail-article h2:not(:first-child) {
  margin-top: 34px;
}

.detail-article p {
  color: #374151;
  font-size: 17px;
  line-height: 2;
}

.info-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
}

.related-panel {
  position: sticky;
  top: 92px;
}

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

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #1f2937);
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
}

.site-footer p {
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #d1d5db;
}

.site-footer a:hover {
  color: #fdba74;
}

.footer-bottom {
  margin-top: 38px;
  padding: 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #9ca3af;
}

.is-filtered-out {
  display: none !important;
}

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

  .menu-toggle {
    display: block;
  }

  .hero-slide,
  .detail-hero-grid,
  .home-two-col,
  .detail-content-grid,
  .list-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-slide {
    gap: 26px;
  }

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

  .filter-panel,
  .ranking-panel,
  .related-panel {
    position: static;
  }

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

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

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

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

  .brand-text {
    font-size: 22px;
  }

  .home-hero,
  .hero-shell {
    min-height: 760px;
  }

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

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-summary,
  .detail-one-line {
    font-size: 16px;
  }

  .stats-grid,
  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .list-toolbar {
    display: block;
  }

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

  .detail-hero-grid {
    gap: 24px;
  }

  .detail-cover {
    max-width: 280px;
  }

  .detail-article,
  .related-panel,
  .filter-card {
    padding: 22px;
  }
}
