/*
Theme Name: La Voz del Huila Noticias
Theme URI: https://lavozdelhuila.com
Author: La Voz del Huila
Description: Portal de noticias premium para La Voz del Huila Noticias. Diseño profesional, simétrico y totalmente editable desde WordPress.
Version: 10.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: lavozdelhuila
Tags: news, magazine, responsive, custom-logo, custom-menu, widget-areas
*/

/* ============================================================
   VARIABLES GLOBALES
   ============================================================ */
:root {
  /* Colores principales */
  --am:   #F5D000;
  --am2:  #D4B000;
  --am3:  #FFF9C4;
  --vd:   #1E7A1E;
  --vd2:  #27A727;
  --vd3:  #E8F5E9;
  --rj:   #CC0000;
  --rj2:  #E53935;
  --rj3:  #FFEBEE;
  --ng:   #111111;
  --ng2:  #1A1A1A;
  --ng3:  #2C2C2C;
  --ng4:  #3D3D3D;
  --bl:   #FFFFFF;
  --bg:   #F2F2F2;
  --bg2:  #FAFAFA;
  --gr:   #E0E0E0;
  --gt:   #5F5F5F;
  --gt2:  #999999;

  /* Sombras */
  --sh:   0 2px 10px rgba(0,0,0,0.10);
  --sh2:  0 6px 24px rgba(0,0,0,0.16);
  --sham: 0 4px 18px rgba(245,208,0,0.30);
  --shvd: 0 4px 14px rgba(30,122,30,0.22);

  /* Bordes */
  --r:    4px;
  --r2:   8px;

  /* Tipografías */
  --ft:   'Oswald', 'Impact', sans-serif;
  --fb:   'Source Serif 4', 'Georgia', serif;
  --fu:   'Barlow Condensed', 'Arial Narrow', sans-serif;

  /* Transición */
  --tr:   all 0.20s ease;

  /* Sección padding */
  --sec:  26px 0;

  /* Ancho máximo */
  --max:  1280px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--ng);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ft);
  line-height: 1.2;
  color: var(--ng);
  font-weight: 700;
}
:focus-visible { outline: 3px solid var(--am); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* LAYOUT CONTENEDOR */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; width: 100%; }
.site-wrap { background: var(--bl); }

/* ============================================================
   ZONA 1: TOPBAR
   Fondo negro | borde inferior amarillo | altura 28px
   ============================================================ */
#topbar {
  background: var(--ng);
  border-bottom: 2px solid var(--am);
  height: 28px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 900;
}
.topbar-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-date {
  color: rgba(255,255,255,.60);
  font-family: var(--fu);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.topbar-date i { color: var(--am); font-size: .68rem; }
.topbar-visits {
  display: flex;
  align-items: center;
}
.topbar-visits-text {
  color: rgba(255,255,255,.60);
  font-family: var(--fu);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar-visits-text i { color: var(--am); font-size: .68rem; }
.topbar-visits-text strong { color: rgba(255,255,255,.88); font-weight: 700; }

/* ============================================================
   ZONA 2: HEADER PRINCIPAL
   Fondo #1A1A1A | borde inferior 3px amarillo | altura 92px
   Grid: 150px | 1fr | 300px
   ============================================================ */
#site-header {
  background: var(--ng2);
  border-bottom: 3px solid var(--am);
  height: 92px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  top: auto;
  z-index: 800;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  transition: height .25s ease;
}
.header-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 150px 1fr 300px;
  align-items: center;
  gap: 16px;
  height: 100%;
}

/* — Logo — */
.hcol-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  flex-shrink: 0;
}
.hcol-logo a,
.hcol-logo .custom-logo-link {
  display: flex;
  align-items: center;
  height: 78px;
  max-height: 78px;
  max-width: 150px;
}
.hcol-logo img,
.hcol-logo .wp-custom-logo img,
.hcol-logo figure img {
  height: 78px !important;
  max-height: 78px !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain !important;
  display: block !important;
}
.logo-text {
  font-family: var(--ft);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}
.logo-text em { color: var(--am); font-style: normal; }
.logo-text small { display: block; font-size: .52em; letter-spacing: .22em; color: var(--vd2); }

/* — Banner publicidad header — */
.hcol-pub {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  min-width: 0;
}
.hcol-pub .widget { width: 100%; display: flex; align-items: center; justify-content: center; }
.pub-placeholder {
  color: rgba(255,255,255,.20);
  font-family: var(--fu);
  font-size: .75rem;
  text-align: center;
  line-height: 1.5;
  padding: 10px 18px;
  border: 1px dashed rgba(245,208,0,.22);
  border-radius: var(--r);
  width: 100%;
}

/* — Columna derecha header — */
.hcol-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  height: 100%;
}
.hright-siguenos {
  display: flex;
  align-items: center;
  gap: 7px;
}
.siguenos-label {
  color: rgba(255,255,255,.45);
  font-family: var(--fu);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  white-space: nowrap;
}
.h-social { display: flex; gap: 5px; align-items: center; }
.h-social a, .soc-a {
  color: var(--bl);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .82rem;
  transition: var(--tr);
}
.h-social a:hover, .soc-a:hover {
  background: var(--am);
  color: var(--ng);
  border-color: var(--am);
  transform: translateY(-2px);
}
.hright-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;
}
/* Buscador */
.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.09);
  border: 1.5px solid rgba(255,255,255,.16);
  border-radius: 30px;
  overflow: hidden;
  transition: var(--tr);
  height: 32px;
}
.search-box:focus-within { border-color: var(--am); }
.search-box input {
  background: none;
  border: none;
  color: var(--bl);
  padding: 0 12px;
  font-family: var(--fu);
  font-size: .82rem;
  width: 140px;
  outline: none;
  height: 100%;
}
.search-box input::placeholder { color: rgba(255,255,255,.35); }
.search-box button {
  background: var(--am);
  color: var(--ng);
  padding: 0 12px;
  font-size: .86rem;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: var(--tr);
}
.search-box button:hover { background: var(--am2); }
/* Botón WhatsApp */
.btn-wa {
  background: #25D366;
  color: #fff !important;
  padding: 0 14px;
  height: 32px;
  border-radius: 30px;
  font-family: var(--fu);
  font-size: .76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: var(--tr);
  white-space: nowrap;
  text-decoration: none;
}
.btn-wa:hover { background: #1EA952; transform: translateY(-1px); }

/* Scroll shrink */
#site-header.header-scrolled { height: 66px; }
#site-header.header-scrolled .hcol-logo img,
#site-header.header-scrolled .hcol-logo .wp-custom-logo img,
#site-header.header-scrolled .hcol-logo figure img { height: 54px !important; max-height: 54px !important; }
#site-header.header-scrolled .hcol-pub { display: none; }
.admin-bar #site-header { top: 32px; }

/* ============================================================
   ZONA 3: BARRA DE 6 WIDGETS
   Fondo #111 | borde inferior 3px amarillo | altura 68px
   ============================================================ */
#widgets-bar {
  background: var(--ng);
  border-bottom: 3px solid var(--am);
  height: 76px;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.wbar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  height: 100%;
}
.wbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  text-align: center;
  border-right: 1px solid rgba(245,208,0,.12);
  gap: 3px;
  height: 100%;
  overflow: hidden;
  transition: background .18s;
}
.wbar-item:last-child { border-right: none; }
.wbar-item:hover { background: rgba(245,208,0,.06); }
.wbar-icon { font-size: 1.3rem; line-height: 1; color: var(--am); }
.wbar-name {
  color: var(--am);
  font-family: var(--ft);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
}
.wbar-val {
  color: rgba(255,255,255,.60);
  font-family: var(--fu);
  font-size: .78rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.wbar-val-live { color: rgba(255,255,255,.85); }
#radio-label {
  color: rgba(255,255,255,.80);
  font-size: .62rem;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: .02em;
}
.radio-player {
  display: flex;
  align-items: center;
  gap: 4px;
}
.radio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: .75rem;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
/* Botón play: azul */
#radio-playpause {
  background: #1565C0;
  color: #ffffff;
}
#radio-playpause:hover { background: #1976D2; transform: scale(1.1); }
/* Reproduciendo → rojo (stop) */
#radio-playpause.playing {
  background: #C62828;
  color: #ffffff;
}
#radio-playpause.playing:hover { background: #E53935; }
/* Botón mute: discreto */
#radio-mute {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.70);
  font-size: .68rem;
}
#radio-mute:hover { background: rgba(255,255,255,.22); }
.wbar-emisora-link {
  color: var(--am);
  text-decoration: underline;
  font-family: var(--fu);
  font-size: .76rem;
  font-weight: 700;
  transition: var(--tr);
}
.wbar-emisora-link:hover { color: #fff; }
.wbar-item-clasificados { cursor: default; }
.wbar-item-clasificados .wbar-val {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  font-size: .62rem;
  line-height: 1.25;
}
.wbar-redes {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  white-space: normal;
}
.wbar-redes a {
  color: rgba(255,255,255,.60);
  font-size: .88rem;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.wbar-redes a:hover { color: var(--ng); background: var(--am); border-color: var(--am); }
#widgets-bar .widget { padding: 0; }
#widgets-bar .widget-title { display: none; }

/* ============================================================
   ZONA 4: TICKER DE NOTICIAS
   Fondo amarillo | etiqueta negra | 34px
   ============================================================ */
#ticker-bar {
  background: var(--am);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 34px;
  width: 100%;
}
.ticker-tag {
  background: var(--ng);
  color: var(--am);
  font-family: var(--ft);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 80s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  color: var(--ng);
  font-family: var(--ft);
  font-size: .78rem;
  font-weight: 600;
  padding: 0 22px;
  display: inline-block;
  flex-shrink: 0;
  transition: color .18s;
}
.ticker-item:hover { color: var(--rj); }
.ticker-item::before {
  content: '▶';
  margin-right: 7px;
  font-size: .44rem;
  vertical-align: middle;
  opacity: .5;
}

/* ============================================================
   ZONA 5: MENÚ PRINCIPAL
   Fondo #2C2C2C | borde inferior 3px negro | 44px
   ============================================================ */
#main-nav {
  background: var(--ng3);
  border-bottom: 3px solid var(--ng);
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  width: 100%;
}
.nav-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.main-menu {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
  gap: 0;
}
.main-menu > li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.main-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  color: rgba(255,255,255,.80);
  font-family: var(--ft);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  transition: var(--tr);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.main-menu > li > a:hover,
