:root {
  --amber: #f59e0b;
  --orange: #ea580c;
  --red: #dc2626;
  --ink: #111827;
  --muted: #6b7280;
  --paper: #ffffff;
  --soft: #fff7ed;
  --line: #fed7aa;
  --shadow: 0 24px 70px rgba(124, 45, 18, 0.18);
}

* {
  box-sizing: border-box;
}

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

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(254, 215, 170, 0.78);
  box-shadow: 0 12px 30px rgba(124, 45, 18, 0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #f97316 55%, #dc2626);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.32);
}

.brand-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #b45309, #ea580c, #dc2626);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.nav-dropdown-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #374151;
  font-weight: 700;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link-active,
.nav-dropdown:hover .nav-dropdown-button {
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  right: 0;
  top: 42px;
  width: 220px;
  display: grid;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #4b5563;
}

.dropdown-panel a:hover {
  color: var(--orange);
  background: #fff7ed;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #ffffff;
}

.header-search input,
.large-search input,
.filter-search input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.header-search input {
  width: 210px;
  padding: 8px 8px 8px 14px;
}

.header-search button,
.large-search button {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  font-weight: 800;
  border-radius: 999px;
  padding: 9px 18px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.24);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #fff7ed;
  border-radius: 14px;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #9a3412;
}

.mobile-menu {
  display: none;
  padding: 10px 24px 24px;
  border-top: 1px solid #fed7aa;
  background: #ffffff;
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 10px 0;
  font-weight: 700;
  color: #374151;
}

.mobile-menu form {
  display: flex;
  gap: 8px;
}

.mobile-menu input {
  flex: 1;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 10px 14px;
}

.mobile-menu button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--orange);
}

.hero {
  padding: 28px 24px 0;
}

.hero-slider {
  position: relative;
  max-width: 1280px;
  min-height: 620px;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #7c2d12;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(251, 191, 36, 0.34), transparent 35%),
    linear-gradient(90deg, rgba(67, 20, 7, 0.92) 0%, rgba(124, 45, 18, 0.76) 48%, rgba(124, 45, 18, 0.36) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.05));
}

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

.hero-copy {
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b45309;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #fde68a;
  margin-bottom: 20px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 700px;
  margin: 0 0 24px;
  color: #ffedd5;
  font-size: 19px;
  line-height: 1.9;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.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;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, #f59e0b, #ea580c, #dc2626);
  padding: 13px 24px;
  box-shadow: 0 18px 34px rgba(220, 38, 38, 0.28);
}

.ghost-button {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 11px 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

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

.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
  background: #111827;
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #ffffff;
  font-weight: 900;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.92);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 72px;
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 24px;
}

.section-soft,
.section-categories {
  max-width: none;
  padding-left: max(24px, calc((100% - 1280px) / 2 + 24px));
  padding-right: max(24px, calc((100% - 1280px) / 2 + 24px));
}

.section-soft {
  background: linear-gradient(90deg, #fff7ed, #fffbeb);
}

.section-categories {
  background: linear-gradient(135deg, #ffedd5, #fef3c7, #fee2e2);
}

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

.center-head {
  justify-content: center;
  text-align: center;
}

.section-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.section-head p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-link {
  color: var(--orange);
  background: #ffffff;
  border: 1px solid #fed7aa;
  padding: 12px 18px;
}

.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(4, minmax(0, 1fr));
}

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

.movie-card {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(124, 45, 18, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(124, 45, 18, 0.18);
}

.poster-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #1f2937;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.66));
  opacity: 0.8;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.86);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.24s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-category {
  position: absolute;
  right: 14px;
  top: 14px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  padding: 7px 12px;
  background: linear-gradient(90deg, #f59e0b, #ea580c);
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.card-body strong {
  font-size: 20px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover .card-body strong {
  color: var(--orange);
}

.card-body em {
  color: #78716c;
  font-style: normal;
  font-size: 13px;
}

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

.tag-row span,
.detail-tags span {
  color: #c2410c;
  background: #ffedd5;
}

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

.ranking-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.ranking-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px 116px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(124, 45, 18, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(124, 45, 18, 0.17);
}

.rank-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.ranking-item img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 16px;
}

.ranking-copy {
  display: grid;
  gap: 8px;
}

.ranking-copy strong {
  font-size: 19px;
}

.ranking-copy em {
  color: #78716c;
  font-size: 13px;
  font-style: normal;
}

.ranking-copy span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

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

.category-tile,
.category-overview-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(124, 45, 18, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(124, 45, 18, 0.18);
}

.category-tile span,
.category-overview-card span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  border-radius: 22px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.category-tile strong,
.category-overview-card strong {
  font-size: 20px;
}

.category-tile em,
.category-overview-card em {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-style: normal;
}

.page-hero,
.detail-hero {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 54px 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ffedd5, #fef3c7, #fee2e2);
  box-shadow: 0 18px 48px rgba(124, 45, 18, 0.1);
}

.page-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #57534e;
  font-size: 18px;
  line-height: 1.85;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #9a3412;
  font-size: 14px;
  font-weight: 800;
}

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

.filter-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid #fed7aa;
  border-radius: 24px;
  background: #fff7ed;
}

.filter-search {
  display: grid;
  gap: 8px;
  min-width: min(420px, 100%);
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
}

.filter-search input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #fdba74;
  border-radius: 999px;
  background: #ffffff;
}

