:root {
  --bg: #f3eee3;
  --bg-deep: #ece4d6;
  --paper: rgba(255, 255, 255, 0.82);
  --paper-strong: rgba(255, 255, 255, 0.94);
  --panel-dark: #142031;
  --panel-dark-strong: #0d1725;
  --text: #162130;
  --text-soft: #3f4a5b;
  --muted: #667186;
  --line: rgba(22, 33, 48, 0.1);
  --line-strong: rgba(22, 33, 48, 0.18);
  --accent: #8b2230;
  --accent-strong: #671723;
  --accent-soft: rgba(139, 34, 48, 0.1);
  --gold: #c79a57;
  --gold-soft: rgba(199, 154, 87, 0.14);
  --success: #0d766e;
  --shadow-soft: 0 18px 38px rgba(20, 32, 49, 0.08);
  --shadow: 0 28px 60px rgba(20, 32, 49, 0.12);
  --shadow-strong: 0 36px 78px rgba(20, 32, 49, 0.18);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 154, 87, 0.16), transparent 22%),
    radial-gradient(circle at 92% 10%, rgba(139, 34, 48, 0.1), transparent 18%),
    linear-gradient(180deg, #f6f1e7 0%, #f1eadf 44%, #ece4d8 100%);
}

body::selection {
  background: rgba(139, 34, 48, 0.18);
  color: var(--text);
}

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

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

button,
input {
  font: inherit;
}

p {
  margin: 0;
}

h1,
h2,
h3,
strong {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
}

:focus-visible {
  outline: 2px solid rgba(139, 34, 48, 0.45);
  outline-offset: 4px;
}