.main-menu > li.current-menu-item > a,
.main-menu > li.current-page-ancestor > a {
  color: var(--am);
  border-bottom-color: var(--am);
}
.main-menu > li.mi-inicio > a {
  background: var(--am);
  color: var(--ng);
  border-bottom-color: var(--am2);
  padding: 0 16px;
  font-weight: 700;
}
.main-menu > li.mi-inicio > a:hover { background: var(--am2); }
/* Submenú desplegable */
.main-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ng3);
  border-top: 3px solid var(--am);
  border-radius: 0 0 var(--r) var(--r);
  min-width: 200px;
  z-index: 999;
  box-shadow: var(--sh2);
}
.main-menu li:hover > ul { display: block; }
.main-menu li ul li a {
  display: block;
  padding: 10px 18px;
  color: rgba(255,255,255,.70);
  font-family: var(--fu);
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--tr);
}
.main-menu li ul li a:hover { color: var(--am); padding-left: 24px; }
/* Toggle menú móvil */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--bl);
  font-family: var(--ft);
  font-size: .8rem;
  padding: 8px 12px;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-toggle:hover { color: var(--am); }

/* search-bar-bottom eliminada — buscador integrado en header */

/* ============================================================
   SECCIÓN PRINCIPAL: Noticia grande | Stack | Sidebar
   ============================================================ */
#main-news { padding: var(--sec); background: var(--bg); }
.main-news-grid {
  display: grid;
  grid-template-columns: 1fr 310px 270px;
  gap: 18px;
  align-items: stretch;
}

