:root {
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: rgba(15, 23, 42, 0.72);
  --panel-strong: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --gold: #f59e0b;
  --gold-strong: #d97706;
  --gold-soft: rgba(245, 158, 11, 0.16);
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(245, 158, 11, 0.13), transparent 32rem),
    radial-gradient(circle at 92% 8%, rgba(59, 130, 246, 0.11), transparent 34rem),
    var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: #111827;
  background: linear-gradient(135deg, #facc15, #f59e0b 55%, #fb923c);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted-strong);
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: var(--gold-soft);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
}

.nav-search input,
.hero-search input {
  width: 210px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  padding: 9px 12px;
}

.nav-search input::placeholder,
.hero-search input::placeholder {
  color: #64748b;
}

.nav-search button,
.hero-search button {
  border: 0;
  border-radius: 999px;
  color: #111827;
  background: var(--gold);
  padding: 8px 16px;
  font-weight: 800;
  transition: 0.2s ease;
}

.nav-search button:hover,
.hero-search button:hover {
  background: #fbbf24;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
}

.hero-slider {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero-image {
  position: absolute;
  inset: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  object-fit: cover;
  filter: blur(10px) brightness(0.48) saturate(1.08);
}

.hero-layer,
.detail-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.62) 45%, rgba(2, 6, 23, 0.88)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.2), #020617 96%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 56px;
  padding: 72px 0;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text h1,
.hero-text h2,
.page-hero h1,
.detail-hero h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.hero-text h1 {
  font-size: clamp(42px, 8vw, 82px);
}

.hero-text h2 {
  margin-top: 10px;
  font-size: clamp(28px, 4.4vw, 52px);
}

.hero-text p,
.page-hero p,
.detail-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: clamp(16px, 2vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.button-primary {
  color: #111827;
  background: var(--gold);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #fbbf24;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.7);
}

.button-secondary:hover {
  border-color: rgba(245, 158, 11, 0.55);
  color: var(--gold);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.62);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: 0.25s ease;
}

.hero-card:hover {
  transform: rotate(0deg) translateY(-6px);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.72);
  color: var(--muted-strong);
  font-size: 13px;
  backdrop-filter: blur(12px);
}

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

.hero-prev,
.hero-next,
.hero-dot {
  border: 1px solid rgba(248, 250, 252, 0.18);
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
}

.hero-prev,
.hero-next {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--gold);
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: rgba(15, 23, 42, 0.42);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-head.simple {
  align-items: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.section-head a {
  color: var(--gold);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  transition: 0.24s ease;
}

.movie-card:hover {
  border-color: rgba(245, 158, 11, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: 0.36s ease;
}

.movie-card-feature .movie-poster img {
  aspect-ratio: 4 / 3;
}

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

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #111827;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.22s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translateY(0);
}

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

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-title:hover {
  color: var(--gold);
}

.movie-card-body p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
}

.movie-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.08);
}

.mini-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-tags {
  margin-top: 12px;
}

.mini-tags span,
.tag-cloud a {
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(148, 163, 184, 0.1);
  font-size: 12px;
}

.mini-tags span {
  padding: 4px 8px;
}

.tag-cloud a {
  padding: 8px 12px;
  transition: 0.2s ease;
}

.tag-cloud a:hover {
  color: #111827;
  background: var(--gold);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.category-card img,
.category-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-card img {
  object-fit: cover;
  opacity: 0.46;
  transition: 0.3s ease;
}

.category-overlay {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.92));
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.62;
}

.category-card strong,
.category-card em,
.category-card small {
  position: relative;
  z-index: 2;
  display: block;
}

.category-card strong {
  margin-top: 76px;
  font-size: 24px;
  font-weight: 900;
}

.category-card em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.category-card small {
  margin-top: 10px;
  color: var(--muted-strong);
  line-height: 1.5;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.compact-list {
  display: grid;
  gap: 12px;
}

.compact-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.6);
  transition: 0.2s ease;
}

.compact-card:hover {
  border-color: rgba(245, 158, 11, 0.55);
  background: rgba(15, 23, 42, 0.95);
}

.compact-poster {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #111827;
}

.compact-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: 0.3s ease;
}

.rank-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #111827;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.compact-info {
  min-width: 0;
}

