:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(225, 29, 72, 0.14);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, var(--rose-50) 0%, #ffffff 45%, #fdf2f8 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  height: 76px;
  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;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-600));
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.25);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.06);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 23px;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-600));
  -webkit-background-clip: text;
  color: transparent;
}

.brand-copy small {
  color: var(--muted);
  margin-top: 5px;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-weight: 700;
  color: #374151;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--rose-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-form,
.mobile-search,
.large-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--rose-100);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.08);
  overflow: hidden;
}

.search-form input,
.mobile-search input,
.large-search input,
.page-filter {
  border: 0;
  outline: 0;
  background: transparent;
  color: #374151;
}

.search-form input {
  width: 210px;
  padding: 11px 14px 11px 18px;
}

.search-form button,
.mobile-search button,
.large-search button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-600));
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--rose-50);
  color: var(--rose-600);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.mobile-panel {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 20px;
  border-top: 1px solid var(--line);
}

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

.mobile-link {
  padding: 11px 14px;
  border-radius: 14px;
  color: #374151;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.active {
  background: var(--rose-50);
}

.mobile-search input {
  width: 100%;
  padding: 12px 16px;
}

.hero {
  position: relative;
  height: min(760px, 70vh);
  min-height: 520px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.08));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 16px));
  top: 50%;
  width: min(680px, calc(100% - 48px));
  transform: translateY(-50%);
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.8;
}

.hero-actions,
.detail-tags,
.movie-meta,
.tag-row,
.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.white-btn,
.text-link,
.light-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-600));
  padding: 14px 26px;
  box-shadow: 0 18px 38px rgba(225, 29, 72, 0.28);
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 24px;
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.white-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 18px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.52);
  padding: 0;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.section-wrap,
.detail-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.section-wrap {
  padding: 64px 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-card h1 {
  margin: 10px 0 10px;
  color: #111827;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p,
.search-panel p,
.callout-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.text-link {
  color: var(--rose-600);
  border: 1px solid var(--rose-100);
  background: #ffffff;
  padding: 11px 18px;
}

.text-link:hover {
  box-shadow: 0 10px 22px rgba(225, 29, 72, 0.14);
}

.quick-search-block {
  padding-bottom: 28px;
}

.search-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--rose-100);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.search-panel h2 {
  margin: 14px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
}

.large-search {
  min-height: 58px;
}

.large-search input {
  width: 100%;
  padding: 17px 20px;
}

.large-search button {
  min-height: 58px;
  padding: 0 28px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(225, 29, 72, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111827;
}

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

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

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.64));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .card-cover::after {
  opacity: 1;
}

.play-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.duration-chip,
.category-chip,
.rank-badge {
  position: absolute;
  z-index: 4;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.duration-chip {
  right: 12px;
  bottom: 12px;
  background: rgba(2, 6, 23, 0.72);
  padding: 7px 10px;
}

.category-chip {
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-600));
  padding: 7px 11px;
}

.rank-badge {
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.76);
}

.card-body {
  padding: 18px;
}

.card-body h2 {
  margin: 0 0 9px;
  font-size: 19px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--rose-600);
}

.card-body p {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

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

.tag-row {
  margin-top: 13px;
  gap: 8px;
}

.tag-row span {
  color: var(--rose-700);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
}

.horizontal-card {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
}

.horizontal-card .card-cover {
  height: 100%;
  aspect-ratio: auto;
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-600));
  box-shadow: var(--shadow);
}