/* Noticia grande */
.feat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh2);
}
.feat-card .f-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
  display: block;
  flex: 1;
}
.feat-card:hover .f-img { transform: scale(1.04); }
.feat-card .f-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.92));
  padding: 54px 22px 22px;
}
.f-avances-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--am);
  color: var(--ng);
  font-family: var(--ft);
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 3px;
  z-index: 10;
}
.f-avances-tag i { font-size: .88rem; }
.feat-card .f-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,.55) 30%, rgba(0,0,0,.95) 100%);
  padding: 54px 22px 22px;
}
.feat-card .f-title {
  color: #ffffff;
  font-family: var(--ft);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  margin-bottom: 9px;
  text-shadow: 0 2px 8px rgba(0,0,0,.9), 0 1px 3px rgba(0,0,0,1);
}
  color: var(--bl);
  font-family: var(--ft);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  margin-bottom: 9px;
}
.feat-card .f-meta {
  display: flex;
  gap: 14px;
  color: rgba(255,255,255,.62);
  font-family: var(--fu);
  font-size: .76rem;
}
.feat-card .f-meta i { color: var(--am); }
.feat-card .f-excerpt {
  color: rgba(255,255,255,.85);
  font-family: var(--fu);
  font-size: .84rem;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

/* Stack de noticias 2-3-4 */
.news-stack { display: flex; flex-direction: column; gap: 10px; }
.stack-title {
  font-family: var(--ft);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bl);
  background: var(--ng);
  border-left: 4px solid var(--am);
  padding: 7px 12px;
  border-radius: 0 var(--r) var(--r) 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.stack-title i { color: var(--am); font-size: .9rem; }
.news-hcard {
  display: flex;
  gap: 10px;
  background: var(--bl);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--gr);
  transition: var(--tr);
  align-items: flex-start;
}
.news-hcard:hover {
  box-shadow: var(--sh2);
  border-color: var(--am);
  transform: translateX(3px);
}
.news-hcard .hc-img {
  width: 102px;
  height: 76px;
  object-fit: cover;
  flex-shrink: 0;
}
.news-hcard .hc-body { padding: 9px 11px 9px 0; flex: 1; }
.news-hcard .hc-title {
  font-family: var(--ft);
  font-size: .88rem;
  line-height: 1.3;
  color: var(--ng);
  font-weight: 600;
  margin-bottom: 5px;
  transition: var(--tr);
}
.news-hcard:hover .hc-title { color: var(--rj); }
.news-hcard .hc-meta {
  font-family: var(--fu);
  font-size: .70rem;
  color: var(--gt);
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-hcard .hc-meta i { color: var(--am); }

/* Sidebar derecho: Facebook, Pub, Redes */
.news-sidebar { display: flex; flex-direction: column; gap: 14px; }

/* Widget Facebook */
.fb-widget {
  background: var(--ng2);
  border-radius: var(--r2);
  overflow: hidden;
  border: 2px solid var(--am);
  box-shadow: var(--sh);
}
.fb-widget-head {
  background: linear-gradient(135deg, var(--am), var(--am2));
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fb-widget-head i { font-size: 1.1rem; color: var(--ng); }
.fb-widget-head span {
  font-family: var(--ft);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ng);
  line-height: 1.2;
}
.fb-widget-body {
  padding: 0;
  text-align: center;
  overflow: hidden;
  width: 100%;
  min-height: 300px;
  background: #fff;
  max-width: 100%;
  box-sizing: border-box;
}
/* Forzar que el iframe de Facebook llene el contenedor */
.fb-widget-body .fb-page,
.fb-widget-body .fb-page span,
.fb-widget-body .fb-page span iframe {
  width: 100% !important;
  min-width: unset !important;
  max-width: 100% !important;
  overflow: hidden !important;
}
.fb-widget-body img { width: 100%; border-radius: var(--r); margin-bottom: 10px; }
.fb-logo-placeholder {
  background: linear-gradient(135deg, var(--am), var(--am3));
  border-radius: var(--r);
  padding: 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  min-height: 90px;
}
.fb-logo-placeholder img { max-height: 70px; width: auto; }
.btn-like {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  background: #1877F2;
  color: var(--bl);
  padding: 11px 14px;
  border-radius: 0;
  font-family: var(--ft);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: var(--tr);
  width: 100%;
  margin: 0;
}
.btn-like:hover { background: #1558c0; color: var(--bl); }

/* Cuadro publicidad sidebar */
.pub-box {
  background: var(--bg);
  border: 2px dashed var(--gr);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  overflow: hidden;
  position: relative;
}
.pub-box .widget { position: relative; z-index: 1; }

/* Redes en sidebar */
.redes-box {
  background: linear-gradient(135deg, var(--ng), var(--ng3));
  border-radius: var(--r2);
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
}
.redes-box h4 {
  color: var(--am);
  font-family: var(--ft);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.redes-box .icons { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.redes-box .icons a {
  color: var(--bl);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .9rem;
  transition: var(--tr);
}
.redes-box .icons a:hover {
  background: var(--am);
  color: var(--ng);
  border-color: var(--am);
  transform: translateY(-2px);
}

/* Widget areas extra */
.widget-area-block {
  background: var(--bl);
  border-radius: var(--r);
  padding: 14px;
  border: 1px solid var(--gr);
  box-shadow: var(--sh);
  min-height: 60px;
}
.widget-area-block .widget { margin: 0; }
.widget-area-block .widget + .widget {
  margin-top: 12px;
  border-top: 1px solid var(--gr);
  padding-top: 12px;
}
.widget-area-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  gap: 6px;
  color: var(--gt2);
  font-family: var(--fu);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  padding: 14px;
}
.widget-area-placeholder i { font-size: 1.4rem; color: var(--gr); }

/* ============================================================
   SECTION HEADERS GENÉRICOS
   ============================================================ */
.sec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--gr);
  position: relative;
}
.sec-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--am);
}
.sec-header.green::after { background: var(--vd); }
.sec-header.red::after   { background: var(--rj); }
.sec-header h2 {
  font-family: var(--ft);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec-header h2 i         { color: var(--am); font-size: 1rem; }
.sec-header.green h2 i   { color: var(--vd); }
.sec-header.red h2 i     { color: var(--rj); }
.sec-header .ver-mas {
  background: var(--am);
  color: var(--ng);
  padding: 5px 14px;
  border-radius: 30px;
  font-family: var(--fu);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.sec-header .ver-mas:hover            { background: var(--am2); }
.sec-header.green .ver-mas            { background: var(--vd); color: var(--bl); }
.sec-header.green .ver-mas:hover      { background: var(--vd2); }
.sec-header.red .ver-mas              { background: var(--rj); color: var(--bl); }
.sec-header.red .ver-mas:hover        { background: var(--rj2); }

/* ============================================================
   CLASIFICADOS
   Fondo oscuro degradado | bordes amarillos top/bottom
   ============================================================ */
#clasificados {
  background: linear-gradient(135deg, var(--ng2), var(--ng3));
  padding: 14px 0 18px;
  border-top: 3px solid var(--am);
  border-bottom: 3px solid var(--am);
}
.clas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.clas-head-title {
  font-family: var(--ft);
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--am);
  display: flex;
  align-items: center;
  gap: 8px;
}
.clas-head-sub {
  color: rgba(255,255,255,.40);
  font-family: var(--fu);
  font-size: .76rem;
}
#swiper-clas { width: 100%; border-radius: var(--r); overflow: hidden; }
.clas-slide { border-radius: var(--r); overflow: hidden; cursor: pointer; display: block; }
.clas-slide img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--r); display: block; }

/* Publicidad: ancho completo rompiendo el container en móvil */
#clasificados .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
#clasificados .clas-head {
  padding-left: 16px;
  padding-right: 16px;
}
.clas-placeholder {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,208,0,.22);
  border-radius: var(--r);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.32);
  font-family: var(--fu);
  font-size: .75rem;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: var(--tr);
}
.clas-placeholder:hover { border-color: var(--am); color: var(--am); }
#swiper-clas .swiper-pagination { bottom: 8px; }
#swiper-clas .swiper-pagination-bullet { background: rgba(255,255,255,.5); opacity: 1; }
#swiper-clas .swiper-pagination-bullet-active { background: var(--am); }

/* ============================================================
   JUDICIAL + DEPORTES — 2 bloques simétricos
   ============================================================ */
#jud-dep { padding: var(--sec); background: var(--bg); }
.jd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 290px;
  gap: 22px;
}
.sec-block {
  background: var(--bl);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--gr);
}
.sec-block-hdr {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec-block-hdr.jud { background: linear-gradient(135deg, var(--rj), var(--rj2)); }
.sec-block-hdr.dep { background: linear-gradient(135deg, var(--vd), var(--vd2)); }
.sec-block-hdr h2 {
  color: var(--bl);
  font-family: var(--ft);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec-block-hdr .ver-mas {
  background: rgba(255,255,255,.20);
  color: var(--bl);
  padding: 5px 14px;
  border-radius: 30px;
  font-family: var(--fu);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: var(--tr);
  border: 1px solid rgba(255,255,255,.28);
}
.sec-block-hdr .ver-mas:hover { background: rgba(255,255,255,.34); }
.sec-feat { position: relative; overflow: hidden; }
.sec-feat img { width: 100%; height: 195px; object-fit: cover; transition: transform .5s ease; display: block; }
.sec-block:hover .sec-feat img { transform: scale(1.04); }
.sec-feat .sf-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
  padding: 42px 16px 14px;
}
.sec-feat .sf-title { color: var(--bl); font-family: var(--ft); font-size: .98rem; line-height: 1.28; }
.sec-list-item {
  display: flex;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--gr);
  align-items: flex-start;
  transition: var(--tr);
}
.sec-list-item:last-child { border-bottom: none; }
.sec-list-item:hover { background: var(--bg); }
.sec-list-item img { width: 74px; height: 54px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.sec-list-item .sli-body h4 {
  font-family: var(--ft);
  font-size: .84rem;
  line-height: 1.3;
  color: var(--ng);
  font-weight: 600;
  transition: var(--tr);
}
.sec-list-item:hover .sli-body h4 { color: var(--rj); }
.sec-list-item .sli-meta {
  font-family: var(--fu);
  font-size: .70rem;
  color: var(--gt);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sec-list-item .sli-meta i { color: var(--am); }
.auto-empty { padding: 24px 14px; text-align: center; color: var(--gt); font-size: .8rem; font-family: var(--fu); }

/* ============================================================
   CÓDIGO CALLE — Videos YouTube
   Fondo negro | borde superior amarillo
   ============================================================ */
#codigo-calle {
  background: linear-gradient(135deg, var(--ng), #0b0b0b);
  padding: 26px 0;
  border-top: 4px solid var(--am);
  border-bottom: 2px solid rgba(255,255,255,.05);
}
.cc-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cc-hdr-title {
  font-family: var(--ft);
  font-size: 1.4rem;
  color: var(--bl);
  text-transform: uppercase;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-hdr-title .badge-am {
  background: var(--am);
  color: var(--ng);
  font-size: .70rem;
  padding: 2px 10px;
  border-radius: 2px;
  font-weight: 800;
  letter-spacing: .06em;
}
.cc-hdr .btn-yt {
  background: var(--rj);
  color: var(--bl);
  padding: 8px 18px;
  border-radius: var(--r);
  font-family: var(--ft);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--tr);
}
.cc-hdr .btn-yt:hover { background: #a80000; color: var(--bl); }
.video-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--sh2); }
.video-card .vc-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s ease; }
.video-card:hover .vc-thumb { transform: scale(1.06); }
.video-card .vc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 54px;
  height: 54px;
  background: rgba(245,208,0,.90);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ng);
  transition: var(--tr);
  box-shadow: 0 4px 20px rgba(0,0,0,.40);
  opacity: 0;
}
.video-card:hover .vc-play { opacity: 1; background: var(--am); transform: translate(-50%, -50%) scale(1.12); }
.video-card .vc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.90));
  padding: 40px 12px 12px;
}
.video-card .vc-title { color: var(--bl); font-family: var(--ft); font-size: .88rem; line-height: 1.28; }