.site-noise,
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.site-noise {
  background-image:
    linear-gradient(rgba(22, 33, 48, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 33, 48, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 82%);
  opacity: 0.72;
}

.page-glow {
  z-index: -3;
}

.page-glow-left {
  background: radial-gradient(circle at 10% 16%, rgba(199, 154, 87, 0.22), transparent 30%);
}

.page-glow-right {
  background: radial-gradient(circle at 92% 18%, rgba(139, 34, 48, 0.16), transparent 28%);
}

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

.section-pad {
  padding: 40px 0;
}

.section-tight {
  padding-top: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(139, 34, 48, 0.38);
}

.topline {
  padding-top: 18px;
}

.site-masthead {
  padding: 26px 0 8px;
}

.masthead-shell {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.masthead-brand {
  display: grid;
  justify-items: center;
  gap: 0;
}

.site-logo-frame {
  display: block;
  overflow: hidden;
  background: transparent;
}

.site-logo {
  display: block;
  width: 75%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.masthead-logo-frame {
  width: clamp(240px, 36vw, 440px);
  height: clamp(98px, 15vw, 176px);
  border-radius: 24px;
  box-shadow: none;
}

.footer-logo-frame {
  flex: 0 0 auto;
  width: 148px;
  height: 58px;
  border-radius: 12px;
}

.mobile-topic-tabs {
  display: none;
}

.masthead-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(155deg, var(--panel-dark), #24344b);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 22px 42px rgba(20, 32, 49, 0.22);
}

.masthead-copy {
  display: grid;
  gap: 4px;
}

.masthead-copy strong {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.masthead-copy span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.masthead-note {
  max-width: 54ch;
  color: var(--text-soft);
  line-height: 1.7;
}

.topline-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topline-shell p {
  font-weight: 800;
  color: var(--text);
}

.topline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topline-meta span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topline-meta span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(22, 33, 48, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0 0;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 26px;
  background: rgba(248, 244, 237, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.nav-shell::before {
  content: "";
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background:
    linear-gradient(155deg, var(--panel-dark), #24344b),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(20, 32, 49, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.84rem, 0.68rem + 0.32vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: center;
}

.mobile-wordmark {
  display: none;
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav .nav-home {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(22, 33, 48, 0.08);
  color: var(--text);
}

.site-nav .nav-home svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

#channel-link-top {
  justify-self: end;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(199, 154, 87, 0.9));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--panel-dark), #23344d);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(20, 32, 49, 0.18);
}

.button-secondary {
  border-color: rgba(22, 33, 48, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(139, 34, 48, 0.22);
  box-shadow: 0 16px 28px rgba(139, 34, 48, 0.08);
}

.hero-grid,
.hero-stats,
.hero-note-grid,
.channel-banner,
.mini-stat-grid,
.featured-player-shell,
.editorial-grid,
.faq-grid,
.footer-shell {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 1.02fr);
  align-items: center;
  padding: 28px 0 12px;
}

.hero-hidden-stats {
  display: none;
}

.hero-grid-video-only {
  grid-template-columns: 1fr;
  min-height: calc(100vh - 250px);
  align-items: stretch;
  padding-top: 22px;
}

.hero-grid-video-only .hero-visual,
.hero-grid-video-only .hero-screen {
  min-height: inherit;
}

.hero-grid-video-only .hero-screen {
  display: grid;
  grid-template-rows: auto 1fr;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7.2vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.hero-text,
.overview-copy,
.channel-banner p,
.section-heading p,
.status-panel,
.featured-player-copy p,
.editorial-card p,
.faq-card p,
.video-card-copy p,
.mini-stat-card span,
.footer-brand p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin-top: 18px;
  font-size: 1.04rem;
}

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

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.hero-note-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.stat-card,
.hero-note,
.coverage-overview,
.channel-banner,
.status-panel,
.featured-player-shell,
.editorial-card,
.faq-card,
.cta-slab,
.search-shell,
.mini-stat-card,
.channel-badge,
.shelf-panel,
.video-card,
.footer-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 246, 240, 0.88));
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  font-size: 1.78rem;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-note {
  padding: 20px 22px;
}

.hero-note strong {
  display: block;
  font-size: 1.05rem;
}

.hero-note p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.72;
}

.hero-screen {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 85% 16%, rgba(199, 154, 87, 0.18), transparent 18%),
    linear-gradient(180deg, #101a29 0%, #172334 100%);
  box-shadow: var(--shadow-strong);
}

.hero-screen::after {
  content: "";
  position: absolute;
  inset: auto auto -14% -10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(139, 34, 48, 0.18);
  filter: blur(32px);
}

.hero-screen-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-screen-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.hero-screen-top p {
  margin-left: auto;
}

.hero-screen-body {
  padding: 20px;
}

.hero-watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 14px;
  align-items: stretch;
  height: 100%;
}

.hero-grid-video-only .hero-watch-layout {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  height: clamp(620px, calc(100vh - 260px), 760px);
}

.hero-main-video,
.hero-playlist {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-main-video {
  overflow: hidden;
}

.hero-video-stage,
.hero-featured-thumb,
.hero-video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 0;
}

.hero-video-stage {
  position: relative;
}

.hero-video-stage .hero-featured-thumb,
.hero-video-stage .hero-video-frame {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-video-frame {
  width: 100%;
}

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

.hero-featured-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(3, 7, 18, 0.58));
}

.hero-featured-thumb {
  padding: 0;
  cursor: pointer;
}

.hero-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.92);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.hero-play-button::before {
  content: "";
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #ffffff;
}

.hero-watch-copy {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
  color: #ffffff;
}

