/* ================================================================
   EN LAS BUENAS Y EN LAS MALAS — Estilos principales
   ================================================================ */

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --card: #161616;
  --border: #2a2a2a;
  --gold: #c9a84c;
  --gold2: #f0c96a;
  --red: #e03535;
  --white: #f0ede6;
  --muted: #888;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── TICKER ─────────────────────────────────────────────── */
.elbm-ticker {
  background: var(--red);
  padding: 7px 0;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #a02020;
}
.elbm-ticker__inner { display:flex; align-items:center; }
.elbm-ticker__label {
  background: #900;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 14px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.elbm-ticker__scroll {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.elbm-ticker__track {
  display: flex;
  gap: 60px;
  animation: elbm-ticker 35s linear infinite;
  white-space: nowrap;
  padding-left: 30px;
}
.elbm-ticker__track span {
  font-size: 12.5px;
  font-weight: 400;
  color: #fff;
}
.elbm-ticker__track span::before { content: '◆ '; opacity: 0.6; font-size: 9px; }
@keyframes elbm-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 31px;
  z-index: 999;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 2px;
}
.site-logo__main {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-logo__sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Nav principal */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul { display: flex; list-style: none; gap: 4px; padding: 0; margin: 0; }
.main-navigation ul li a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  display: block;
  transition: color 0.2s, background 0.2s;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a { color: var(--white); background: rgba(255,255,255,0.05); }
.main-navigation ul li.current-menu-item > a { color: var(--gold); }

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

.btn-subscribe {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.btn-subscribe:hover { background: #c02020; transform: translateY(-1px); }

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--red);
  border-radius: 3px;
}
.live-badge__dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: elbm-pulse 1.5s infinite;
}
@keyframes elbm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── BARRA ECONÓMICA ─────────────────────────────────────── */
.eco-topbar {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.eco-topbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  overflow-x: auto;
  gap: 0;
}
.eco-topbar__inner::-webkit-scrollbar { display: none; }
.eco-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 12px;
  border-right: 1px solid var(--border);
}
.eco-item:last-of-type { border-right: none; }
.eco-item__name {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}
.eco-item__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.eco-item__change { font-size: 11px; font-weight: 600; }
.eco-item__change--up { color: #3cba6e; }
.eco-item__change--down { color: var(--red); }
.eco-topbar__time {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-left: auto;
  flex-shrink: 0;
  padding-left: 16px;
  font-variant-numeric: tabular-nums;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-section__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.65) 70%, rgba(10,10,10,1) 100%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
  z-index: 0;
}
.hero-section__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
  z-index: 0;
}
.hero-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,168,76,0.04) 39px, rgba(201,168,76,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,168,76,0.04) 39px, rgba(201,168,76,0.04) 40px);
  z-index: 1;
}
.hero-section__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 70px;
  width: 100%;
}
.hero-section__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-section__eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--gold);
}
.hero-section__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.hero-section__title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 0.88em;
  font-weight: 400;
  display: block;
}
.hero-section__desc {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 300;
  color: rgba(240,237,230,0.7);
  max-width: 560px;
  line-height: 1.6;
  margin: 24px 0 40px;
}
.hero-section__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--red);
  color: #0a0a0a;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); color: #0a0a0a; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid rgba(240,237,230,0.3);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); color: var(--white); }