/* ============================================================
   AUTO-SECCIONES 3 COLUMNAS (Política, Huila, Neiva, etc.)
   ============================================================ */
.auto-row { padding: 22px 0 0; }
.auto-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gr);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh);
  margin-bottom: 22px;
  background: var(--bl);
}
.auto-col { background: var(--bl); border-right: 1px solid var(--gr); }
.auto-col:last-child { border-right: none; }
.auto-col-hdr {
  background: var(--ng2);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--am);
}
.auto-col-hdr h3 {
  color: var(--bl);
  font-family: var(--ft);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.auto-col-hdr h3 i { color: var(--am); }
.auto-col-hdr a {
  color: var(--am);
  font-family: var(--fu);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  transition: var(--tr);
}
.auto-col-hdr a:hover { color: var(--bl); }
.auto-feat { position: relative; overflow: hidden; }
.auto-feat img { width: 100%; height: 158px; object-fit: cover; transition: transform .5s ease; display: block; }
.auto-col:hover .auto-feat img { transform: scale(1.05); }
.auto-feat .af-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
  padding: 34px 12px 11px;
}
.auto-feat .af-title { color: var(--bl); font-family: var(--ft); font-size: .84rem; line-height: 1.28; }
.auto-list .ali {
  display: flex;
  gap: 9px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--gr);
  align-items: flex-start;
  transition: var(--tr);
}
.auto-list .ali:last-child { border-bottom: none; }
.auto-list .ali:hover { background: var(--bg); }
.auto-list .ali img { width: 60px; height: 44px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.auto-list .ali h4 {
  font-family: var(--ft);
  font-size: .77rem;
  line-height: 1.28;
  color: var(--ng);
  font-weight: 600;
  transition: var(--tr);
}
.auto-list .ali:hover h4 { color: var(--rj); }
.auto-list .ali span {
  display: flex;
  font-family: var(--fu);
  font-size: .68rem;
  color: var(--gt);
  margin-top: 3px;
  align-items: center;
  gap: 4px;
}
.auto-list .ali span i { color: var(--am); }
.auto-widget-area { padding: 10px 12px; border-top: 1px solid var(--gr); }
.auto-widget-area .widget { font-size: .82rem; }
.auto-widget-area .widget-title {
  font-family: var(--ft);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ng);
  margin-bottom: 6px;
  border-bottom: 2px solid var(--am);
  padding-bottom: 4px;
}

/* ============================================================
   BANNERS PUBLICITARIOS (STRIP)
   ============================================================ */
.pub-banner-strip {
  background: linear-gradient(135deg, var(--ng), var(--ng3));
  padding: 16px 0;
  border-top: 2px solid var(--am);
  border-bottom: 2px solid var(--am);
  margin: 10px 0;
}
.pub-banner-strip .swiper { width: 100%; }
.pub-banner-strip .swiper-slide a { display: block; }
.pub-banner-strip .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: var(--r);
  background: var(--ng);
}
.pub-ph {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,208,0,.18);
  border-radius: var(--r);
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.30);
  font-family: var(--fu);
  font-size: .76rem;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: var(--tr);
}
.pub-ph:hover { border-color: var(--am); color: var(--am); }

/* ============================================================
   SECCIÓN OPINIÓN + FÚTBOL
   ============================================================ */
#opinion-sec { padding: var(--sec); background: var(--bg); }
.opinion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(290px, 1fr);
  gap: 22px;
  align-items: stretch;
}
.op-main h2 {
  font-family: var(--ft);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ng);
  padding-bottom: 8px;
  border-bottom: 3px solid var(--gr);
  position: relative;
  flex-shrink: 0;
}
.op-main h2::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--vd);
}
.op-sec h2::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--rj);
}
.op-main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.op-main > h2 { flex-shrink: 0; }
.op-main .op-item {
  flex: 1;
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gr);
  align-items: center;
  transition: var(--tr);
}
.op-item:last-child { border-bottom: none; }
.op-item:hover { background: var(--bg); padding-left: 8px; border-radius: var(--r); }
.op-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--am); flex-shrink: 0; }
.op-avatar-ph {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--am), var(--am2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--ng);
}
.op-body .op-autor {
  color: var(--vd);
  font-family: var(--ft);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-bottom: 3px;
}
.op-body h4 { font-family: var(--ft); font-size: .9rem; color: var(--ng); line-height: 1.3; transition: var(--tr); }
.op-item:hover .op-body h4 { color: var(--vd); }
.op-body p { font-size: .76rem; color: var(--gt); line-height: 1.5; margin-top: 3px; }
.op-card-sm {
  background: var(--bl);
  border-radius: var(--r);
  padding: 14px;
  border-left: 4px solid var(--rj);
  transition: var(--tr);
  margin-bottom: 12px;
  box-shadow: var(--sh);
}
.op-card-sm:hover { box-shadow: var(--sh2); transform: translateX(4px); border-left-color: var(--am); }
.op-card-sm h4 { font-family: var(--ft); font-size: .9rem; color: var(--ng); margin-bottom: 5px; }
.op-card-sm p { font-size: .76rem; color: var(--gt); line-height: 1.5; }
/* Versículo del Día en columna op-sec */
.op-versiculo {
  background: var(--bl);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh2);
  border: 1px solid var(--gr);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.op-versiculo .extra-wgt-hdr { flex-shrink: 0; }
.versiculo-iframe-wrap {
  flex: 1;
  display: flex;
  min-height: 0;
}
.versiculo-iframe-wrap iframe {
  flex: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}