.hero-watch-copy strong {
  display: block;
  font-size: clamp(1.25rem, 2.3vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: 0;
  color: #ffffff;
}

.hero-watch-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.hero-playlist {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(3, 7, 18, 0.38);
  height: 100%;
  max-height: 100%;
  min-height: 0;
}

.hero-playlist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-playlist-head strong {
  color: #ffffff;
  font-size: 0.76rem;
}

.hero-playlist-list {
  display: grid;
  align-content: start;
  max-height: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
  scrollbar-width: thin;
}

.hero-playlist-list::-webkit-scrollbar {
  width: 8px;
}

.hero-playlist-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-playlist-item {
  display: grid;
  grid-template-columns: 18px 72px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.hero-playlist-item:hover,
.hero-playlist-item:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.hero-playlist-number {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-playlist-item img {
  width: 72px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: #000000;
}

.hero-playlist-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-playlist-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-size: 0.76rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-playlist-copy small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(199, 154, 87, 0.18);
  color: #f8e9cf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-chip-alt {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.coverage-overview {
  padding: 26px 28px;
}

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

.section-heading h2,
.channel-banner h2,
.cta-slab h2 {
  font-size: clamp(2rem, 4.3vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.shelf-section .section-heading,
#archive .section-heading {
  align-items: center;
}

.shelf-section .section-heading .eyebrow,
.shelf-section .section-heading p,
#archive .section-heading .eyebrow,
#archive .section-heading p {
  display: none;
}

.shelf-section .section-heading h2,
#archive .section-heading h2 {
  max-width: none;
  overflow: hidden;
  font-size: clamp(1.72rem, 2.8vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-heading h2 {
  max-width: none;
}

.section-heading p:last-child,
.cta-slab p {
  margin-top: 14px;
}

.section-heading-compact {
  align-items: start;
}

.overview-copy {
  max-width: 42ch;
}

.zone-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.zone-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.zone-pill:hover,
.zone-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 34, 48, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
}

.channel-banner {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  padding: 32px;
  text-align: center;
}

.channel-copy p {
  max-width: 82ch;
  margin-inline: auto;
  white-space: pre-line;
}

.mini-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  gap: 14px;
}

.mini-stat-card,
.channel-badge {
  padding: 18px;
}

.mini-stat-card span,
.channel-badge span,
.search-shell span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-stat-card strong,
.channel-badge strong {
  display: block;
  margin-top: 10px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.shelf-panel-shorts {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(199, 154, 87, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 243, 235, 0.92));
}

.shorts-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: 22px;
  align-items: end;
}

.shorts-copy {
  text-align: center;
}

.shorts-copy .eyebrow {
  justify-content: center;
}

.shorts-copy p:last-child,
.shorts-badge p {
  color: var(--muted);
  line-height: 1.75;
}

.shorts-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.shorts-badge {
  padding: 20px 22px;
  border: 1px solid rgba(22, 33, 48, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.shorts-badge span {
  display: block;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shorts-badge strong {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
}

.shorts-badge p {
  margin-top: 10px;
}

.channel-actions {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.status-panel {
  margin-top: 24px;
  padding: 18px 20px;
}

.status-panel.is-success {
  border-color: rgba(13, 118, 110, 0.18);
  color: var(--success);
}

.status-panel.is-error {
  border-color: rgba(139, 34, 48, 0.18);
  color: var(--accent);
}

.featured-player-shell {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  margin-top: 24px;
  padding: 24px;
}

.featured-player-frame {
  overflow: hidden;
  min-height: 420px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 16% 18%, rgba(199, 154, 87, 0.14), transparent 22%),
    linear-gradient(180deg, #111a28 0%, #182536 100%);
}

.featured-player-frame iframe,
.featured-player-placeholder,
.featured-demo {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.featured-player-placeholder,
.featured-demo {
  display: grid;
  align-content: end;
  padding: 28px;
}

.featured-player-placeholder strong {
  color: #ffffff;
  font-size: 2rem;
}

.featured-player-placeholder p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.featured-demo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, rgba(139, 34, 48, 0.2), transparent 28%);
  color: #ffffff;
}

.featured-demo-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-demo-title {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.featured-demo-summary {
  margin-top: 14px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.78);
}

.featured-demo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.featured-player-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.featured-player-copy h3 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.featured-meta span {
  color: var(--muted);
}

.featured-meta a,
.section-link {
  color: var(--accent);
  font-weight: 800;
}

.featured-meta a:hover,
.featured-meta a:focus-visible,
.section-link:hover,
.section-link:focus-visible {
  color: var(--accent-strong);
}

.editorial-break {
  padding-top: 6px;
}

.playlist-shell {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(199, 154, 87, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 243, 235, 0.92));
  box-shadow: var(--shadow-soft);
}

.playlist-frame-shell {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(22, 33, 48, 0.1);
  border-radius: 26px;
  background: var(--panel-dark);
  box-shadow: var(--shadow);
}

.playlist-frame-shell iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
}

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

.editorial-card,
.faq-card {
  padding: 24px;
}

.editorial-card h3,
.faq-card h3 {
  font-size: 1.44rem;
  line-height: 1.18;
}

.editorial-card p,
.faq-card p {
  margin-top: 12px;
}

.shelf-section,
#all-videos,
#archive,
#faq {
  scroll-margin-top: 120px;
}

.shelf-panel {
  padding: 28px;
}

.shelf-panel-archive {
  padding-bottom: 30px;
}

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

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

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