.compact-info strong,
.compact-info em,
.compact-info small {
  display: block;
}

.compact-info strong {
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-info em {
  margin-top: 3px;
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
}

.compact-info small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.95)),
    radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.2), transparent 34rem);
}

.page-hero h1,
.detail-hero h1 {
  max-width: 920px;
  font-size: clamp(34px, 6vw, 60px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-stats span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.64);
  font-size: 13px;
}

.channel-nav {
  padding-top: 28px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.72);
}

.pill-link span {
  color: var(--gold);
}

.pill-link:hover,
.pill-link.is-current {
  color: #111827;
  border-color: transparent;
  background: var(--gold);
}

.pill-link:hover span,
.pill-link.is-current span {
  color: #111827;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 62px 132px minmax(0, 1fr) 160px;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  transition: 0.2s ease;
}

.ranking-row:hover {
  border-color: rgba(245, 158, 11, 0.55);
  transform: translateX(4px);
}

.ranking-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #111827;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  font-weight: 900;
}

.ranking-row img {
  width: 132px;
  aspect-ratio: 16 / 10;
  border-radius: 13px;
  object-fit: cover;
  transition: 0.3s ease;
}

.ranking-main {
  min-width: 0;
}

.ranking-main strong,
.ranking-main em,
.ranking-side b,
.ranking-side small {
  display: block;
}

.ranking-main strong {
  overflow: hidden;
  font-size: 18px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-main em {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ranking-side {
  text-align: right;
}

.ranking-side b {
  color: var(--gold);
}

.ranking-side small {
  margin-top: 4px;
  color: var(--muted);
}

.search-hero .container {
  max-width: 820px;
}

.hero-search {
  display: flex;
  gap: 10px;
  max-width: 650px;
  margin-top: 28px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.68);
}

.hero-search input {
  flex: 1;
  width: auto;
  padding-left: 18px;
}

.detail-hero {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
}

.detail-bg {
  position: absolute;
  inset: 0;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.42);
  transform: scale(1.05);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb,
.breadcrumb-separator {
  color: var(--muted-strong);
  font-size: 14px;
}

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

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

.detail-main,
.detail-aside {
  min-width: 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
}

.player-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 0;
  color: var(--text);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.58));
  transition: 0.2s ease;
}

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

.play-icon {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  color: #111827;
  background: var(--gold);
  font-size: 30px;
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.3);
}

.player-overlay strong {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
}

.info-box,
.cover-panel,
.side-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.info-box {
  margin-top: 22px;
  padding: 26px;
}

.info-box h2,
.cover-panel h2,
.side-panel h2,
.site-footer h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.info-box p {
  margin: 0;
  color: var(--muted-strong);
}

.info-box p + p {
  margin-top: 14px;
}

.lead-text {
  color: var(--text) !important;
  font-size: 18px;
  font-weight: 700;
}

.cover-panel,
.side-panel {
  padding: 18px;
}

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

.cover-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  object-fit: cover;
}

.cover-panel dl {
  margin: 18px 0 0;
}

.cover-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.cover-panel dt {
  color: var(--muted);
}

.cover-panel dd {
  margin: 0;
  color: var(--muted-strong);
  text-align: right;
}

.cover-panel a {
  color: var(--gold);
}

.side-panel {
  margin-top: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.82);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

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

.footer-links a {
  color: var(--muted-strong);
}

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

.footer-tags a {
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .nav-search {
    display: none;
  }

  .main-nav.is-open,
  .nav-search.is-open {
    display: flex;
    grid-column: 1 / -1;
  }

  .main-nav.is-open {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .nav-search.is-open {
    width: 100%;
    margin-bottom: 14px;
  }

  .nav-search.is-open input {
    width: 100%;
    flex: 1;
  }

  .hero-content,
  .detail-layout,
  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

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

  .cover-panel {
    position: static;
  }
}

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

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

  .hero-content {
    padding-top: 56px;
  }

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

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

  .section {
    padding: 48px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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

  .ranking-row img {
    width: 92px;
  }

  .ranking-side {
    grid-column: 2 / -1;
    text-align: left;
  }

  .page-hero,
  .detail-hero {
    padding: 58px 0 48px;
  }

  .detail-layout {
    padding-top: 28px;
  }

  .info-box {
    padding: 20px;
  }
}