/* Widget Fútbol */
.futbol-wgt { background: var(--ng); border-radius: var(--r2); overflow: hidden; box-shadow: var(--sh2); align-self: start; display: flex; flex-direction: column; }
.futbol-wgt-hdr {
  background: linear-gradient(135deg, var(--ng2), var(--ng3));
  padding: 10px 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.futbol-wgt-hdr h3 { color: var(--am); font-family: var(--ft); font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; flex: 1; }
/* Barra de progreso de tiempo */
.futbol-timer-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.15);
  margin-top: 8px;
}
.futbol-timer-fill {
  height: 3px;
  width: 0%;
  background: var(--am);
}
/* Pastillas de liga */
.futbol-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.futbol-tab {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--tr);
  color: #fff;
  line-height: 1.4;
}
.futbol-tab:hover { background: rgba(255,255,255,.18); }
.futbol-tab.active { background: var(--am); border-color: var(--am); color: var(--ng); font-weight: 700; }
/* Iframe */
.futbol-iframe-wrap { width: 100%; overflow: hidden; }
.futbol-iframe-wrap iframe { display: block; }
/* Footer */
.res-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--tr);
}
.res-item:hover { background: rgba(255,255,255,.04); }
.res-team { color: var(--bl); font-family: var(--fu); font-size: .82rem; font-weight: 600; flex: 1; }
.res-team:last-child { text-align: right; }
.res-score {
  background: linear-gradient(135deg, var(--am), var(--am2));
  color: var(--ng);
  font-family: var(--ft);
  font-size: .86rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 3px;
  min-width: 54px;
  text-align: center;
  margin: 0 10px;
  flex-shrink: 0;
}
.futbol-wgt-foot {
  display: block;
  text-align: center;
  padding: 10px;
  color: var(--am);
  font-family: var(--fu);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-top: 1px solid rgba(255,255,255,.07);
  transition: var(--tr);
}
.futbol-wgt-foot:hover { background: rgba(255,255,255,.04); }
.futbol-resultados { min-height: 120px; }
.futbol-panel { display: none; max-height: 380px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--am) rgba(255,255,255,.08); }
.futbol-panel::-webkit-scrollbar { width: 4px; }
.futbol-panel::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.futbol-panel::-webkit-scrollbar-thumb { background: var(--am); border-radius: 2px; }
.futbol-panel.active { display: block; }
.futbol-cargando {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  color: rgba(255,255,255,.4);
  font-family: var(--fu);
  font-size: .8rem;
}
.futbol-vacio {
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,.3);
  font-family: var(--fu);
  font-size: .75rem;
}
.futbol-live {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-size: .55rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 3px;
  animation: blink 1s step-start infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   CARICATURA DEL DÍA + FRASE DEL DÍA (columna op-extras)
   ============================================================ */
.op-extras {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
.caricatura-wgt {
  background: var(--bl);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--gr);
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.extra-wgt-hdr {
  background: linear-gradient(135deg, var(--rj), var(--rj2));
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r2) var(--r2) 0 0;
}
.extra-wgt-hdr.frase-hdr { background: linear-gradient(135deg, var(--am), var(--am2)); }
.extra-wgt-hdr i { color: var(--am); font-size: .95rem; }
.extra-wgt-hdr h3 { color: var(--bl); font-family: var(--ft); font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; margin: 0; }
.extra-wgt-placeholder {
  padding: 20px 14px;
  text-align: center;
  color: var(--gt);
  font-size: .8rem;
  line-height: 1.5;
}
.extra-wgt-placeholder i { font-size: 1.8rem; color: var(--gr); display: block; margin-bottom: 8px; }
.extra-wgt-placeholder strong { color: var(--ng); }
.caricatura-wgt {
  background: var(--bl);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--gr);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.caricatura-img {
  display: block;
  width: 100%;
  height: 100%;
  flex: 1;
  object-fit: cover;
  object-position: top center;
  background: var(--bl);
  min-height: 200px;
}
.extra-wgt-body { padding: 10px; }
.frase-wgt {
  background: var(--ng);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh2);
}
.frase-body { padding: 16px 14px; }
.frase-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .95rem;
  font-style: italic;
  color: var(--bl);
  line-height: 1.6;
  margin: 0 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--am);
}
.frase-autor {
  display: block;
  font-family: var(--ft);
  font-size: .75rem;
  font-weight: 700;
  color: var(--am);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: right;
}


/* ============================================================
   QUIÉNES SOMOS + ASOCIADOS
   ============================================================ */
#about-sec {
  background: linear-gradient(135deg, var(--ng3), var(--ng2));
  padding: 24px 0;
  border-top: 3px solid var(--am);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.about-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--r2);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,.10);
  transition: var(--tr);
}
.about-card:hover { background: rgba(255,255,255,.09); }
.about-icon { font-size: 2.2rem; color: var(--am); flex-shrink: 0; margin-top: 2px; }
.about-card h3 {
  font-family: var(--ft);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
  color: var(--am);
}
.about-card p { font-size: .84rem; color: rgba(255,255,255,.62); line-height: 1.65; }
.about-social { display: flex; gap: 7px; margin-top: 12px; flex-wrap: wrap; }
.about-social a {
  color: var(--ng);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--am);
  font-size: .82rem;
  transition: var(--tr);
}
.about-social a:hover { background: var(--bl); color: var(--ng); transform: translateY(-2px); }
.about-info-group {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-info {
  font-family: var(--fu);
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  transition: var(--tr);
}
.about-info:hover { background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); }
.about-info i {
  color: var(--am);
  font-size: .85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.asoc-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 10px;
  margin-top: 18px;
}
.asoc-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
  color: inherit;
}
.asoc-logo:hover { transform: translateY(-4px); }
.asoc-logo-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-family: var(--fu);
  color: rgba(255,255,255,.48);
  text-align: center;
  transition: var(--tr);
  flex-shrink: 0;
}
.asoc-logo:hover .asoc-logo-img {
  border-color: var(--am);
  box-shadow: 0 0 0 4px rgba(245,208,0,.15);
}
.asoc-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.asoc-logo-name {
  font-family: var(--fu);
  font-size: .70rem;
  color: rgba(255,255,255,.60);
  text-align: center;
  line-height: 1.3;
  max-width: 110px;
  transition: var(--tr);
}
.asoc-logo:hover .asoc-logo-name { color: var(--am); }

/* ============================================================
   FOOTER
   Fondo negro | borde superior 5px amarillo
   ============================================================ */
#site-footer {
  background: var(--ng);
  padding: 40px 0 0;
  border-top: 5px solid var(--am);
}
.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr 200px 220px;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
/* Brand: solo logo centrado + redes */
.footer-logo-link { display: block; margin-bottom: 16px; }
.footer-logo-link img { max-height: 80px; width: auto; }
.footer-brand .fb-social {
  display: grid;
  grid-template-columns: repeat(3, 48px);
  gap: 10px;
  margin-top: 20px;
  justify-content: start;
}
/* YouTube (4to) centrado bajo Facebook+X, TikTok (5to) centrado bajo X+Instagram */
.footer-brand .fb-social a:nth-child(4) { grid-column: 1; }
.footer-brand .fb-social a:nth-child(5) { grid-column: 2; }
.footer-brand .fb-social a {
  color: var(--bl);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  font-size: 1.2rem;
  transition: var(--tr);
}
.footer-brand .fb-social a:hover { background: var(--am); color: var(--ng); border-color: var(--am); transform: translateY(-2px); }
/* Secciones en grid de 2 columnas dentro de la col */
.footer-col h4 {
  color: var(--am);
  font-family: var(--ft);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(245,208,0,.22);
}
.footer-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-family: var(--fu);
  font-size: .83rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--tr);
}
.footer-col ul li a::before { content: '›'; color: var(--am); font-weight: 700; font-size: 1rem; }
.footer-sec-grid li a::before { content: '›'; color: var(--am); font-weight: 700; font-size: 1rem; }
.footer-col ul li a:hover,
.footer-sec-grid li a:hover { color: var(--am); padding-left: 4px; }
/* WhatsApp links */
.footer-wa-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.25);
  color: #25d366 !important;
  border-radius: var(--r);
  padding: 9px 12px;
  font-family: var(--fu);
  font-size: .84rem;
  font-weight: 600;
  transition: var(--tr);
  text-decoration: none;
}
.footer-wa-link::before { display: none !important; }
.footer-wa-link i { font-size: 1.1rem; }
.footer-wa-link:hover { background: rgba(37,211,102,.22); transform: translateX(3px); }
.footer-wa-pub {
  background: rgba(245,208,0,.10);
  border-color: rgba(245,208,0,.25);
  color: var(--am) !important;
  margin-top: 8px;
}
.footer-wa-pub:hover { background: rgba(245,208,0,.18); }
/* Mercado Opita link */
.footer-mercado-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.70) !important;
  border-radius: var(--r);
  padding: 9px 12px;
  font-family: var(--fu);
  font-size: .84rem;
  font-weight: 600;
  transition: var(--tr);
  text-decoration: none;
  margin-top: 8px;
}
.footer-mercado-link::before { display: none !important; }
.footer-mercado-link i { font-size: 1rem; color: var(--am); }
.footer-mercado-link:hover { background: rgba(245,208,0,.12); color: var(--am) !important; border-color: rgba(245,208,0,.3); }
/* Newsletter */
.nl-desc { color: rgba(255,255,255,.52); font-size: .82rem; font-family: var(--fu); margin-bottom: 10px; line-height: 1.6; }
.nl-input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  color: var(--bl);
  padding: 10px 12px;
  border-radius: var(--r);
  font-family: var(--fu);
  font-size: .84rem;
  outline: none;
  transition: var(--tr);
  margin-bottom: 8px;
  box-sizing: border-box;
}
.nl-input:focus { border-color: var(--am); background: rgba(255,255,255,.12); }
.nl-input::placeholder { color: rgba(255,255,255,.28); }
.btn-nl {
  background: linear-gradient(135deg, var(--am), var(--am2));
  color: var(--ng);
  padding: 10px 18px;
  border-radius: var(--r);
  font-family: var(--ft);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  width: 100%;
  transition: var(--tr);
  border: none;
  cursor: pointer;
}
.btn-nl:hover { transform: translateY(-2px); box-shadow: var(--sham); }
/* Footer bottom centrado */
.footer-bot { background: rgba(0,0,0,.35); padding: 14px 0; }
.footer-bot-in { display: flex; align-items: center; justify-content: center; }
.footer-bot p { color: rgba(255,255,255,.38); font-family: var(--fu); font-size: .76rem; text-align: center; }
.footer-bot a { color: var(--am); }

