/* ============================================================
   TalentJams — Televisión española · Entertainment guide
   Palette: rojo español + pizarra + naranja Mediterranean
   Fonts: Raleway (headers) + Open Sans (body)
   ============================================================ */

@import url('https://fonts.bunny.net/css?family=raleway:400,600,700,800,900&family=open-sans:400,600,700&display=swap');

:root {
  --rojo:      #c0392b;
  --rojo-dk:   #96281b;
  --rojo-lt:   #fdf2f2;
  --pizarra:   #2c3e50;
  --pizarra-lt:#34495e;
  --naranja:   #e67e22;
  --naranja-lt:#fef3e7;
  --oro:       #f39c12;
  --bg:        #ffffff;
  --bg-soft:   #f9f8f7;
  --bg-warm:   #fef5f4;
  --text:      #1a1a2e;
  --slate:     #4a5568;
  --muted:     #718096;
  --border:    #e8e2de;
  --border-lt: #f3ede9;
  --radius:    6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 4px rgba(44,62,80,.08);
  --shadow:    0 4px 20px rgba(44,62,80,.12);
  --max-w:     1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4 { font-family: 'Raleway', sans-serif; line-height: 1.2; color: var(--pizarra); }

/* ── BARRA SUPERIOR ── */
.barra-top {
  background: var(--pizarra);
  color: rgba(255,255,255,.55);
  font-size: 11.5px;
  font-family: 'Open Sans', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.barra-top-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.barra-top-fecha { font-weight: 600; letter-spacing: .01em; }
.barra-top-links { display: flex; align-items: center; gap: 10px; }
.barra-top-links a { color: rgba(255,255,255,.5); transition: color .15s; }
.barra-top-links a:hover { color: #fff; }
.barra-top-links span { color: rgba(255,255,255,.18); }

/* ── CABECERA MARCA ── */
.site-header { background: var(--rojo); box-shadow: 0 2px 12px rgba(192,57,43,.35); }
.cabecera-marca {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 70px;
}
.site-logo {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-zap { color: #fff; }
.logo-ing { color: var(--oro); }
.site-tagline-header {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: none;
}
@media(min-width:640px){ .site-tagline-header { display: block; } }

/* ── NAVEGACIÓN ── */
.nav-principal {
  background: var(--pizarra);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  padding: 14px 18px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .18s, border-color .18s;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nav-link:hover { color: #fff; border-bottom-color: rgba(255,255,255,.3); }
.nav-link.activo { color: var(--oro); border-bottom-color: var(--oro); }
.nav-link.nav-destacado {
  margin-left: auto;
  color: var(--naranja) !important;
  font-weight: 800;
}
.nav-link.nav-destacado:hover { color: #fff !important; border-bottom-color: var(--naranja) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; color: rgba(255,255,255,.8); padding: 12px 8px; margin-left: auto; }

/* ── CONTENEDOR PRINCIPAL ── */
.contenido-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── MIGAS DE PAN ── */
.migas {
  font-size: 12px;
  color: var(--muted);
  padding: 14px 0;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Open Sans', sans-serif;
}
.migas a { color: var(--rojo); }
.migas a:hover { text-decoration: underline; }

/* ── HERO DE PORTADA ── */
.hero-portada {
  background: linear-gradient(135deg, var(--pizarra) 0%, var(--pizarra-lt) 100%);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-portada::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-portada-inner { position: relative; max-width: 720px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
}
.hero-titulo {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.hero-titulo span { color: var(--oro); }
.hero-subtitulo {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rojo);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: background .18s, transform .18s;
  box-shadow: 0 4px 16px rgba(192,57,43,.4);
}
.hero-btn:hover { background: var(--rojo-dk); transform: translateY(-2px); }
.hero-btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.8);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.25);
  transition: border-color .18s, color .18s;
  margin-left: 12px;
}
.hero-btn-sec:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* ── CABECERA SECCIÓN ── */
.seccion-cabecera {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 52px 0 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--rojo);
}
.seccion-cabecera h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.3px;
  color: var(--pizarra);
}
.seccion-cabecera h2 span { color: var(--rojo); }
.seccion-cabecera a {
  font-size: 12px;
  font-weight: 700;
  color: var(--rojo);
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.seccion-cabecera a:hover { text-decoration: underline; }

/* ── TARJETAS DE ARTÍCULO ── */
.rejilla-articulos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rejilla-articulos.cols-2 { grid-template-columns: repeat(2, 1fr); }
.rejilla-articulos.cols-4 { grid-template-columns: repeat(4, 1fr); }

.tarjeta-articulo {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
  display: flex;
  flex-direction: column;
}
.tarjeta-articulo:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.tarjeta-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-soft); position: relative; }
.tarjeta-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.tarjeta-articulo:hover .tarjeta-img img { transform: scale(1.05); }
.tarjeta-canal {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--rojo);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: 'Open Sans', sans-serif;
}
.tarjeta-cuerpo { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.tarjeta-categoria {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: 8px;
  font-family: 'Open Sans', sans-serif;
}
.tarjeta-cuerpo h3 {
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--pizarra);
  transition: color .18s;
}
.tarjeta-articulo:hover .tarjeta-cuerpo h3 { color: var(--rojo); }
.tarjeta-cuerpo p { font-size: 13.5px; color: var(--slate); line-height: 1.62; flex: 1; margin-bottom: 14px; }
.tarjeta-meta { font-size: 11px; color: var(--muted); display: flex; gap: 8px; align-items: center; font-family: 'Open Sans', sans-serif; margin-top: auto; }
.tarjeta-meta .separador { color: var(--border); }

/* ── TARJETA DESTACADA (wide) ── */
.tarjeta-destacada {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  transition: box-shadow .22s;
}
.tarjeta-destacada:hover { box-shadow: var(--shadow); }
.tarjeta-destacada .tarjeta-img { aspect-ratio: auto; min-height: 280px; }
.tarjeta-destacada .tarjeta-cuerpo { padding: 36px 40px; }
.tarjeta-destacada .tarjeta-cuerpo h3 { font-size: 26px; margin-bottom: 16px; }
.tarjeta-destacada .tarjeta-cuerpo p { font-size: 15px; }

/* ── INSIGNIA CONTENIDO PATROCINADO ── */
.insignia-pub {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--naranja);
  color: var(--naranja);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
}

/* ── CAJA PLATAFORMA DESTACADA ── */
.caja-plataforma {
  border: 2px solid var(--oro);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  background: #fffdf0;
  margin: 22px 0 6px;
}
.cp-estrella { font-size: 11px; font-weight: 700; color: var(--naranja); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; font-family: 'Open Sans', sans-serif; }
.cp-nombre { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 900; color: var(--pizarra); }
.cp-desc { font-size: 12px; color: var(--muted); margin-top: 3px; font-family: 'Open Sans', sans-serif; }
.cp-btn {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  transition: background .18s;
  font-family: 'Raleway', sans-serif;
  white-space: nowrap;
}
.cp-btn:hover { background: var(--rojo-dk); }
.cp-etiqueta { font-size: 10.5px; color: var(--muted); margin-bottom: 16px; font-family: 'Open Sans', sans-serif; }
.texto-aviso {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  border-left: 3px solid var(--border);
  padding-left: 12px;
}

/* ── BLOQUES PARTNER MID-ARTÍCULO ── */
.bloque-plataformas-unico, .bloque-plataformas-grid {
  border: 1px solid var(--border);
  border-top: 3px solid var(--naranja);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 28px 0;
  background: var(--bg-soft);
}
.bp-etiqueta {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
}
.bp-tarjeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: box-shadow .18s;
}
.bp-tarjeta:hover { box-shadow: var(--shadow-sm); }
.bp-nombre { font-size: 14px; font-weight: 700; color: var(--pizarra); font-family: 'Raleway', sans-serif; }
.bp-precio { font-size: 12px; color: var(--muted); margin-top: 2px; }
.bp-btn {
  background: var(--rojo);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .18s;
  font-family: 'Open Sans', sans-serif;
}
.bp-btn:hover { background: var(--rojo-dk); }
.bp-nota { font-size: 11px; color: var(--muted); margin-top: 10px; font-family: 'Open Sans', sans-serif; }
.bp-nota a { color: var(--rojo); }
.rejilla-plataformas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

