/* El Método Bukele — editorial night */
:root {
  --ink: #07090d;
  --ink-2: #0c1017;
  --surface: #121821;
  --surface-2: #18202c;
  --gold: #c9a227;
  --gold-soft: #e8c96a;
  --gold-dim: rgba(201, 162, 39, 0.14);
  --ivory: #f0e6d2;
  --ivory-dim: #b7ae9c;
  --muted: #8a8478;
  --line: rgba(240, 230, 210, 0.1);
  --line-gold: rgba(201, 162, 39, 0.28);
  --focus: #e8c96a;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout: cubic-bezier(0.77, 0, 0.175, 1);
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 72rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ivory);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-soft); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--ivory); }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { left: var(--gutter); top: 0.5rem; }

/* ——— Top banner ——— */
.banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-gold);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory-dim);
}
.banner strong { color: var(--gold-soft); font-weight: 600; }
.banner a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .banner a:hover { color: var(--gold-soft); border-bottom-color: var(--line-gold); }
}

/* ——— Layout helpers ——— */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  position: relative;
}
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.kicker {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 0;
  text-wrap: balance;
}
.display--xl { font-size: clamp(2.75rem, 7vw, 5.25rem); }
.display--lg { font-size: clamp(2rem, 4.5vw, 3.25rem); }
.display--md { font-size: clamp(1.65rem, 3vw, 2.35rem); }
.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ivory-dim);
  max-width: 38rem;
  margin: 1.25rem 0 0;
  line-height: 1.7;
}
.rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--line-gold), transparent 70%);
  margin: 2rem 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.875rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn--gold {
  background: linear-gradient(180deg, #e0c15c 0%, var(--gold) 100%);
  color: #1a1405;
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 10px 28px rgba(201,162,39,0.18);
}
@media (hover: hover) and (pointer: fine) {
  .btn--gold:hover {
    background: linear-gradient(180deg, #edd078 0%, #d4ae36 100%);
    color: #120e04;
  }
}
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-gold);
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold-soft);
  }
}
.btn--soft {
  background: var(--surface-2);
  color: var(--ivory);
  border-color: var(--line);
}
@media (hover: hover) and (pointer: fine) {
  .btn--soft:hover { border-color: var(--line-gold); color: var(--gold-soft); }
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ——— Header / nav ——— */
.site-header {
  padding: 1.1rem 0 0.25rem;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand span { color: var(--gold-soft); }
.nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}
.nav a {
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav a:hover { color: var(--ivory); }
}
@media (min-width: 860px) {
  .nav { display: flex; }
}

/* ——— Hero ——— */
.hero {
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(4rem, 9vw, 6.5rem);
  overflow: clip;
}
.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(15rem, 0.72fr);
  }
}
.hero__meta {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.hero__title .line2 {
  display: block;
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 500;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  color: var(--ivory-dim);
  margin: 0.85rem 0 0;
  letter-spacing: -0.01em;
}
.hero__author {
  margin: 1.5rem 0 0;
  max-width: 34rem;
}
.hero__author strong {
  display: block;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}
.hero__author span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
}
.badges li {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-gold);
  background: rgba(201, 162, 39, 0.07);
  color: var(--gold-soft);
}
.hero__cover-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 22rem);
}
.hero__glow {
  position: absolute;
  inset: 8% -8% -8% -8%;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201,162,39,0.38), transparent 62%),
    radial-gradient(ellipse at 70% 80%, rgba(80,110,180,0.12), transparent 55%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.hero__cover {
  position: relative;
  z-index: 1;
  border-radius: 0.35rem;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.06) inset,
    0 30px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(240,230,210,0.08);
  transform-origin: 50% 80%;
}
.hero__cover img {
  width: 100%;
  border-radius: 0.35rem;
  aspect-ratio: 5 / 8;
  object-fit: cover;
  background: var(--surface);
}

/* Hero entrance — one refined moment */
.hero__cover {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  animation: coverIn 700ms var(--ease-out) 120ms forwards;
}
.hero__copy > * {
  opacity: 0;
  transform: translateY(12px);
  animation: riseIn 560ms var(--ease-out) forwards;
}
.hero__copy > *:nth-child(1) { animation-delay: 40ms; }
.hero__copy > *:nth-child(2) { animation-delay: 100ms; }
.hero__copy > *:nth-child(3) { animation-delay: 160ms; }
.hero__copy > *:nth-child(4) { animation-delay: 220ms; }
.hero__copy > *:nth-child(5) { animation-delay: 280ms; }
.hero__copy > *:nth-child(6) { animation-delay: 340ms; }
@keyframes coverIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__cover,
  .hero__copy > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ——— Stats / fenómeno ——— */