#shorts .video-grid {
  display: block;
}

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

#shorts .short-video-card {
  border-radius: 18px;
}

#shorts .short-video-card .video-card-thumbnail {
  border-radius: 18px 18px 0 0;
}

#shorts .short-video-card .video-card-copy {
  padding: 14px 14px 16px;
}

#shorts .short-video-card .video-card-copy h3 {
  display: -webkit-box;
  min-height: 3.1em;
  overflow: hidden;
  font-size: 0.98rem;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#shorts .short-video-card .video-card-meta {
  margin-top: 10px;
}

.shorts-view-more,
.archive-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin: 26px auto 0;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--panel-dark);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(20, 32, 49, 0.16);
}

.shorts-view-more:hover,
.shorts-view-more:focus-visible,
.archive-load-more:hover,
.archive-load-more:focus-visible {
  background: var(--accent);
}

.archive-load-more {
  margin-top: 30px;
}

.video-embed-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 246, 240, 0.92));
  box-shadow: var(--shadow-soft);
}

.video-embed-frame {
  background: #111827;
  aspect-ratio: 16 / 9;
}

.video-embed-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed-copy {
  padding: 18px 20px 22px;
}

.video-card-label-inline {
  position: static;
  width: fit-content;
  margin-bottom: 14px;
}

.video-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(22, 33, 48, 0.16);
}

.video-card button {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.video-card button:focus-visible {
  outline-offset: -6px;
}

.video-card-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #dde4ed, #ccd5e3);
}

#shorts .video-card-thumbnail {
  aspect-ratio: 9 / 16;
}

.video-card-thumbnail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(11, 18, 28, 0.28) 100%);
  z-index: 1;
}

.video-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.video-card:hover .video-card-thumbnail img,
.video-card button:focus-visible .video-card-thumbnail img {
  transform: scale(1.04);
}

.video-card-thumbnail::after {
  content: "Play";
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#shorts .video-card-thumbnail::after {
  content: "Short";
}

.video-card-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card-copy {
  padding: 20px 20px 22px;
}

.video-card-copy h3 {
  font-size: 1.16rem;
  line-height: 1.34;
}

.video-card-copy p {
  margin-top: 12px;
  font-size: 0.93rem;
}

.video-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.video-card-meta a {
  color: var(--accent);
  font-weight: 600;
}

.video-card-empty {
  display: grid;
  align-items: center;
}

.search-shell {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: min(100%, 340px);
  padding: 16px 18px 16px 18px;
}

.search-shell::after {
  content: "Search";
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(22, 33, 48, 0.32);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-shell input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  padding-right: 74px;
}

.search-shell input::placeholder {
  color: rgba(102, 113, 134, 0.8);
}

.cta-slab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(199, 154, 87, 0.22), transparent 24%),
    linear-gradient(180deg, #111a28 0%, #182536 100%);
}

.cta-slab h2,
.cta-slab p,
.cta-slab .eyebrow {
  color: #ffffff;
}

.cta-slab p {
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.76);
}

.cta-slab .eyebrow::before {
  background: rgba(255, 255, 255, 0.34);
}

.cta-slab .button-primary {
  background: linear-gradient(135deg, var(--gold), #aa7a38);
  color: #1a1a1a;
  box-shadow: 0 18px 32px rgba(199, 154, 87, 0.2);
}

.site-footer {
  padding: 0 0 32px;
}

.footer-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 24px 28px;
}

.footer-brand strong {
  display: block;
  font-size: 1.2rem;
}

.footer-brand p {
  margin-top: 6px;
  max-width: 48ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.48;
}

.shorts-reel-view[hidden] {
  display: none;
}

.shorts-reel-view {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
}

body.shorts-reel-open {
  overflow: hidden;
}

.shorts-reel-track {
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.shorts-reel-track::-webkit-scrollbar {
  display: none;
}

.shorts-reel-card {
  position: relative;
  display: grid;
  place-items: center;
  height: 100dvh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #000000;
}

.shorts-reel-player {
  position: relative;
  width: min(100vw, 520px);
  height: 100dvh;
  overflow: hidden;
  background: #111111;
}

.shorts-reel-player iframe,
.shorts-reel-poster,
.shorts-reel-poster img {
  width: 100%;
  height: 100%;
}

.shorts-reel-player iframe {
  display: block;
  border: 0;
}

.shorts-reel-poster {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: #111111;
  cursor: pointer;
}

.shorts-reel-poster img {
  object-fit: cover;
}

.shorts-reel-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.54));
}