/* ── SELECCIÓN FINAL (bottom picks) ── */
.seleccion-final {
  background: var(--pizarra);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: 36px;
}
.sf-titulo { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; font-family: 'Open Sans', sans-serif; }
.sf-links { display: flex; flex-direction: column; gap: 8px; }
.sf-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .15s;
  font-family: 'Open Sans', sans-serif;
}
.sf-links a:last-child { border-bottom: none; }
.sf-links a:hover { color: #fff; }
.sf-links a span { font-size: 10.5px; color: var(--naranja); font-weight: 700; }

/* ── BIO AUTOR ── */
.bio-autor {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
}
.autor-avatar {
  width: 50px;
  height: 50px;
  background: var(--rojo);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  font-family: 'Raleway', sans-serif;
}
.autor-nombre { font-size: 14px; font-weight: 700; color: var(--pizarra); margin-bottom: 4px; font-family: 'Raleway', sans-serif; }
.autor-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-family: 'Open Sans', sans-serif; }

/* ── LAYOUT ARTÍCULO ── */
.layout-articulo {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 44px;
  align-items: start;
  padding-top: 8px;
  padding-bottom: 64px;
}
.articulo-principal { min-width: 0; }
.articulo-lateral { position: sticky; top: 70px; display: flex; flex-direction: column; gap: 20px; }