.stats {
  background:
    linear-gradient(180deg, transparent, rgba(201,162,39,0.04) 40%, transparent),
    var(--ink-2);
  border-block: 1px solid var(--line);
}
.stats__head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}
.stats__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
  .stat {
    padding: 2rem 1.75rem 2rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .stat:last-child { border-right: 0; padding-right: 0; }
  .stat:not(:first-child) { padding-left: 1.75rem; }
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--gold-soft);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
.stat__label {
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--ivory);
}
.stat__detail {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 18rem;
  line-height: 1.55;
}
.coverage {
  margin-top: 2.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.coverage a { font-weight: 500; }

/* ——— Sinopsis ——— */
.about__layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .about__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: start;
  }
}
.pullquote {
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line-gold);
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0;
  text-wrap: pretty;
}
.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-body);
}
.prose p {
  color: var(--ivory-dim);
  margin: 0 0 1.15rem;
  max-width: 40rem;
}
.prose p:last-child { margin-bottom: 0; }

/* ——— Chapters ——— */
.chapters__list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.chapter {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.chapter__n {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.chapter h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  letter-spacing: -0.015em;
  color: var(--ivory);
}
.chapter p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
}
@media (hover: hover) and (pointer: fine) {
  .chapter { transition: background 180ms var(--ease-out); }
  .chapter:hover { background: rgba(201,162,39,0.04); }
}

/* ——— Author ——— */
.author {
  background: var(--ink-2);
  border-block: 1px solid var(--line);
}
.author__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .author__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 3.5rem;
    align-items: end;
  }
}
.author__name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0.4rem 0 0;
  letter-spacing: -0.02em;
}
.author__role {
  color: var(--gold);
  font-size: 0.95rem;
  margin: 0.85rem 0 0;
  max-width: 22rem;
  line-height: 1.45;
}

/* ——— Media ——— */
.media__intro {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}
.media__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 760px) {
  .media__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .video-card:hover { border-color: var(--line-gold); }
}
.video-card:active { transform: scale(0.99); }
.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card__meta {
  padding: 1rem 1.15rem 1.2rem;
}
.video-card__meta h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.video-card__meta p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ——— Quotes ——— */
.quotes__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}
@media (min-width: 860px) {
  .quotes__grid { grid-template-columns: repeat(3, 1fr); }
}
.quote {
  margin: 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--ivory);
  margin: 0 0 1.25rem;
  flex: 1;
}
.quote footer {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: normal;
  font-family: var(--font-body);
}
.quote footer strong { color: var(--ivory-dim); font-weight: 500; }

/* ——— Colombia stores ——— */
.stores {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,162,39,0.1), transparent 50%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}
.stores__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}
@media (min-width: 800px) {
  .stores__grid { grid-template-columns: repeat(3, 1fr); }
}
.store {
  padding: 1.5rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(18, 24, 33, 0.85);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  transition: border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .store:hover { border-color: var(--line-gold); background: var(--surface); }
}
.store h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.store p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}
.store__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--ivory-dim);
  display: grid;
  gap: 0.25rem;
}
.store .btn { width: 100%; margin-top: 0.35rem; }
.amazon-row {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.amazon-row p {
  margin: 0;
  color: var(--ivory-dim);
  max-width: 28rem;
  font-size: 0.95rem;
}
.amazon-row__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.hero__amazon-note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--ivory-dim);
  max-width: 36rem;
}
.hero__amazon-note strong { color: var(--gold-soft); font-weight: 600; }

/* ——— Amazon worldwide (primary buy block) ——— */
.amazon-world {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201,162,39,0.16), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(201,162,39,0.06), transparent 45%),
    var(--ink-2);
  border-block: 1px solid var(--line-gold);
}
.amazon-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}
@media (min-width: 800px) {
  .amazon-grid { grid-template-columns: repeat(3, 1fr); }
}
.store--amazon {
  border-color: var(--line-gold);
  background: rgba(18, 24, 33, 0.95);
}
.store--en {
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.18);
}
.store__badge {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
}
.store--en .store__badge {
  background: var(--gold-soft);
}
.banner__sep {
  color: var(--muted);
  opacity: 0.55;
}

/* ——— LatAm ——— */
.latam__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
.latam__flags li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ivory-dim);
  font-size: 0.85rem;
}

/* ——— Closing CTA ——— */
.closing {
  text-align: center;
  padding-block: clamp(4rem, 9vw, 6rem);
}
.closing .display { max-width: 22ch; margin-inline: auto; }
.closing .lede { margin-inline: auto; }
.closing .btn-row { justify-content: center; }

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}
.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 0.35rem;
}
.social {
  display: flex;
  gap: 1rem;
}
.social a {
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .social a:hover { color: var(--gold-soft); }
}

/* ——— Reveal on scroll (subtle) ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ——— Misc ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ——— Lite YouTube ——— */
.lite-yt {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  overflow: hidden;
}
.lite-yt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out), opacity 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .lite-yt:hover img { transform: scale(1.03); }
}
.lite-yt__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.72);
  border: 1px solid var(--line-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 140ms var(--ease-out), background 180ms var(--ease-out);
}
.lite-yt__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent var(--gold-soft);
}
.lite-yt:active .lite-yt__play { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .lite-yt:hover .lite-yt__play { background: rgba(201, 162, 39, 0.22); }
}
.lite-yt.is-playing { cursor: default; }
.lite-yt.is-playing img,
.lite-yt.is-playing .lite-yt__play { display: none; }
.lite-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card__frame { display: none; } /* legacy unused */