.sort-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sort-buttons button {
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 10px 16px;
  color: #9a3412;
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.sort-buttons button.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(90deg, #f59e0b, #ea580c);
}

.large-search {
  display: flex;
  gap: 10px;
  max-width: 680px;
  margin-top: 26px;
  padding: 8px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(124, 45, 18, 0.12);
}

.large-search input {
  flex: 1;
  padding: 12px 16px;
}

.detail-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 34px 24px 0;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  align-content: center;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  background: radial-gradient(circle at 50% 42%, rgba(249, 115, 22, 0.22), rgba(0, 0, 0, 0.72) 62%);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-cover span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 18px 34px rgba(234, 88, 12, 0.35);
}

.player-cover strong {
  max-width: min(680px, 80%);
  font-size: clamp(22px, 4vw, 38px);
}

.detail-card,
.side-card {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(124, 45, 18, 0.1);
}

.detail-card {
  padding: 34px;
}

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

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

.detail-meta span {
  border-radius: 999px;
  color: #78350f;
  background: #fef3c7;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
}

.detail-card h2 {
  margin: 30px 0 12px;
  font-size: 24px;
}

.detail-card p {
  color: #4b5563;
  line-height: 1.95;
  font-size: 17px;
}

.detail-card .lead-text {
  color: #1f2937;
  font-weight: 800;
}

.detail-side {
  display: grid;
  gap: 20px;
  align-content: start;
  position: sticky;
  top: 100px;
}

.detail-poster {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.side-card {
  padding: 24px;
}

.side-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.side-card p {
  color: var(--muted);
  line-height: 1.8;
}

.full-button {
  width: 100%;
  margin-top: 12px;
}

.related-section {
  padding-top: 54px;
}

.site-footer {
  margin-top: 70px;
  color: #ffedd5;
  background: linear-gradient(180deg, #7c2d12, #431407);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  padding: 46px 24px 28px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand .brand-mark {
  width: 46px;
  height: 46px;
}

.footer-brand strong {
  font-size: 24px;
}

.footer-brand p {
  margin: 0;
  max-width: 430px;
  color: #fed7aa;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 12px;
}

.footer-links a {
  color: #fed7aa;
  padding: 8px 10px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 34px;
  color: #fdba74;
  font-size: 13px;
}

[data-card].is-hidden {
  display: none;
}

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

  .mobile-menu-button {
    display: inline-block;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 64px 42px;
  }

  .hero-poster {
    display: none;
  }

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

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

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

  .detail-side {
    position: static;
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero {
    padding: 16px 14px 0;
  }

  .hero-slider,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding: 42px 28px;
  }

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

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

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    left: 28px;
    bottom: 24px;
  }

  .section {
    padding: 54px 16px;
  }

  .section-head,
  .filter-bar,
  .large-search {
    display: grid;
  }

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

  .poster-wrap {
    height: 360px;
  }

  .ranking-item {
    grid-template-columns: 48px 86px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .ranking-item img {
    width: 86px;
    height: 86px;
  }

  .ranking-copy span {
    display: none;
  }

  .page-hero,
  .detail-hero {
    margin: 16px 14px 0;
    padding: 36px 22px;
  }

  .detail-layout {
    padding: 24px 14px 0;
  }

  .detail-card {
    padding: 24px;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}