.articulo-h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--pizarra);
  margin: 10px 0 16px;
  letter-spacing: -.3px;
}
.articulo-h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--pizarra);
  margin: 38px 0 14px;
  padding-top: 10px;
  border-top: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.articulo-h2 .num-seccion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--rojo);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.articulo-firma {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  font-family: 'Open Sans', sans-serif;
  flex-wrap: wrap;
}
.articulo-firma .sep { color: var(--border); }
.articulo-foto-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 26px;
}
.articulo-principal p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 18px;
}
.articulo-principal blockquote {
  border-left: 4px solid var(--naranja);
  padding: 14px 20px;
  background: var(--naranja-lt);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-size: 15px;
  color: var(--pizarra);
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
}

/* ── TARJETA NUMERADA (programa) ── */
.tarjeta-programa {
  background: var(--pizarra);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin: 14px 0 18px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
}
.tp-num {
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--oro);
  line-height: 1;
  text-align: center;
}
.tp-titulo { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; font-family: 'Raleway', sans-serif; }
.tp-canal { font-size: 11.5px; color: rgba(255,255,255,.55); line-height: 1.4; font-family: 'Open Sans', sans-serif; }

/* ── WIDGETS LATERAL ── */
.widget-lateral {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  overflow: hidden;
}
.widget-titulo {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 14px;
  font-family: 'Open Sans', sans-serif;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.widget-lateral ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.widget-lateral ul li a {
  font-size: 13px;
  color: var(--pizarra);
  font-family: 'Open Sans', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
  transition: color .15s;
}
.widget-lateral ul li a:hover { color: var(--rojo); }
.etiq-patron { font-size: 10px; font-weight: 700; color: var(--rojo); text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0; margin-left: 8px; font-family: 'Open Sans', sans-serif; }
.etiq-gratis { font-size: 10px; font-weight: 700; color: #16a34a; text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0; margin-left: 8px; }

@media (max-width: 880px) {
  .layout-articulo { grid-template-columns: 1fr; gap: 28px; }
  .articulo-lateral { position: static; }
}

/* ── BARRA NEWSLETTER ── */
.barra-newsletter {
  background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-dk) 100%);
  padding: 52px 24px;
  text-align: center;
  margin-top: 64px;
}
.barra-newsletter h3 { font-family: 'Raleway', sans-serif; font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.barra-newsletter p { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 26px; }
.formulario-nl {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.formulario-nl input {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
}
.formulario-nl input::placeholder { color: rgba(255,255,255,.45); }
.formulario-nl input:focus { outline: 2px solid var(--oro); border-color: transparent; }
.formulario-nl button {
  background: var(--pizarra);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  transition: background .18s;
}
.formulario-nl button:hover { background: var(--pizarra-lt); }
.nl-aviso { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 12px; }

/* ── PIE DE PÁGINA ── */
.pie-pagina {
  background: #0f1824;
  color: rgba(255,255,255,.55);
  padding: 52px 24px 28px;
}
.pie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pie-marca .site-logo { font-size: 26px; margin-bottom: 12px; display: inline-block; }
.pie-marca p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.45); max-width: 220px; margin-bottom: 14px; }
.pie-marca a { color: rgba(255,255,255,.45); font-size: 13px; }
.pie-marca a:hover { color: rgba(255,255,255,.8); }
.pie-col h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}
.pie-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pie-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .15s; }
.pie-col ul li a:hover { color: rgba(255,255,255,.9); }
.pie-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  font-size: 11px;
  color: rgba(255,255,255,.25);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
}