.shorts-reel-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
}

.shorts-reel-play::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 21px;
  width: 0;
  height: 0;
  border-left: 20px solid #0f0f0f;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.shorts-reel-copy {
  position: absolute;
  left: max(16px, calc((100vw - 520px) / 2 + 16px));
  right: max(16px, calc((100vw - 520px) / 2 + 16px));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 3;
  display: grid;
  gap: 8px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.shorts-reel-copy span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shorts-reel-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.shorts-reel-back {
  position: fixed;
  top: max(58px, calc(env(safe-area-inset-top) + 34px));
  left: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.shorts-reel-back span {
  margin-top: -2px;
  font-size: 2.2rem;
  line-height: 1;
}

.shorts-reel-brand {
  position: fixed;
  top: max(20px, calc(env(safe-area-inset-top) + 6px));
  left: 0;
  right: 0;
  z-index: 3;
  width: fit-content;
  margin: 0 auto;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero-grid,
  .channel-banner,
  .featured-player-shell,
  .cta-slab,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .shorts-banner {
    grid-template-columns: 1fr;
  }

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

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

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

  .playlist-frame-shell iframe {
    min-height: 620px;
  }

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

  .channel-actions,
  .footer-links {
    justify-items: start;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .nav-shell .button.button-primary {
    width: 100%;
  }

  .nav-shell::before {
    display: none;
  }

  .site-nav {
    justify-content: space-between;
    gap: 14px;
    justify-self: stretch;
  }

  #channel-link-top {
    justify-self: stretch;
  }

  .hero-copy h1,
  .section-heading h2,
  .channel-banner h2,
  .cta-slab h2 {
    max-width: 100%;
  }

  .hero-stats,
  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body {
    background: #ffffff;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .topline,
  .site-masthead,
  .section-tight,
  .coverage-overview,
  #all-videos,
  #channel,
  #featured-player,
  .editorial-break,
  #press,
  #podcasts,
  #judiciary,
  #democracy,
  #rights,
  #trending,
  #faq {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 4px 0 6px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08), 0 8px 24px rgba(15, 23, 42, 0.06);
  }

  .nav-shell {
    display: grid;
    gap: 6px;
    width: 100%;
    padding: 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-shell::before,
  #channel-link-top {
    display: none;
  }

  .mobile-wordmark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    padding: 2px 0 4px;
    color: #0f0f0f;
    text-align: center;
  }

  .mobile-wordmark .mobile-logo-frame {
    width: min(76vw, 270px);
    height: 66px;
    border-radius: 0;
    box-shadow: none;
    
  }

  .mobile-wordmark span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: clamp(0.98rem, 4.3vw, 1.12rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.05;
  }

  .mobile-wordmark span::before {
    content: none;
    width: 24px;
    height: 17px;
    border-radius: 5px;
    background: #ff0033 url("data:image/svg+xml,%3Csvg viewBox='0 0 12 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5v11l10-5.5z' fill='white'/%3E%3C/svg%3E") center / 8px 10px no-repeat;
  }

  .mobile-wordmark small {
    display: none;
    margin-top: 2px;
    color: #606060;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .site-nav {
    display: flex;
    width: 100%;
    gap: 7px;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px 2px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #0f0f0f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-nav .nav-home {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
  }

  .site-nav .nav-home svg {
    width: 17px;
    height: 17px;
  }

  .site-nav a[href="#top"],
  .site-nav a[href="#latest"],
  .site-nav a[href="#shorts"],
  .site-nav a[href="#archive"] {
    background: #0f0f0f;
    color: #ffffff;
  }

  .site-nav a[href="#latest"],
  .site-nav a[href="#shorts"],
  .site-nav a[href="#press"],
  .site-nav a[href="#archive"] {
    border: 1px solid #e9e9e9;
    background: #f4f4f4;
    color: #0f0f0f;
  }

  .site-nav a[href="#podcasts"] {
    display: none;
  }

  .site-nav a.is-filter-active {
    border-color: #0f0f0f;
    background: #0f0f0f;
    color: #ffffff;
  }

  .hero {
    order: 1;
  }

  #latest {
    order: 2;
  }

  #shorts {
    order: 3;
  }

  #archive {
    order: 4;
  }

  .hero.section-pad {
    padding: 0;
  }

  .hero .container {
    width: 100%;
  }

  .hero-grid-video-only {
    min-height: 0;
    padding: 0;
  }

  .hero-screen {
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  .hero-screen-top,
  .hero-playlist {
    display: none;
  }

  .hero-screen-body {
    padding: 0;
  }

  .hero-watch-layout,
  .hero-grid-video-only .hero-watch-layout {
    display: block;
    height: auto;
    min-height: 0;
  }

  .hero-main-video {
    border: 0;
    border-radius: 0;
    background: #ffffff;
  }

  .hero-video-stage,
  .hero-featured-thumb,
  .hero-video-frame {
    border-radius: 0;
  }

  .hero-watch-copy {
    gap: 6px;
    padding: 8px 12px 12px;
    color: #0f0f0f;
  }

  .hero-watch-copy .hero-chip {
    display: none;
  }

  .hero-watch-copy strong {
    color: #0f0f0f;
    font-size: 1rem;
    line-height: 1.32;
  }

  .hero-watch-copy p {
    color: #606060;
    font-size: 0.82rem;
  }

  .shelf-section,
  #archive {
    padding: 10px 0;
    background: #ffffff;
  }

  .shelf-section .container,
  #archive .container {
    width: 100%;
  }

  .shelf-panel,
  .shelf-panel-archive {
    padding: 12px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  .section-heading {
    gap: 8px;
    padding: 0;
  }

  .section-heading .eyebrow,
  .section-heading p,
  .section-link {
    display: none;
  }

  .section-heading h2 {
    color: #0f0f0f;
    font-size: 1.42rem;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
  }

  #latest .section-heading h2 {
    display: block;
    width: 100%;
    max-width: min(18ch, calc(100vw - 24px));
    overflow: visible;
    padding-right: 8px;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: break-word;
  }

  #latest .section-heading > div {
    width: 100%;
    min-width: 0;
  }

  .mobile-topic-tabs {
    display: none;
  }

  .mobile-topic-tabs button {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid #e7e7e7;
    border-radius: 999px;
    background: #f4f4f4;
    color: #0f0f0f;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .mobile-topic-tabs button.is-active {
    border-color: #0f0f0f;
    background: #0f0f0f;
    color: #ffffff;
  }

  #latest .video-grid .video-card:nth-child(n + 5) {
    display: none;
  }

  #shorts .video-grid {
    display: block;
    height: auto;
    margin-top: 0;
    overflow: visible;
    padding: 0;
    scrollbar-width: none;
  }

  #shorts .shorts-feed {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  #shorts .video-grid::-webkit-scrollbar {
    display: none;
  }

  #shorts {
    min-height: 0;
    padding: 10px 0;
    background: #ffffff;
  }

  #shorts .container,
  #shorts .shelf-panel {
    width: 100%;
    padding: 12px;
    background: #ffffff;
  }

  #shorts .shorts-banner {
    display: none;
  }

  #shorts .section-heading {
    display: flex;
  }

  #shorts .short-video-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #ffffff;
  }

  #shorts .short-video-card button {
    display: block;
    padding: 0;
  }

  #shorts .short-video-card .video-card-copy {
    padding: 8px 4px 2px;
  }

  #shorts .short-video-card .video-card-copy h3 {
    min-height: 2.8em;
    font-size: 0.83rem;
    line-height: 1.32;
  }

  #shorts .short-video-card .video-card-meta,
  .shorts-reel-copy span {
    display: none;
  }

  #shorts .short-video-card .video-card-thumbnail {
    aspect-ratio: 9 / 16;
    border-radius: 12px 12px 0 0;
  }

  #shorts .shorts-view-more {
    min-height: 44px;
    margin: 18px auto 4px;
    padding: 0 28px;
    background: #0f0f0f;
    color: #ffffff;
    box-shadow: none;
  }

  .video-grid {
    gap: 0;
    margin-top: 10px;
  }

  #archive .video-grid {
    display: block;
  }

  .video-card {
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  .video-card:hover {
    transform: none;
    box-shadow: none;
  }

  #latest .video-card button {
    display: grid;
    grid-template-columns: 152px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 10px 0;
  }

  #archive .video-card button {
    display: block;
    padding: 10px 0 18px;
  }

  #archive .video-card {
    border-bottom: 10px solid #f5f5f5;
  }

  #archive .video-card:last-child {
    border-bottom: 0;
  }

  .video-card-thumbnail {
    border-radius: 8px;
  }

  #latest .video-card-thumbnail {
    aspect-ratio: 16 / 9;
  }

  #archive .video-card-thumbnail {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  #archive .video-card-copy {
    padding: 10px 2px 0;
  }

  #archive .video-card-copy h3 {
    font-size: 0.98rem;
    line-height: 1.34;
  }

  #archive .video-card-meta {
    justify-content: flex-start;
  }

  #archive .archive-load-more {
    min-height: 46px;
    margin: 22px auto 6px;
    padding: 0 28px;
    background: #0f0f0f;
    color: #ffffff;
    box-shadow: none;
  }

  #shorts .video-card-thumbnail {
    border-radius: 10px;
  }

  .video-card-thumbnail::after {
    content: "";
    left: auto;
    right: 8px;
    bottom: 8px;
    min-height: 24px;
    width: 24px;
    padding: 0;
    border-radius: 50%;
  }

  .video-card-thumbnail::before {
    background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.3));
  }

  .video-card-label {
    top: 8px;
    left: 8px;
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .video-card-copy {
    padding: 0;
  }

  .video-card-copy h3 {
    display: -webkit-box;
    overflow: hidden;
    color: #0f0f0f;
    font-size: 0.92rem;
    line-height: 1.28;
    letter-spacing: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .video-card-copy p {
    display: none;
  }

  .video-card-meta {
    gap: 8px;
    margin-top: 6px;
    color: #606060;
    font-size: 0.74rem;
  }

  .site-footer {
    display: block;
    padding: 12px 0 18px;
    background: #0f0f0f;
  }

  .site-footer .container {
    width: 100%;
  }

  .footer-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background: #0f0f0f;
    box-shadow: none;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-logo-frame {
    width: min(70vw, 240px);
    height: 58px;
    border-radius: 0;
    display: none;
  }

  .footer-brand strong {
    color: #ffffff;
    font-size: 1rem;
  }

  .footer-brand p {
    max-width: 32ch;
    margin: 6px auto 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .footer-links {
    justify-content: center;
    gap: 14px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
  }

  .topline-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-note-grid,
  .video-grid,
  .editorial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-playlist-item {
    grid-template-columns: 18px 86px minmax(0, 1fr);
  }

  .hero-playlist-item img {
    width: 86px;
  }

  .video-grid-embed {
    grid-template-columns: 1fr;
  }

  .hero-screen-body,
  .coverage-overview,
  .playlist-shell,
  .channel-banner,
  .shelf-panel,
  .status-panel,
  .featured-player-shell,
  .cta-slab,
  .footer-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-screen-body {
    padding-left: 0;
    padding-right: 0;
  }

  .featured-player-frame,
  .featured-player-frame iframe,
  .featured-player-placeholder,
  .featured-demo {
    min-height: 300px;
  }

  .featured-demo-title {
    font-size: 2rem;
  }

  .playlist-frame-shell iframe {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .section-pad {
    padding: 30px 0;
  }

  .topline {
    padding-top: 14px;
  }

  .site-masthead {
    padding-top: 18px;
  }

  .nav-shell {
    padding: 0 12px 6px;
    border-radius: 0;
  }

  .playlist-frame-shell iframe {
    min-height: 420px;
  }

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

  .masthead-mark {
    width: 70px;
    height: 70px;
    border-radius: 24px;
  }

  .site-nav {
    flex-wrap: nowrap;
  }

  .hero-grid {
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .channel-banner,
  .featured-player-shell,
  .cta-slab,
  .footer-shell {
    gap: 18px;
  }

  .video-card-copy,
  .stat-card,
  .hero-note,
  .editorial-card,
  .faq-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  #archive .video-card-copy {
    padding: 10px 2px 0;
  }
}