.category-tile {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.category-tile::before,
.category-overview-card::before,
.callout-panel::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.category-tile span {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 900;
}

.category-tile strong {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.7;
}

.theme-orange { background: linear-gradient(135deg, #f97316, #dc2626); }
.theme-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.theme-purple { background: linear-gradient(135deg, #8b5cf6, #d946ef); }
.theme-green { background: linear-gradient(135deg, #22c55e, #059669); }
.theme-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.theme-amber { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.theme-red { background: linear-gradient(135deg, #ef4444, #be123c); }
.theme-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.theme-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.theme-slate { background: linear-gradient(135deg, #475569, #0f172a); }
.theme-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }

.highlight-band {
  width: min(1320px, calc(100% - 28px));
  padding: 46px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 241, 242, 0.95), rgba(253, 242, 248, 0.95));
  box-shadow: inset 0 0 0 1px rgba(225, 29, 72, 0.08);
}

.horizontal-list {
  display: grid;
  gap: 18px;
}

.callout-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
  border-radius: 34px;
  padding: 58px 28px;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
  box-shadow: var(--shadow);
}

.callout-panel h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
}

.callout-panel p {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.86);
}

.white-btn {
  position: relative;
  z-index: 2;
  color: var(--rose-600);
  background: #ffffff;
  padding: 13px 24px;
}

.white-btn.small {
  padding: 10px 16px;
}

.masonry-grid {
  columns: 3 280px;
  column-gap: 24px;
}

.masonry-grid .movie-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  break-inside: avoid;
}

.page-hero {
  padding: 78px 0;
  color: #ffffff;
}

.gradient-hero {
  background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.22), transparent 28%), linear-gradient(135deg, var(--rose-600), var(--pink-600));
}

.page-hero-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero .section-kicker {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.page-hero h1 {
  color: #ffffff;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb a:hover {
  color: #ffffff;
}

.category-overview-list {
  display: grid;
  gap: 30px;
}

.category-overview-card {
  padding: 32px;
}

.category-overview-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.category-overview-head h2 {
  margin: 12px 0 8px;
  font-size: 34px;
}

.category-overview-head p {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
}

.compact-grid {
  position: relative;
  z-index: 2;
}

.filter-bar {
  justify-content: space-between;
  margin-bottom: 28px;
}

.page-filter {
  flex: 1;
  min-width: 260px;
  padding: 15px 18px;
  border: 1px solid var(--rose-100);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.08);
}

.detail-shell {
  padding: 36px 0 8px;
}

.detail-breadcrumb {
  color: var(--muted);
  margin: 0 0 24px;
}

.detail-breadcrumb a:hover {
  color: var(--rose-600);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.82fr);
  gap: 30px;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.22);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

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

.overlay-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.3);
}

.detail-card,
.side-card,
.poster-panel {
  border: 1px solid rgba(225, 29, 72, 0.08);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.detail-card {
  margin-top: 24px;
  padding: 30px;
}

.detail-tags {
  margin-bottom: 16px;
  color: var(--muted);
}

.detail-tags > span:not(.category-chip) {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f9fafb;
}

.static-chip {
  position: static;
  display: inline-flex;
  padding: 9px 12px;
}

.detail-card h1 {
  margin-top: 0;
}

.detail-card h2,
.side-card h2,
.poster-panel h2 {
  margin: 26px 0 10px;
  font-size: 24px;
  color: #111827;
}

.detail-card p {
  margin: 0;
  color: #374151;
  line-height: 2;
}

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

.side-column {
  display: grid;
  align-content: start;
  gap: 22px;
}

.poster-panel {
  overflow: hidden;
}

.poster-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.poster-panel div {
  padding: 20px;
}

.poster-panel h2 {
  margin: 0 0 8px;
}

.poster-panel p {
  margin: 0;
  color: var(--muted);
}

.side-card {
  padding: 24px;
}

.side-card h2 {
  margin-top: 0;
}

.side-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.side-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.side-card dt {
  color: var(--muted);
}

.side-card dd {
  margin: 0;
  color: #111827;
  font-weight: 800;
  text-align: right;
}

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

.search-page-form {
  margin-bottom: 34px;
}

.site-footer {
  margin-top: 68px;
  color: #ffffff;
  background: linear-gradient(135deg, #881337, #831843, #7f1d1d);
}

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

.footer-inner h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-inner p,
.footer-inner a {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

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

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

.footer-logo .brand-mark {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.is-hidden-card {
  display: none !important;
}

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

  .menu-toggle {
    display: inline-flex;
  }

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

  .detail-layout,
  .footer-inner,
  .search-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: 68px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    top: 52%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

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

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

  .highlight-band {
    padding: 30px 18px;
  }

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

  .horizontal-card .card-cover {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .section-wrap,
  .detail-shell,
  .page-hero-inner,
  .header-inner,
  .mobile-panel,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 22px, 1280px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .four-cols,
  .three-cols,
  .horizontal-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-overview-card,
  .detail-card,
  .side-card {
    padding: 22px;
  }

  .footer-inner {
    gap: 20px;
  }
}