/* ── BANNER COOKIES ── */
#zh-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0f1824;
  color: rgba(255,255,255,.88);
  padding: 16px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  border-top: 2px solid var(--rojo);
}
#zh-cookie-banner p { font-size: 13px; flex: 1; min-width: 200px; line-height: 1.55; }
#zh-cookie-banner a { color: var(--naranja); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-aceptar {
  background: var(--rojo);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s;
}
.btn-aceptar:hover { background: var(--rojo-dk); }
.btn-rechazar {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
.btn-rechazar:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .rejilla-articulos { grid-template-columns: repeat(2, 1fr); }
  .rejilla-articulos.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .tarjeta-destacada { grid-template-columns: 1fr; }
  .tarjeta-destacada .tarjeta-img { min-height: 220px; }
  .pie-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rejilla-plataformas { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .barra-top-links { display: none; }
  .nav-hamburger { display: flex; }
  .rejilla-articulos { grid-template-columns: 1fr; }
  .pie-inner { grid-template-columns: 1fr; }
  .contenido-wrap { padding: 0 16px; }
  .hero-portada { padding: 40px 20px 36px; }
  .seccion-cabecera { flex-direction: column; gap: 6px; align-items: flex-start; }
  .articulo-h1 { font-size: 22px; }
  .articulo-h2 { font-size: 17px; }
  .articulo-principal p { font-size: 15px; }
  .tarjeta-programa { grid-template-columns: 40px 1fr; gap: 12px; }
  .tp-num { font-size: 24px; }
  .formulario-nl { flex-direction: column; }
  .formulario-nl input, .formulario-nl button { width: 100%; }
  .barra-newsletter { padding: 40px 20px; }
  .pie-pagina { padding: 40px 20px 24px; }
  .pie-bottom { flex-direction: column; gap: 6px; }
  .hero-btn-sec { margin-left: 0; margin-top: 10px; }
  .rejilla-plataformas { grid-template-columns: 1fr; }
  .bp-tarjeta { flex-wrap: wrap; }
  .bp-btn { width: 100%; text-align: center; margin-top: 8px; }
}
@media (max-width: 400px) {
  .contenido-wrap { padding: 0 12px; }
  .articulo-h1 { font-size: 20px; }
}

/* ── PORTADA GRID (homepage featured + sidebar) ── */
@media (max-width: 900px) {
  .portada-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 680px) {
  .portada-grid aside { display: none; }
}

/* ── HAMBURGER MOBILE NAV ── */
@media (max-width: 680px) {
  .nav-inner {
    flex-wrap: wrap;
    overflow: hidden;
    max-height: 44px;
    transition: max-height .3s ease;
  }
  .nav-principal.open .nav-inner {
    max-height: 400px;
    overflow-y: auto;
  }
  .nav-link {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    padding: 13px 20px;
  }
  .nav-link.nav-destacado { margin-left: 0; }
  .nav-hamburger { display: flex; order: -1; width: 100%; justify-content: flex-end; padding: 12px 16px; }
}