/* ============================================================
   SWIPER PERSONALIZADO
   ============================================================ */
.swiper-button-next,
.swiper-button-prev {
  color: var(--am) !important;
  background: rgba(0,0,0,.65);
  width: 38px !important;
  height: 38px !important;
  border-radius: 50%;
  transition: var(--tr);
}
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--am); color: var(--ng) !important; }
.swiper-button-next::after,
.swiper-button-prev::after { font-size: .86rem !important; font-weight: 900 !important; }
.swiper-pagination-bullet-active { background: var(--am) !important; }

/* ============================================================
   CAT BADGES
   ============================================================ */
.cat-badge {
  display: inline-block;
  background: var(--am);
  color: var(--ng);
  font-family: var(--ft);
  font-size: .64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 9px;
  border-radius: 2px;
}
.cat-badge.jud { background: var(--rj); color: var(--bl); }
.cat-badge.dep { background: var(--vd); color: var(--bl); }
.cat-badge.pol { background: #1565C0; color: var(--bl); }
.cat-badge.nac { background: #4527A0; color: var(--bl); }
.cat-badge.mun { background: #00695C; color: var(--bl); }
.cat-badge.far { background: #AD1457; color: var(--bl); }
.cat-badge.tec { background: #0277BD; color: var(--bl); }
.cat-badge.cul { background: #6A1B9A; color: var(--bl); }
.cat-badge.mod { background: #880E4F; color: var(--bl); }
.cat-badge.hui { background: #E65100; color: var(--bl); }
.cat-badge.nei { background: #BF360C; color: var(--bl); }
.cat-badge.opi { background: #37474F; color: var(--bl); }

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.single-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 24px; padding: 22px 0 44px; }
.single-art { background: var(--bl); border-radius: var(--r2); padding: 28px; box-shadow: var(--sh); border: 1px solid var(--gr); }
.post-header { margin-bottom: 18px; }
.post-header .post-cat { margin-bottom: 10px; }
.post-header h1 { font-family: var(--ft); font-size: clamp(1.4rem, 2.8vw, 2.2rem); line-height: 1.15; color: var(--ng); margin-bottom: 14px; }
.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--gr);
  border-bottom: 1px solid var(--gr);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.post-meta-bar span { font-family: var(--fu); font-size: .80rem; color: var(--gt); display: flex; align-items: center; gap: 5px; }
.post-meta-bar i { color: var(--am); }
.post-featured-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--r2); margin-bottom: 22px; }
.post-content { font-size: 1.01rem; line-height: 1.85; color: #2a2a2a; }
.post-content p { margin-bottom: 1.15em; }
.post-content h2, .post-content h3 { margin: 1.4em 0 .55em; }
.post-content blockquote {
  border-left: 4px solid var(--am);
  padding: 14px 18px;
  margin: 1.4em 0;
  background: var(--am3);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: #333;
}
.post-share { display: flex; align-items: center; gap: 9px; padding: 14px 0; margin-top: 22px; border-top: 2px solid var(--gr); flex-wrap: wrap; }
.post-share span { font-family: var(--ft); font-size: .86rem; text-transform: uppercase; letter-spacing: .05em; }
.share-btn { display: inline-flex; align-items: center; gap: 5px; padding: 7px 14px; border-radius: 30px; font-family: var(--fu); font-size: .80rem; font-weight: 700; color: var(--bl); transition: var(--tr); }
.share-btn:hover { opacity: .82; transform: translateY(-2px); color: var(--bl); }
.share-btn.fb { background: #1877F2; }
.share-btn.tw { background: #000; }
.share-btn.wa { background: #25D366; }
.single-sidebar .wgt-box { background: var(--bl); border-radius: var(--r2); overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--gr); margin-bottom: 18px; }
.wgt-box-hdr { background: var(--ng); color: var(--bl); padding: 11px 14px; font-family: var(--ft); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; border-bottom: 3px solid var(--am); display: flex; align-items: center; gap: 7px; }
.wgt-box-hdr i { color: var(--am); }
.wgt-box-body { padding: 14px; }
.pop-item { display: flex; gap: 9px; padding: 8px 0; border-bottom: 1px solid var(--gr); align-items: flex-start; transition: var(--tr); }
.pop-item:last-child { border-bottom: none; }
.pop-item:hover { background: var(--bg); padding-left: 5px; border-radius: 3px; }
.pop-num { background: var(--am); color: var(--ng); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ft); font-size: .74rem; font-weight: 800; flex-shrink: 0; }
.pop-item h5 { font-family: var(--ft); font-size: .80rem; line-height: 1.3; color: var(--ng); font-weight: 600; transition: var(--tr); }
.pop-item:hover h5 { color: var(--rj); }
.cat-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--gr); font-family: var(--fu); font-size: .83rem; }
.cat-row:last-child { border-bottom: none; }
.cat-row a { color: var(--ng); display: flex; align-items: center; gap: 5px; transition: var(--tr); }
.cat-row a:hover { color: var(--rj); padding-left: 4px; }
.cat-count { background: var(--am); color: var(--ng); font-size: .70rem; font-weight: 800; padding: 2px 8px; border-radius: 20px; }

/* ============================================================
   PAGINACIÓN
   ============================================================ */
.lvhn-pagination { margin: 24px 0; display: flex; justify-content: center; }
.lvhn-pagination ul { display: flex; gap: 5px; align-items: center; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.lvhn-pagination ul li a,
.lvhn-pagination ul li span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border-radius: var(--r); font-family: var(--fu); font-size: .88rem; font-weight: 600;
  border: 2px solid var(--gr); color: var(--gt); background: var(--bl);
  transition: var(--tr); text-decoration: none;
}
.lvhn-pagination ul li a:hover { background: var(--am); border-color: var(--am); color: var(--ng); }
.lvhn-pagination ul li span.current { background: var(--am); border-color: var(--am); color: var(--ng); font-weight: 800; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.lvhn-breadcrumbs { padding: 10px 0 16px; }
.lvhn-breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.lvhn-breadcrumbs ol li { display: flex; align-items: center; gap: 5px; font-family: var(--fu); font-size: .80rem; color: var(--gt); }
.lvhn-breadcrumbs ol li:not(:last-child)::after { content: '›'; color: var(--am); font-weight: 700; font-size: .95rem; }
.lvhn-breadcrumbs ol li a { color: var(--gt); transition: var(--tr); }
.lvhn-breadcrumbs ol li a:hover { color: var(--rj); }
.lvhn-breadcrumbs ol li:last-child { color: var(--ng); font-weight: 600; }

/* ============================================================
   404
   ============================================================ */
.e404-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.e404-num { font-size: 9rem; font-family: var(--ft); font-weight: 900; color: var(--am); line-height: 1; }
.e404-title { font-size: clamp(1.2rem, 3vw, 2rem); margin: 10px 0 16px; }
.e404-text { color: var(--gt); max-width: 480px; margin: 0 auto 28px; font-size: 1rem; }
.e404-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.e404-btn { padding: 12px 28px; border-radius: 30px; font-family: var(--ft); font-weight: 700; text-transform: uppercase; font-size: .9rem; transition: var(--tr); display: flex; align-items: center; gap: 7px; }
.e404-btn.primary { background: var(--am); color: var(--ng); }
.e404-btn.primary:hover { background: var(--am2); transform: translateY(-2px); box-shadow: var(--sham); }
.e404-btn.secondary { background: var(--ng); color: var(--bl); border: 2px solid var(--ng4); }
.e404-btn.secondary:hover { border-color: var(--am); }

/* ============================================================
   SHORTCODES
   ============================================================ */
.lvhn-shortcode-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin: 14px 0; }
.lvhn-latest-list { list-style: none; padding: 0; margin: 0; }
.lvhn-latest-list li { padding: 7px 0; border-bottom: 1px solid var(--gr); font-size: .88rem; display: flex; align-items: center; gap: 7px; }
.lvhn-latest-list li::before { content: '▶'; color: var(--am); font-size: .55rem; flex-shrink: 0; }
.lvhn-latest-list li a { color: var(--ng); transition: var(--tr); }
.lvhn-latest-list li a:hover { color: var(--rj); }
.lvhn-ad-block img { max-width: 100%; height: auto; display: block; margin: 0 auto; }

/* ============================================================
   WIDGET GENÉRICO (títulos, etc.)
   ============================================================ */
.widget-title {
  font-family: var(--ft);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ng);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--am);
}

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area { margin-top: 30px; padding-top: 24px; border-top: 2px solid var(--gr); }
.comments-title { font-family: var(--ft); font-size: 1.1rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; display: flex; align-items: center; gap: 9px; }
.comments-title::after { content: ''; flex: 1; height: 2px; background: var(--gr); }
.comment-list { list-style: none; padding: 0; margin: 0 0 22px; }
.comment-list .comment { padding: 14px 0; border-bottom: 1px solid var(--gr); }
.comment-list .comment:last-child { border-bottom: none; }
.comment-author .avatar { border-radius: 50%; border: 2px solid var(--am); }
.comment-content p { font-size: .9rem; line-height: 1.7; color: #333; margin-top: 7px; }
.reply a { font-family: var(--fu); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--rj); font-weight: 700; }
.comment-respond { background: var(--bg); border-radius: var(--r2); padding: 24px; margin-top: 24px; border: 1px solid var(--gr); }
.comment-respond h3 { font-family: var(--ft); font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.comment-form label { display: block; font-family: var(--fu); font-size: .83rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; color: var(--gt); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; padding: 10px 12px; border: 2px solid var(--gr);
  border-radius: var(--r); font-size: .88rem; outline: none;
  transition: var(--tr); background: var(--bl); font-family: var(--fb);
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--am); }
.comment-form textarea { min-height: 110px; resize: vertical; }
.form-submit input[type="submit"] {
  background: linear-gradient(135deg, var(--am), var(--am2));
  color: var(--ng);
  border: none;
  padding: 11px 26px;
  border-radius: 30px;
  font-family: var(--ft);
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: var(--tr);
}
.form-submit input[type="submit"]:hover { transform: translateY(-2px); box-shadow: var(--sham); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 861px) {
  .opinion-grid { height: 520px; }
  .op-versiculo { height: 100%; }
  .versiculo-iframe-wrap { height: 100%; min-height: 0; }
  .versiculo-iframe-wrap iframe { height: 100%; }
  .op-extras { height: 100%; }
  .caricatura-wgt { height: 100%; }
  .caricatura-img { height: 100%; min-height: unset; }
}

@media (max-width: 1200px) {
  .header-inner { grid-template-columns: 150px 1fr 270px; gap: 14px; }
  .main-news-grid { grid-template-columns: 1fr 270px; }
  .main-news-grid .news-sidebar { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 160px 1fr 180px 200px; gap: 24px; }
  /* Opinion: 3 col → 2 col arriba + versículo abajo */
  .opinion-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }
  .op-main   { grid-column: 1; grid-row: 1; }
  .op-extras { grid-column: 2; grid-row: 1; flex-direction: column; height: 480px; }
  .op-versiculo { grid-column: 1 / -1; grid-row: 2; height: auto; }
  .versiculo-iframe-wrap { min-height: 420px; height: 420px; }
  .versiculo-iframe-wrap iframe { height: 420px; }
  .caricatura-wgt { flex: 1; height: 100%; }
  .jd-grid { grid-template-columns: 1fr 1fr; }
  .futbol-wgt { grid-column: 1 / -1; }
}

@media (max-width: 1000px) {
  .header-inner { grid-template-columns: 140px 1fr 240px; gap: 10px; }
  .wbar-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 860px) {
  #site-header { height: auto; min-height: 76px; padding: 10px 0; position: relative; }
  .header-inner {
    grid-template-columns: 130px 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .hcol-pub { grid-column: 1 / -1; order: 3; }
  .hcol-right { align-items: flex-end; }
  .wbar-grid { grid-template-columns: repeat(3, 1fr); }
  .jd-grid { grid-template-columns: 1fr; }
  .auto-3col { grid-template-columns: 1fr; }
  .auto-col { border-right: none; border-bottom: 1px solid var(--gr); }
  .auto-col:last-child { border-bottom: none; }
  /* Opinion móvil: 1 columna, cada bloque con altura natural */
  .opinion-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 16px;
  }
  .op-main   { grid-column: 1; grid-row: auto; }
  .op-extras { grid-column: 1; grid-row: auto; height: auto; flex-direction: column; }
  .op-versiculo { grid-column: 1; grid-row: auto; height: auto; }
  .caricatura-wgt { height: auto; flex: none; }
  .caricatura-img { height: 360px; min-height: unset; object-fit: cover; object-position: top center; }
  .versiculo-iframe-wrap { min-height: 460px; height: 460px; }
  .versiculo-iframe-wrap iframe { height: 460px; }
  .about-grid { grid-template-columns: 1fr; }
  .single-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-sec-grid { grid-template-columns: 1fr 1fr; }
  /* Menú móvil */
  .main-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    top: auto; left: auto; right: auto;
    background: var(--ng3);
    border-top: none;
    box-shadow: none;
    z-index: auto;
    height: auto;
    justify-content: center;
    padding: 4px 0;
  }
  .main-menu.active { display: flex; }
  .main-menu > li { height: auto; width: auto; }
  .main-menu > li > a {
    padding: 7px 10px;
    border-bottom: none;
    font-size: .75rem;
    width: auto;
    height: auto;
  }
  .nav-toggle { display: none; }
  #main-nav { height: auto; position: relative; }
  .nav-inner { height: auto; padding: 0; justify-content: center; }
}

@media (max-width: 680px) {
  .header-inner { grid-template-columns: 110px 1fr; gap: 8px; }
  .hcol-pub { display: none; }
  /* Wbar: scroll horizontal para ver todos los widgets */
  #widgets-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .wbar-grid {
    grid-template-columns: repeat(6, minmax(100px, 1fr));
    min-width: 600px;
    width: max-content;
  }
  .wbar-item { height: 68px; min-width: 100px; }
  .search-box input { width: 90px; }
  .main-news-grid { grid-template-columns: 1fr; }
  .news-sidebar { grid-template-columns: 1fr !important; }
  .jd-grid, .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-sec-grid { grid-template-columns: 1fr 1fr; }
  .footer-bot-in { justify-content: center; text-align: center; }
  /* Publicidad banners: imagen completa sin recortar */
  .pub-banner-strip .swiper { height: auto; }
  .pub-banner-strip .swiper-slide a { display: block; }
  .pub-banner-strip .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: var(--r);
    background: var(--ng);
  }
  .pub-ph { height: 140px; }
  /* Clasificados/publicidad: ancho completo en móvil */
  #clasificados .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    width: 100%;
  }
  #clasificados .clas-head {
    padding-left: 12px;
    padding-right: 12px;
  }
  #swiper-clas {
    border-radius: 0;
    width: 100%;
  }
  .clas-slide img {
    height: auto;
    max-height: 180px;
    object-fit: contain;
    background: var(--ng2);
  }
  /* Facebook: forzar ancho completo */
  .fb-widget-body { overflow-x: hidden; }
  .fb-widget-body .fb-page,
  .fb-widget-body .fb-page span,
  .fb-widget-body .fb-page span iframe {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .hcol-logo img,
  .hcol-logo .wp-custom-logo img,
  .hcol-logo figure img { height: 58px !important; max-height: 58px !important; }
  /* wbar sigue con scroll horizontal, no colapsar */
  .btn-wa span { display: none; }
  .search-box input { width: 70px; }
  .ticker-tag { padding: 0 10px; font-size: .66rem; }
}