.hero-section__stats { display: flex; gap: 50px; margin-top: 60px; flex-wrap: wrap; align-items: center; }
.hero-stat__number {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.hero-stats__divider { width: 1px; height: 50px; background: var(--border); }

/* ─── SECCIONES GENERALES ─────────────────────────────────── */
.elbm-section { padding: 80px 40px; }
.elbm-section--dark { background: var(--bg); }
.elbm-section--mid { background: var(--bg2); }
.elbm-section--alt { background: var(--bg3); }

.section-wrap { max-width: 1400px; margin: 0 auto; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.section-head__title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-head__title::before {
  content: '';
  display: block;
  width: 4px; height: 26px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head__sub {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 400;
}
.section-head__link {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.section-head__link:hover { gap: 10px; color: var(--gold2); }
.section-head__link::after { content: '→'; }

/* ─── EPISODIOS ───────────────────────────────────────────── */
.episodes-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.ep-card {
  background: var(--card);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.ep-card:hover { background: #1e1e1e; }

.ep-card__thumb-wrap { position: relative; overflow: hidden; }
.ep-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.ep-card:hover .ep-card__thumb { transform: scale(1.04); }
.ep-card__thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2010 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ep-card__play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.ep-card:hover .ep-card__play-overlay { opacity: 1; }
.ep-card__play-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ep-card__play-icon svg { fill: #0a0a0a; margin-left: 4px; }

.ep-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ep-card__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ep-card__num {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.ep-card__date { font-size: 11px; color: var(--muted); }
.ep-card__badge {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.5px;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.ep-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  text-transform: uppercase;
}
.ep-card--featured .ep-card__title { font-size: 22px; }
.ep-card__desc {
  font-size: 13px;
  color: rgba(240,237,230,0.6);
  line-height: 1.55;
  flex: 1;
}
.ep-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.ep-card__views { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.ep-card__play-btn {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.ep-card:hover .ep-card__play-btn { background: var(--gold2); transform: scale(1.1); }
.ep-card__play-btn svg { fill: #0a0a0a; margin-left: 2px; }

/* ─── PANEL INDICADORES ───────────────────────────────────── */
.eco-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.eco-panel-card {
  background: var(--card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}
.eco-panel-card:hover { background: #1c1c1c; }
.eco-panel-card__label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.eco-panel-card__value {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.eco-panel-card__change { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.eco-panel-card__change--up { color: #3cba6e; }
.eco-panel-card__change--down { color: var(--red); }
.eco-panel-card__change--neutral { color: var(--muted); }
.eco-panel-card__sub {
  font-size: 11px;
  color: var(--muted);
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

/* ─── HOSTS ───────────────────────────────────────────────── */
.hosts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.host-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  transition: border-color 0.25s;
}
.host-card:hover { border-color: var(--gold); }
.host-card__img-wrap {
  width: 190px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #1a1208 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.host-card__img { width: 100%; object-fit: cover; display: block; }
.host-card__info {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.host-card__role {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.host-card__name {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}
.host-card__bio {
  font-size: 13px;
  color: rgba(240,237,230,0.65);
  line-height: 1.6;
}
.host-card__social { display: flex; gap: 8px; }
.social-pill {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-pill:hover { border-color: var(--gold); color: var(--gold); }

/* ─── NOTICIAS ────────────────────────────────────────────── */
.noticias-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.noticia-card {
  background: var(--card);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.noticia-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.noticia-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.noticia-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #181818, #2a2010);
}
.noticia-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.noticia-card__cat {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.noticia-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.noticia-card__excerpt {
  font-size: 13px;
  color: rgba(240,237,230,0.55);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}
.noticia-card__meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ─── PATROCINADORES ──────────────────────────────────────── */
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}
.sponsor-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  min-width: 160px;
}
.sponsor-item img { max-height: 50px; width: auto; filter: grayscale(1) brightness(0.6); transition: filter 0.2s; }
.sponsor-item:hover img { filter: grayscale(0) brightness(1); }
.sponsor-item:hover { border-color: var(--gold); }

/* ─── CTA ─────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0f0d08 0%, #1a1208 50%, #0f0d08 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 90px 40px;
}
.cta-section__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-section__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.cta-section__title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-size: 0.85em;
}
.cta-section__desc {
  font-size: 15px;
  color: rgba(240,237,230,0.6);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-section__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--border);
}
.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.site-footer__logo {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.site-footer__tagline {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}
.site-footer__yt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-footer__yt:hover { opacity: 0.7; color: var(--red); }
.footer-widget h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-widget ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-widget ul li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-widget ul li a:hover { color: var(--white); }
.site-footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer__copy { font-size: 11px; color: var(--muted); }

/* ─── ANIMACIONES ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .episodes-grid { grid-template-columns: 1fr 1fr; }
  .ep-card--featured { grid-column: 1 / -1; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hosts-grid { grid-template-columns: 1fr; }
  .noticias-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { top: 28px; }
  .site-header__inner { padding: 0 20px; }
  .main-navigation { display: none; }
  .main-navigation.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 10000;
    align-items: center;
    justify-content: center;
  }
  .main-navigation.is-open ul { flex-direction: column; align-items: center; gap: 8px; }
  .main-navigation.is-open ul li a { font-size: 22px; padding: 12px 24px; }
  .hamburger-btn { display: flex; }
  .live-badge { display: none; }
  .elbm-section { padding: 50px 20px; }
  .hero-section__content { padding: 50px 20px; }
  .hero-section__stats { gap: 24px; }
  .hero-stats__divider { display: none; }
  .episodes-grid { grid-template-columns: 1fr; }
  .ep-card--featured { grid-column: 1; }
  .noticias-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px; }
  .site-footer__bottom { padding: 16px 20px; }
  .cta-section { padding: 60px 20px; }
  .eco-topbar { padding: 0; }
  .section-head { flex-direction: column; gap: 10px; align-items: flex-start; }
  .host-card { flex-direction: column; }
  .host-card__img-wrap { width: 100%; height: 200px; }
}

@media (max-width: 480px) {
  .elbm-ticker__label { display: none; }
  .site-header__inner { height: 58px; }
  .btn-subscribe { padding: 8px 14px; font-size: 11px; }
  .hero-section__cta { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

/* ─── WORDPRESS DEFAULTS RESET ────────────────────────────── */
img { max-width: 100%; height: auto; }
a { color: inherit; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
.wp-block-image { margin: 0; }