@media print {
  #topbar, #site-header, #main-nav, #ticker-bar,
  #site-footer, .news-sidebar, .pub-banner-strip { display: none !important; }
  .single-wrap { grid-template-columns: 1fr; }
  body { background: #fff; }
}

/* ============================================================
   ARCHIVE / CATEGORY LAYOUT
   ============================================================ */
.archive-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* Grid de tarjetas en archivo */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Tarjeta de artículo en archivo */
.arch-card {
  background: var(--bl);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--gr);
  display: flex;
  flex-direction: column;
  transition: var(--tr);
}
.arch-card:hover { box-shadow: var(--sh2); transform: translateY(-3px); }
.arch-card-img-wrap { display: block; overflow: hidden; }
.arch-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.arch-card:hover .arch-card-img { transform: scale(1.05); }
.arch-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.arch-card-title {
  font-family: var(--ft);
  font-size: .95rem;
  line-height: 1.3;
  color: var(--ng);
  font-weight: 700;
  transition: var(--tr);
}
.arch-card-title a { color: inherit; }
.arch-card:hover .arch-card-title { color: var(--rj); }
.arch-card-excerpt {
  font-size: .82rem;
  color: var(--gt);
  line-height: 1.5;
  margin: 0;
}
.arch-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--gr);
}
.arch-card-meta {
  font-family: var(--fu);
  font-size: .76rem;
  color: var(--gt);
  display: flex;
  align-items: center;
  gap: 4px;
}
.arch-card-meta i { color: var(--am); }
.arch-card-read {
  font-family: var(--ft);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  color: var(--rj);
  transition: var(--tr);
}
.arch-card-read:hover { color: var(--rj2); }

/* Estado vacío */
.arch-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--bl);
  border-radius: var(--r2);
  border: 2px dashed var(--gr);
}
.arch-empty i { font-size: 3rem; color: var(--gr); margin-bottom: 16px; display: block; }
.arch-empty h2 { color: var(--gt); font-size: 1.2rem; }
.arch-empty p { color: var(--gt); margin-top: 8px; font-size: .9rem; }
.arch-empty .e404-btn { display: inline-flex; margin-top: 20px; }

/* Noticia destacada en category.php */
.cat-feat {
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh2);
}
.cat-feat-link { display: block; position: relative; }
.cat-feat-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.cat-feat:hover .cat-feat-img { transform: scale(1.04); }
.cat-feat-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.92));
  padding: 60px 24px 24px;
}
.cat-feat-badge {
  display: inline-block;
  color: #fff;
  font-family: var(--ft);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 8px;
}
.cat-feat-title {
  color: #fff;
  font-family: var(--ft);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: 8px;
}
.cat-feat-meta {
  color: rgba(255,255,255,.70);
  font-family: var(--fu);
  font-size: .78rem;
}
.cat-feat-meta i { color: var(--am); }

/* ============================================================
   WIDGET BOX (sidebar de single/archive/category)
   ============================================================ */
.wgt-box {
  background: var(--bl);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--gr);
  margin-bottom: 18px;
}
.wgt-box-hdr {
  background: var(--ng);
  color: var(--bl);
  padding: 11px 14px;
  font-family: var(--ft);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 3px solid var(--am);
  display: flex;
  align-items: center;
  gap: 7px;
}
.wgt-box-hdr i { color: var(--am); }
.wgt-box-body { padding: 14px; }

/* ============================================================
   SINGLE: ESTILOS ADICIONALES
   ============================================================ */
.img-caption {
  font-size: .78rem;
  color: var(--gt);
  text-align: center;
  margin-top: -14px;
  margin-bottom: 20px;
  font-family: var(--fu);
}
.post-tags {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 2px solid var(--gr);
}
.post-tags-label {
  font-family: var(--ft);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 8px;
}
.post-tags-label i { color: var(--am); }
.post-tag {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--gr);
  color: var(--ng);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: .78rem;
  margin: 3px;
  font-family: var(--fu);
  transition: var(--tr);
}
.post-tag:hover { background: var(--am); border-color: var(--am); color: var(--ng); }

.post-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid var(--gr);
}
.post-nav-item {
  background: var(--bg);
  border-radius: var(--r2);
  padding: 16px;
  border: 1px solid var(--gr);
  transition: var(--tr);
  display: block;
}
.post-nav-item:hover { border-color: var(--am); box-shadow: var(--sh); }
.post-nav-right { text-align: right; }
.post-nav-label {
  font-size: .75rem;
  color: var(--gt);
  font-family: var(--fu);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-nav-right .post-nav-label { justify-content: flex-end; }
.post-nav-label i { color: var(--am); }
.post-nav-title { font-family: var(--ft); font-size: .9rem; line-height: 1.3; color: var(--ng); }

/* ============================================================
   RESPONSIVE ARCHIVE/SINGLE ADDITIONS
   ============================================================ */
@media (max-width: 900px) {
  .archive-layout { grid-template-columns: 1fr; }
  .archive-layout aside { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 680px) {
  .archive-grid { grid-template-columns: 1fr; }
  .archive-layout aside { grid-template-columns: 1fr; }
  .post-nav-grid { grid-template-columns: 1fr; }
  .cat-feat-img { height: 210px; }
}

/* ============================================================
   NEWSLETTER EN SIDEBAR (fondo blanco - dentro de wgt-box)
   ============================================================ */
.wgt-box .nl-desc {
  color: var(--gt);
}
.wgt-box .nl-input {
  background: var(--bg);
  border-color: var(--gr);
  color: var(--ng);
}
.wgt-box .nl-input::placeholder { color: var(--gt2); }
.wgt-box .nl-input:focus { border-color: var(--am); background: var(--bl); }

/* ============================================================
   CARICATURA SLIDER AUTOMÁTICO
   ============================================================ */
.caric-slider {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: block;
  min-height: 200px;
  background: var(--ng);
}
.caric-slide {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  animation: caricFadeIn .5s ease;
}
.caric-slide.active {
  display: block;
  position: relative;
}
@keyframes caricFadeIn {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}
.caric-slide img.caricatura-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s ease;
}
.caric-slide:hover img.caricatura-img { transform: scale(1.03); }
.caric-slide-caption {
  display: none;
}
.caric-date {
  font-family: var(--fu);
  font-size: .7rem;
  color: var(--am);
  display: flex;
  align-items: center;
  gap: 4px;
}
.caric-title {
  font-family: var(--ft);
  font-size: .82rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
}

/* Dots navegación */
.caric-slider-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.caric-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}
.caric-dot.on {
  background: var(--am);
  transform: scale(1.4);
}
.caric-dot:hover { background: rgba(255,255,255,.7); }

/* Ajuste de extra-wgt-hdr para que quepa los dots */
.extra-wgt-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.extra-wgt-hdr h3 { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
