
/* ============================================================
   Voces de PBA — Portal de noticias.
   Maqueta editorial inspirada en patrón visual de portales
   argentinos tipo Infobae. Marca, autores, textos e imágenes
   son ficticios. Sin assets propietarios.
   ============================================================ */


/* ============================================================
   1. RESET
   ============================================================ */
.nsfvocespba-scope *, .nsfvocespba-scope *::before, .nsfvocespba-scope *::after{ box-sizing: border-box; margin: 0; padding: 0; }
.nsfvocespba-scope{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
.nsfvocespba-scope{
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.45;
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.nsfvocespba-scope img, .nsfvocespba-scope svg, .nsfvocespba-scope picture, .nsfvocespba-scope video{ display: block; max-width: 100%; }
.nsfvocespba-scope a{ color: inherit; text-decoration: none; }
.nsfvocespba-scope button{ font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
.nsfvocespba-scope ul, .nsfvocespba-scope ol{ list-style: none; }
.nsfvocespba-scope input{ font: inherit; color: inherit; }


/* ============================================================
   2. VARIABLES
   ============================================================ */
.nsfvocespba-scope{
  /* Paleta editorial rojo */
  --c-red:       #d6202b;
  --c-red-soft:  #fff4ec;
  --c-red:          #cc1d1d;
  --c-red-live:     #e02020;
  --c-yellow:       #f5c518;
  --c-yellow-soft:  #fff8d6;
  --c-text:         #1a1a1a;
  --c-text-soft:    #565a6c;
  --c-meta:         #8a8e9c;
  --c-line:         #e6e6e6;
  --c-line-soft:    #f0f0f0;
  --c-bg-alt:       #f6f6f6;
  --c-bg-dark:      #1f1f1f;

  /* Tipografía: stack nativa, lo más cercano a Source Sans posible */
  --f-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --w-max: 1280px;
  --header-h: 56px;

  /* Transiciones */
  --t-fast: 150ms ease;
  --t-mid:  250ms ease;
}


/* ============================================================
   3. CONTENEDORES
   ============================================================ */
.nsfvocespba-scope .container{
  width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 16px;
}

.nsfvocespba-scope .sr-only{
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ============================================================
   4. VIEW SWITCHER (debugger maqueta)
   ============================================================ */
.nsfvocespba-scope .view-switcher{
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 9000;
  background: #1f1f1f;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  padding: 4px;
  display: flex;
  gap: 2px;
}
.nsfvocespba-scope .view-switcher button{
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #aaa;
  border-radius: 20px;
  transition: all var(--t-fast);
}
.nsfvocespba-scope .view-switcher button:hover{ color: #fff; }
.nsfvocespba-scope .view-switcher button.is-active{
  background: var(--c-red);
  color: #fff;
}


/* ============================================================
   5. HEADER (sticky principal)
   Patrón Infobae mobile: hamburguesa+lupa combinada,
   logo wordmark centrado, avatar derecha.
   ============================================================ */
.nsfvocespba-scope .site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.nsfvocespba-scope .site-header-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
  gap: 12px;
}

/* Botón combinado hamburguesa + lupa (signature mobile) */
.nsfvocespba-scope .menu-search{
  display: inline-flex;
  align-items: center;
  height: 40px;
  border: 1px solid var(--c-line);
  border-radius: 22px;
  padding: 0 4px;
  background: #fff;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nsfvocespba-scope .menu-search:hover{ border-color: var(--c-text); }
.nsfvocespba-scope .menu-search button{
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-text);
  transition: background var(--t-fast);
}
.nsfvocespba-scope .menu-search button:hover{ background: var(--c-bg-alt); }
.nsfvocespba-scope .menu-search button svg{ width: 20px; height: 20px; fill: currentColor; }
.nsfvocespba-scope .menu-search .ms-divider{
  width: 1px;
  height: 18px;
  background: var(--c-line);
}

/* Logo wordmark rojo */
.nsfvocespba-scope .brand-logo{
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 28px;
  color: var(--c-red);
  letter-spacing: -1px;
  text-align: center;
  line-height: 1;
  justify-self: center;
}

/* Avatar usuario (placeholder ícono) */
.nsfvocespba-scope .user-btn{
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-meta);
  transition: all var(--t-fast);
}
.nsfvocespba-scope .user-btn:hover{ border-color: var(--c-text); color: var(--c-text); }
.nsfvocespba-scope .user-btn svg{ width: 22px; height: 22px; fill: currentColor; }


/* ============================================================
   6. LIVE BAR — Banda debajo del header con
   "FM 102.3 · EN VIVO · Programa · Hace X min ·  ›"
   ============================================================ */
.nsfvocespba-scope .live-bar{
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.nsfvocespba-scope .live-bar-inner{
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
}
.nsfvocespba-scope .fm-badge{
  flex-shrink: 0;
  background: var(--c-red);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.nsfvocespba-scope .fm-badge small{
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .5px;
  opacity: .95;
}
.nsfvocespba-scope .live-status{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--c-red-live);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.nsfvocespba-scope .live-status .dot{
  width: 8px; height: 8px;
  background: var(--c-red-live);
  border-radius: 50%;
  animation: livepulse 1.4s ease-in-out infinite;
}
@keyframes livepulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.nsfvocespba-scope .live-title{
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  color: var(--c-text);
}
.nsfvocespba-scope .live-time{
  flex-shrink: 0;
  color: var(--c-red-live);
  font-size: 12px;
  font-weight: 600;
}
.nsfvocespba-scope .live-chevron{
  flex-shrink: 0;
  color: var(--c-meta);
  font-size: 18px;
}


/* ============================================================
   7. TRENDS BAR — Rayo + items scroll horizontal
   ============================================================ */
.nsfvocespba-scope .trends-bar{
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.nsfvocespba-scope .trends-bar-inner{
  display: flex;
  align-items: center;
  gap: 16px;
  height: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nsfvocespba-scope .trends-bar-inner::-webkit-scrollbar{ display: none; }
.nsfvocespba-scope .trends-label{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 13px;
  color: var(--c-text);
}
.nsfvocespba-scope .trends-label .bolt{
  width: 14px; height: 14px;
  fill: var(--c-yellow);
}
.nsfvocespba-scope .trends-items{
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.nsfvocespba-scope .trends-items a{
  font-size: 13px;
  color: var(--c-text);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.nsfvocespba-scope .trends-items a:hover{ color: var(--c-red); }
.nsfvocespba-scope .trends-items .live-item{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--c-red-live);
  font-weight: 700;
}
.nsfvocespba-scope .trends-items .live-item::before{
  content: "";
  width: 6px; height: 6px;
  background: var(--c-red-live);
  border-radius: 50%;
  display: inline-block;
}


/* ============================================================
   8. CARDS BASE
   ============================================================ */
.nsfvocespba-scope .card{ display: block; }
.nsfvocespba-scope .card-img{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #ddd, #999);
}
.nsfvocespba-scope .card-img.sq{ aspect-ratio: 1 / 1; }
.nsfvocespba-scope .card-img.s1{ background: linear-gradient(135deg, #b8c01b 0%, #8fa019 50%, #5a6e10 100%); }
.nsfvocespba-scope .card-img.s2{ background: linear-gradient(135deg, #2c3e50, #4ca1af); }
.nsfvocespba-scope .card-img.s3{ background: linear-gradient(135deg, #614385, #516395); }
.nsfvocespba-scope .card-img.s4{ background: linear-gradient(135deg, #ee9ca7, #ffdde1); }
.nsfvocespba-scope .card-img.s5{ background: linear-gradient(135deg, #134e5e, #71b280); }
.nsfvocespba-scope .card-img.s6{ background: linear-gradient(135deg, #b79891, #94716b); }
.nsfvocespba-scope .card-img.s7{ background: linear-gradient(135deg, #283c86, #45a247); }
.nsfvocespba-scope .card-img.s8{ background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.nsfvocespba-scope .card-img.s9{ background: linear-gradient(135deg, #c31432, #240b36); }
.nsfvocespba-scope .card-img.s10{ background: linear-gradient(135deg, #ff512f, #f09819); }
.nsfvocespba-scope .card-img.s11{ background: linear-gradient(135deg, #1f4037, #99f2c8); }
.nsfvocespba-scope .card-img.s12{ background: linear-gradient(135deg, #16222a, #3a6073); }
.nsfvocespba-scope .card-img.s13{ background: linear-gradient(135deg, #4b6cb7, #182848); }
.nsfvocespba-scope .card-img.s14{ background: linear-gradient(135deg, #f7971e, #ffd200); }
.nsfvocespba-scope .card-img.s15{ background: linear-gradient(135deg, #5a3e2b 0%, #8b6443 50%, #c4a777 100%); }
.nsfvocespba-scope .card-img::after{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,.25), transparent 60%);
  pointer-events: none;
}

.nsfvocespba-scope .card-img .video-play{
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px; height: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.nsfvocespba-scope .card-img .video-play::before{
  content: "";
  width: 0; height: 0;
  border: solid transparent;
  border-width: 6px 0 6px 10px;
  border-left-color: #fff;
  margin-left: 2px;
}

.nsfvocespba-scope .card-title{
  font-family: var(--f-sans);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
  transition: color var(--t-fast);
}
.nsfvocespba-scope .card:hover .card-title{ color: var(--c-red); }

.nsfvocespba-scope .card-byline{
  color: var(--c-meta);
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
}


/* ============================================================
   9. HERO HOME — Título grande + bajada + autor + foto
   ============================================================ */
.nsfvocespba-scope .hero{
  padding: 18px 0 22px;
}
.nsfvocespba-scope .hero-title{
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.12;
  color: var(--c-text);
  margin-bottom: 12px;
  letter-spacing: -.3px;
}
.nsfvocespba-scope .hero-sub{
  font-size: 16px;
  line-height: 1.45;
  color: var(--c-text-soft);
  margin-bottom: 12px;
}
.nsfvocespba-scope .hero-byline{
  color: var(--c-meta);
  font-size: 13px;
  margin-bottom: 14px;
}
.nsfvocespba-scope .hero-img{
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #b8c01b 0%, #8fa019 40%, #5a6e10 100%);
  position: relative;
  overflow: hidden;
}
.nsfvocespba-scope .hero-img::after{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.3), transparent 60%);
}


/* ============================================================
   10. GRID 2-COL (notas debajo del hero, patrón mobile)
   ============================================================ */
.nsfvocespba-scope .dual-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 6px 0 24px;
}
.nsfvocespba-scope .dual-grid .card-title{
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.nsfvocespba-scope .dual-grid .card-byline{
  margin-bottom: 10px;
  font-size: 12px;
}
.nsfvocespba-scope .dual-grid .card-img{ aspect-ratio: 4 / 3; }


/* ============================================================
   11. AD SLOT
   ============================================================ */
.nsfvocespba-scope .ad-wrap{
  text-align: center;
  margin: 24px 0;
  padding: 14px 0;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.nsfvocespba-scope .ad-wrap::before{
  content: "PUBLICIDAD";
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--c-meta);
  margin-bottom: 10px;
  font-weight: 600;
}
.nsfvocespba-scope .ad-box{
  margin: 0 auto;
  background:
    repeating-linear-gradient(135deg, #ececec 0 14px, #f4f4f4 14px 28px);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.nsfvocespba-scope .ad-mobile-banner{ height: 100px; max-width: 320px; }
.nsfvocespba-scope .ad-billboard{ height: 250px; max-width: 970px; }
.nsfvocespba-scope .ad-leaderboard{ height: 90px; max-width: 728px; }
.nsfvocespba-scope .ad-rectangle{ height: 250px; max-width: 300px; }
.nsfvocespba-scope .ad-half-page{ height: 600px; max-width: 300px; }


/* ============================================================
   12. SECCIONES HOME — bloques de categoría con título
   ============================================================ */
.nsfvocespba-scope .section-block{
  padding: 8px 0 20px;
}
.nsfvocespba-scope .section-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-text);
}
.nsfvocespba-scope .section-title{
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -.2px;
  color: var(--c-text);
}
.nsfvocespba-scope .section-link{
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color var(--t-fast);
}
.nsfvocespba-scope .section-link:hover{ color: var(--c-red); }
.nsfvocespba-scope .section-link::after{
  content: "›";
  color: var(--c-red);
  margin-left: 4px;
  font-weight: 800;
}


/* ============================================================
   13. DRAWER MOBILE (panel lateral con menú largo)
   ============================================================ */
.nsfvocespba-scope .drawer-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.nsfvocespba-scope .drawer-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

.nsfvocespba-scope .drawer{
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #fff;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 280ms ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nsfvocespba-scope .drawer.is-open{ transform: translateX(0); }

/* Banner persistente arriba del drawer (replica patrón mobile) */
.nsfvocespba-scope .drawer-ad{
  background: var(--c-bg-alt);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nsfvocespba-scope .drawer-ad-box{
  width: 100%;
  max-width: 320px;
  height: 50px;
  background:
    repeating-linear-gradient(135deg, #ececec 0 12px, #f4f4f4 12px 24px);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.nsfvocespba-scope .drawer-header{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  height: var(--header-h);
  padding: 0 16px;
  border-bottom: 1px solid var(--c-line);
}
.nsfvocespba-scope .drawer-close{
  width: 40px; height: 40px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--c-text);
}
.nsfvocespba-scope .drawer-close:hover{ background: var(--c-bg-alt); }
.nsfvocespba-scope .drawer-logo{
  font-weight: 800;
  font-size: 28px;
  color: var(--c-red);
  letter-spacing: -1px;
  text-align: center;
  justify-self: center;
}

.nsfvocespba-scope .drawer-search{
  padding: 18px 16px;
}
.nsfvocespba-scope .drawer-search-input{
  position: relative;
}
.nsfvocespba-scope .drawer-search-input input{
  width: 100%;
  height: 46px;
  padding: 0 48px 0 18px;
  border: 1px solid var(--c-line);
  border-radius: 23px;
  background: #fff;
  font-size: 15px;
  color: var(--c-text);
}
.nsfvocespba-scope .drawer-search-input input::placeholder{ color: var(--c-meta); }
.nsfvocespba-scope .drawer-search-input .ds-icon{
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  color: var(--c-text-soft);
}
.nsfvocespba-scope .drawer-search-input .ds-icon svg{ width: 100%; height: 100%; fill: currentColor; }

.nsfvocespba-scope .drawer-nav{
  flex: 1;
  overflow-y: auto;
  padding: 4px 0 20px;
}
.nsfvocespba-scope .drawer-nav li{
  border-bottom: 1px solid var(--c-line-soft);
}
.nsfvocespba-scope .drawer-nav li:last-child{ border-bottom: none; }
.nsfvocespba-scope .drawer-nav a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 17px;
  color: var(--c-text);
  transition: background var(--t-fast);
}
.nsfvocespba-scope .drawer-nav a:hover{ background: var(--c-bg-alt); }
.nsfvocespba-scope .drawer-nav li.has-sub a{ font-weight: 700; }
.nsfvocespba-scope .drawer-nav li.has-sub a::after{
  content: "";
  width: 10px; height: 10px;
  border-right: 2px solid var(--c-text);
  border-bottom: 2px solid var(--c-text);
  transform: rotate(-45deg);
  margin-left: 8px;
}
.nsfvocespba-scope .drawer-nav li.divider{
  border: none;
  height: 8px;
  background: var(--c-bg-alt);
}


/* ============================================================
   14. PÁGINA DE NOTA INDIVIDUAL
   ============================================================ */
.nsfvocespba-scope .note-wrap{
  padding: 20px 0 36px;
}

.nsfvocespba-scope .note-breadcrumb{
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 14px;
}
.nsfvocespba-scope .note-breadcrumb a:hover{ color: var(--c-red); }
.nsfvocespba-scope .note-breadcrumb::after{
  content: " ›";
  color: var(--c-text);
  font-weight: 800;
}

.nsfvocespba-scope .note-title{
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.12;
  color: var(--c-text);
  margin-bottom: 14px;
  letter-spacing: -.4px;
}
.nsfvocespba-scope .note-subtitle{
  font-size: 17px;
  line-height: 1.5;
  color: var(--c-text-soft);
  margin-bottom: 18px;
}

.nsfvocespba-scope .note-author-row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 14px;
}
.nsfvocespba-scope .author-block{
  display: flex;
  align-items: center;
  gap: 8px;
}
.nsfvocespba-scope .author-avatar{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), #c2521a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.nsfvocespba-scope .author-name{
  font-size: 14px;
  color: var(--c-text);
}
.nsfvocespba-scope .author-name strong{ font-weight: 700; }

/* Chip "Agregar [marca] en G" — outline pill con logo G */
.nsfvocespba-scope .google-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--c-line);
  border-radius: 22px;
  font-size: 13px;
  color: var(--c-text);
  transition: background var(--t-fast);
  position: relative;
  margin-left: auto;
}
.nsfvocespba-scope .google-chip:hover{ background: var(--c-bg-alt); }
.nsfvocespba-scope .google-chip svg.gicon{ width: 18px; height: 18px; }
.nsfvocespba-scope .google-chip svg.plus{ width: 16px; height: 16px; fill: var(--c-text-soft); }

/* Tooltip amarillo del chip */
.nsfvocespba-scope .gchip-tooltip{
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--c-yellow-soft);
  border: 1px solid var(--c-yellow);
  border-radius: 6px;
  padding: 10px 28px 10px 14px;
  font-size: 12px;
  color: var(--c-text);
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  z-index: 5;
}
.nsfvocespba-scope .gchip-tooltip .ttip-close{
  position: absolute;
  top: 6px; right: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--c-text-soft);
}
.nsfvocespba-scope .gchip-tooltip::before{
  content: "";
  position: absolute;
  top: -7px; right: 24px;
  width: 12px; height: 12px;
  background: var(--c-yellow-soft);
  border-left: 1px solid var(--c-yellow);
  border-top: 1px solid var(--c-yellow);
  transform: rotate(45deg);
}

.nsfvocespba-scope .note-date{
  color: var(--c-meta);
  font-size: 13px;
  padding: 12px 0;
  margin-bottom: 8px;
  text-align: left;
}

/* Botones de compartir: CÍRCULOS OUTLINE (firma visual) */
.nsfvocespba-scope .share-row{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0 18px;
  flex-wrap: wrap;
}
.nsfvocespba-scope .share-btn{
  width: 38px; height: 38px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  transition: all var(--t-fast);
}
.nsfvocespba-scope .share-btn:hover{
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.nsfvocespba-scope .share-btn svg{ width: 16px; height: 16px; fill: currentColor; }
.nsfvocespba-scope .share-divider{
  width: 1px;
  height: 28px;
  background: var(--c-line);
  margin: 0 4px;
}
.nsfvocespba-scope .share-save{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px 0 12px;
  height: 38px;
  border: 1px solid var(--c-line);
  border-radius: 19px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  transition: all var(--t-fast);
}
.nsfvocespba-scope .share-save:hover{ background: var(--c-bg-alt); }
.nsfvocespba-scope .share-save svg{ width: 16px; height: 16px; fill: currentColor; }

.nsfvocespba-scope .note-figure{
  margin-bottom: 8px;
}
.nsfvocespba-scope .note-figure .card-img{ aspect-ratio: 16 / 9; }
.nsfvocespba-scope .note-figcaption{
  font-size: 12px;
  color: var(--c-meta);
  padding: 8px 0 18px;
}

.nsfvocespba-scope .note-body{
  font-size: 17px;
  line-height: 1.65;
  color: #2a2a2a;
}
.nsfvocespba-scope .note-body > p{
  margin-bottom: 20px;
}
.nsfvocespba-scope .note-body strong, .nsfvocespba-scope .note-body b{
  font-weight: 700;
  color: var(--c-text);
}
.nsfvocespba-scope .note-body h2{
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  margin: 28px 0 14px;
  color: var(--c-text);
}
.nsfvocespba-scope .note-body h3{
  font-weight: 800;
  font-size: 19px;
  line-height: 1.3;
  margin: 24px 0 12px;
  color: var(--c-text);
}
.nsfvocespba-scope .note-body blockquote{
  border-left: 4px solid var(--c-red);
  padding: 6px 0 6px 18px;
  margin: 24px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.4;
}
.nsfvocespba-scope .note-body blockquote footer{
  font-size: 13px;
  font-style: normal;
  color: var(--c-meta);
  margin-top: 8px;
}
.nsfvocespba-scope .note-body figure{
  margin: 24px 0;
}
.nsfvocespba-scope .note-body figure .card-img{ aspect-ratio: 16 / 9; }
.nsfvocespba-scope .note-body figcaption{
  font-size: 12px;
  color: var(--c-meta);
  padding-top: 8px;
}

/* "Te puede interesar" — caja con borde amarillo lateral */
.nsfvocespba-scope .related-inline{
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-yellow);
  border-radius: 4px;
  padding: 14px 18px;
  margin: 24px 0;
  transition: background var(--t-fast);
}
.nsfvocespba-scope .related-inline:hover{ background: var(--c-bg-alt); }
.nsfvocespba-scope .related-inline-info{
  flex: 1;
}
.nsfvocespba-scope .related-inline-info small{
  display: block;
  font-size: 12px;
  color: var(--c-text-soft);
  margin-bottom: 4px;
}
.nsfvocespba-scope .related-inline-info strong{
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.nsfvocespba-scope .related-inline-arrow{
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-soft);
  font-size: 16px;
  flex-shrink: 0;
}

.nsfvocespba-scope .note-body .video-embed{
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  margin: 24px 0;
}
.nsfvocespba-scope .note-body .video-embed::after{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--c-red);
  border-radius: 50%;
}
.nsfvocespba-scope .note-body .video-embed::before{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  width: 0; height: 0;
  border: solid transparent;
  border-width: 10px 0 10px 16px;
  border-left-color: #fff;
  z-index: 2;
}

.nsfvocespba-scope .note-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--c-line);
  margin-top: 24px;
}
.nsfvocespba-scope .note-tags strong{
  font-size: 12px;
  color: var(--c-meta);
  text-transform: uppercase;
  letter-spacing: .8px;
  align-self: center;
  margin-right: 4px;
}
.nsfvocespba-scope .note-tags a{
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--c-bg-alt);
  border-radius: 14px;
  color: var(--c-text);
  transition: all var(--t-fast);
}
.nsfvocespba-scope .note-tags a:hover{ background: var(--c-red); color: #fff; }


/* ============================================================
   15. RELATED FINAL DE NOTA
   ============================================================ */
.nsfvocespba-scope .related-block{
  margin-top: 32px;
}
.nsfvocespba-scope .related-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 16px;
}
.nsfvocespba-scope .related-grid .card-title{
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 6px;
}


/* ============================================================
   16. PÁGINA DE CATEGORÍA
   ============================================================ */
.nsfvocespba-scope .cat-header{
  padding: 24px 0 22px;
  border-bottom: 1px solid var(--c-line);
}
.nsfvocespba-scope .cat-kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-red);
  margin-bottom: 8px;
}
.nsfvocespba-scope .cat-title{
  font-family: var(--f-sans);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--c-text);
  line-height: 1;
}
.nsfvocespba-scope .cat-desc{
  font-size: 15px;
  color: var(--c-text-soft);
  margin-top: 12px;
  line-height: 1.5;
  max-width: 680px;
}
.nsfvocespba-scope .cat-subnav{
  display: flex;
  gap: 6px;
  margin-top: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.nsfvocespba-scope .cat-subnav::-webkit-scrollbar{ display: none; }
.nsfvocespba-scope .cat-subnav button{
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  background: #fff;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nsfvocespba-scope .cat-subnav button:hover{ border-color: var(--c-text); }
.nsfvocespba-scope .cat-subnav button.is-active{
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}

.nsfvocespba-scope .cat-list{
  padding: 18px 0;
}
.nsfvocespba-scope .cat-item{
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: center;
}
.nsfvocespba-scope .cat-item:last-child{ border-bottom: none; }
.nsfvocespba-scope .cat-item .card-img{ aspect-ratio: 1 / 1; }
.nsfvocespba-scope .cat-item .card-title{
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.nsfvocespba-scope .cat-item .card-byline{ font-size: 12px; }
.nsfvocespba-scope .cat-item .kicker{
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--c-red);
  margin-bottom: 5px;
}

.nsfvocespba-scope .pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
}
.nsfvocespba-scope .pagination a, .nsfvocespba-scope .pagination span{
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  transition: all var(--t-fast);
}
.nsfvocespba-scope .pagination a:hover{ background: var(--c-bg-alt); }
.nsfvocespba-scope .pagination .is-current{
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.nsfvocespba-scope .pagination .dots{ border: none; }


/* ============================================================
   17. FOOTER
   ============================================================ */
.nsfvocespba-scope .footer{
  background: #fff;
  border-top: 3px solid var(--c-red);
  margin-top: 32px;
  padding: 32px 0 24px;
}
.nsfvocespba-scope .footer-brand{
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.nsfvocespba-scope .footer-brand .brand-logo{ font-size: 32px; }
.nsfvocespba-scope .footer-brand p{
  font-size: 13px;
  color: var(--c-text-soft);
  margin-top: 10px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.nsfvocespba-scope .footer-socials{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.nsfvocespba-scope .footer-socials a{
  width: 38px; height: 38px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  transition: all var(--t-fast);
}
.nsfvocespba-scope .footer-socials a:hover{
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.nsfvocespba-scope .footer-socials svg{ width: 15px; height: 15px; fill: currentColor; }

.nsfvocespba-scope .footer-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  margin-bottom: 32px;
}
.nsfvocespba-scope .footer-col h5{
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
}
.nsfvocespba-scope .footer-col ul{ display: flex; flex-direction: column; gap: 8px; }
.nsfvocespba-scope .footer-col a{
  font-size: 13px;
  color: var(--c-text-soft);
  transition: color var(--t-fast);
}
.nsfvocespba-scope .footer-col a:hover{ color: var(--c-red); }

.nsfvocespba-scope .footer-bottom{
  border-top: 1px solid var(--c-line);
  padding-top: 18px;
  text-align: center;
}
.nsfvocespba-scope .footer-bottom p{
  font-size: 12px;
  color: var(--c-meta);
  margin-bottom: 8px;
}
.nsfvocespba-scope .footer-bottom ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.nsfvocespba-scope .footer-bottom a{
  font-size: 12px;
  color: var(--c-text-soft);
}


/* ============================================================
   18. RESPONSIVE — Tablet 768+ y Desktop 1024+
   ============================================================ */

/* Tablet */
.nsfvocespba-scope @media (min-width: 768px){
  .container { padding: 0 24px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  .dual-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .dual-grid .card-title { font-size: 17px; }
  .cat-title { font-size: 44px; }
  .note-title { font-size: 36px; }
  .note-subtitle { font-size: 18px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: repeat(4, 1fr); gap: 30px; }
  .section-title { font-size: 20px; }
  .cat-item { grid-template-columns: 1fr 200px; gap: 22px; }
  .cat-item .card-title { font-size: 20px; }
}

/* Desktop */
.nsfvocespba-scope @media (min-width: 1024px){
  :root { --header-h: 64px; }
  .container { padding: 0 32px; }
  .brand-logo { font-size: 36px; }
  .menu-search { height: 44px; }
  .menu-search button { width: 40px; height: 40px; }
  .user-btn { width: 44px; height: 44px; }

  /* Hero: layout 2 columnas con imagen al lado */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    padding: 32px 0 40px;
    align-items: center;
  }
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 18px; margin-bottom: 16px; }
  .hero-img { aspect-ratio: 4 / 3; height: 100%; }

  /* Grid 4-col debajo del hero */
  .dual-grid { grid-template-columns: repeat(4, 1fr); }

  /* Layout principal main + sidebar para Home y Nota */
  .main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 24px 0;
  }
  .main-layout .home-main { min-width: 0; }
  .main-layout .home-side { min-width: 0; }

  .note-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 32px 0 48px;
  }
  .note-main { min-width: 0; max-width: 760px; }
  .note-title { font-size: 48px; }
  .note-subtitle { font-size: 19px; }
  .note-body { font-size: 18px; }

  .cat-title { font-size: 52px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }

  /* Live bar y Trends bar lado a lado en una sola línea */
  .live-bar-inner { height: 48px; font-size: 14px; }
  .trends-bar-inner { height: 44px; }
}

/* Mobile chico (≤ 360px) — ajustes ultra compactos */
.nsfvocespba-scope @media (max-width: 360px){
  .brand-logo { font-size: 24px; }
  .menu-search button { width: 32px; height: 32px; }
  .menu-search button svg { width: 18px; height: 18px; }
  .user-btn { width: 36px; height: 36px; }
  .hero-title { font-size: 24px; }
  .note-title { font-size: 26px; }
}


/* ============================================================
   19. ACCESIBILIDAD
   ============================================================ */
.nsfvocespba-scope a:focus-visible, .nsfvocespba-scope button:focus-visible, .nsfvocespba-scope input:focus-visible{
  outline: 2px solid var(--c-red);
  outline-offset: 2px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .nsfvocespba-scope *, .nsfvocespba-scope *::before, .nsfvocespba-scope *::after{
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Tarjetas más leídas (sidebar desktop) */
.nsfvocespba-scope .side-block{ margin-bottom: 32px; }
.nsfvocespba-scope .side-head{
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -.2px;
  color: var(--c-text);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-text);
  margin-bottom: 14px;
}
.nsfvocespba-scope .rank-list{ display: flex; flex-direction: column; }
.nsfvocespba-scope .rank-item{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line-soft);
  align-items: flex-start;
}
.nsfvocespba-scope .rank-item:last-child{ border-bottom: none; }
.nsfvocespba-scope .rank-num{
  font-weight: 800;
  font-size: 28px;
  color: var(--c-red);
  line-height: 1;
}
.nsfvocespba-scope .rank-item .card-title{ font-size: 14px; line-height: 1.3; margin-bottom: 4px; }
.nsfvocespba-scope .rank-item .card-byline{ font-size: 11px; }



.nsfvocespba-scope.nsfvocespba-hide-switcher .view-switcher{display:none!important;}
.nsfvocespba-scope .elementor-widget-container{width:100%;}

/* ============================================================
   Voces de PBA v1.4 widgets extra: indicadores, lo último, filas y split
   ============================================================ */
.nsfvocespba-scope .nsfvocespba-market-widget{width:100%;border-top:1px solid #d0d0d0;border-bottom:1px solid #d0d0d0;padding:18px 0 0;margin:0 auto 18px}.nsfvocespba-scope .nsfvocespba-market-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:8px}.nsfvocespba-scope .nsfvocespba-market-card{background:#f8f8f8;border:1px solid #e2e2e2;border-radius:10px;padding:10px 12px;text-align:center;min-height:88px;display:flex;flex-direction:column;align-items:center;justify-content:center}.nsfvocespba-scope .nsfvocespba-market-title{text-transform:uppercase;font-size:15px;line-height:1.1;color:#333;font-weight:500;white-space:nowrap}.nsfvocespba-scope .nsfvocespba-market-value{font-size:32px;line-height:1.05;font-weight:900;color:#202124;letter-spacing:-.8px;margin-top:4px}.nsfvocespba-scope .nsfvocespba-market-meta{display:flex;align-items:center;justify-content:center;gap:6px;color:#666;font-size:13px;margin-top:3px;white-space:nowrap}.nsfvocespba-scope .nsfvocespba-market-meta strong{font-weight:800}.nsfvocespba-scope .nsfvocespba-market-meta.is-down .nsfvocespba-market-arrow{color:#000}.nsfvocespba-scope .nsfvocespba-market-meta.is-up .nsfvocespba-market-arrow{color:#179b55}.nsfvocespba-scope .nsfvocespba-market-meta.is-flat .nsfvocespba-market-arrow{font-weight:900}.nsfvocespba-scope .nsfvocespba-market-source{position:relative;text-align:center;color:#555;font-size:14px;margin-top:10px;line-height:1}.nsfvocespba-scope .nsfvocespba-market-source:before,.nsfvocespba-scope .nsfvocespba-market-source:after{content:"";display:inline-block;width:28%;height:1px;background:#cfcfcf;vertical-align:middle;margin:0 12px}.nsfvocespba-scope .nsfvocespba-market-source span{display:inline-block;background:#fff;padding:0 4px}.nsfvocespba-scope .nsfvocespba-latest-box{position:relative;background:#fff;border:1px solid #d6d6d6;border-radius:8px;padding:26px 26px 20px;overflow:hidden}.nsfvocespba-scope .nsfvocespba-latest-box:after{content:"";display:block;width:68%;height:3px;background:#d6202b;margin:20px 0 14px;position:absolute;top:105px;left:26px}.nsfvocespba-scope .nsfvocespba-latest-head{display:flex;align-items:center;gap:18px;font-size:30px;line-height:1;margin-bottom:46px}.nsfvocespba-scope .nsfvocespba-latest-head strong{font-weight:900}.nsfvocespba-scope .nsfvocespba-latest-head span{width:2px;height:34px;background:#222}.nsfvocespba-scope .nsfvocespba-latest-head em{font-style:normal;font-weight:400}.nsfvocespba-scope .nsfvocespba-latest-item{display:grid;grid-template-columns:1fr;gap:12px;padding:16px 0;border-top:1px solid #d6d6d6}.nsfvocespba-scope .nsfvocespba-latest-item:first-child{border-top:0;padding-top:0}.nsfvocespba-scope .nsfvocespba-latest-item.has-thumb{grid-template-columns:1fr 160px;align-items:center}.nsfvocespba-scope .nsfvocespba-latest-item-title{font-size:23px;line-height:1.24;font-weight:900;color:#202124;display:block}.nsfvocespba-scope .nsfvocespba-latest-item-title:hover{color:#d6202b}.nsfvocespba-scope .nsfvocespba-latest-thumb{display:block;border-radius:8px;overflow:hidden}.nsfvocespba-scope .nsfvocespba-latest-thumb img,.nsfvocespba-scope .nsfvocespba-latest-thumb .card-img{width:100%;height:100%;aspect-ratio:1.45/1;object-fit:cover;border-radius:8px}.nsfvocespba-scope .nsfvocespba-news-row-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px;border-bottom:1px solid #d8d8d8}.nsfvocespba-scope .nsfvocespba-news-row-card{padding-bottom:16px;border-bottom:1px solid #d8d8d8}.nsfvocespba-scope .nsfvocespba-news-row-title{font-size:25px;line-height:1.14;font-weight:900;margin:0 0 16px;color:#202124}.nsfvocespba-scope .nsfvocespba-news-row-title a:hover{color:#d6202b}.nsfvocespba-scope .nsfvocespba-news-row-author{font-size:14px;color:#555;margin:0 0 12px;line-height:1.35}.nsfvocespba-scope .nsfvocespba-news-row-author strong{font-size:13px;color:#333;letter-spacing:.03em}.nsfvocespba-scope .nsfvocespba-opinion-dot{display:inline-block;width:42px;height:42px;border:3px solid #d6202b;border-radius:50%;vertical-align:middle;margin-right:8px;background:linear-gradient(135deg,#eee,#bbb)}.nsfvocespba-scope .nsfvocespba-news-row-img{display:block}.nsfvocespba-scope .nsfvocespba-news-row-img img,.nsfvocespba-scope .nsfvocespba-news-row-img .card-img{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:3px}.nsfvocespba-scope .nsfvocespba-feature-split{display:flex;border-top:2px solid #9f9f9f;border-bottom:2px solid #9f9f9f;padding:26px 0;color:#202124}.nsfvocespba-scope .nsfvocespba-feature-media{flex:0 0 60%;overflow:hidden}.nsfvocespba-scope .nsfvocespba-feature-media img,.nsfvocespba-scope .nsfvocespba-feature-media .card-img{width:100%;height:100%;min-height:310px;object-fit:cover}.nsfvocespba-scope .nsfvocespba-feature-copy{flex:1;background:#f4f4f4;display:flex;flex-direction:column;justify-content:center;text-align:center;padding:44px 36px;border-radius:0 8px 8px 0}.nsfvocespba-scope .nsfvocespba-feature-title{font-size:32px;line-height:1.14;font-weight:900;margin:0 0 24px;color:#202124}.nsfvocespba-scope .nsfvocespba-feature-text{font-size:20px;line-height:1.45;color:#444;margin:0}.nsfvocespba-scope .nsfvocespba-feature-split:hover .nsfvocespba-feature-title{color:#d6202b}
@media(max-width:1024px){.nsfvocespba-scope .nsfvocespba-market-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.nsfvocespba-scope .nsfvocespba-feature-title{font-size:26px}.nsfvocespba-scope .nsfvocespba-feature-text{font-size:17px}.nsfvocespba-scope .nsfvocespba-news-row-title{font-size:21px}.nsfvocespba-scope .nsfvocespba-latest-item.has-thumb{grid-template-columns:1fr 120px}}
@media(max-width:767px){.nsfvocespba-scope .nsfvocespba-market-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.nsfvocespba-scope .nsfvocespba-market-title{font-size:12px}.nsfvocespba-scope .nsfvocespba-market-value{font-size:26px}.nsfvocespba-scope .nsfvocespba-market-meta{font-size:11px;gap:4px}.nsfvocespba-scope .nsfvocespba-market-source:before,.nsfvocespba-scope .nsfvocespba-market-source:after{width:12%;margin:0 6px}.nsfvocespba-scope .nsfvocespba-latest-box{padding:22px 18px}.nsfvocespba-scope .nsfvocespba-latest-box:after{left:18px;top:90px}.nsfvocespba-scope .nsfvocespba-latest-head{font-size:24px;gap:12px;margin-bottom:38px}.nsfvocespba-scope .nsfvocespba-latest-head span{height:28px}.nsfvocespba-scope .nsfvocespba-latest-item-title{font-size:19px}.nsfvocespba-scope .nsfvocespba-latest-item.has-thumb{grid-template-columns:1fr 92px}.nsfvocespba-scope .nsfvocespba-news-row-grid{grid-template-columns:1fr;gap:20px}.nsfvocespba-scope .nsfvocespba-news-row-title{font-size:22px;margin-bottom:10px}.nsfvocespba-scope .nsfvocespba-feature-split{display:block;padding:18px 0}.nsfvocespba-scope .nsfvocespba-feature-media img,.nsfvocespba-scope .nsfvocespba-feature-media .card-img{min-height:220px}.nsfvocespba-scope .nsfvocespba-feature-copy{border-radius:0 0 8px 8px;padding:28px 20px}.nsfvocespba-scope .nsfvocespba-feature-title{font-size:24px}.nsfvocespba-scope .nsfvocespba-feature-text{font-size:16px}}

/* Voces de PBA Ads Widgets v1.5 */
.nsfvocespba-scope .nsfvocespba-ad-wrap{
  width:100%;
  text-align:center;
  margin:24px 0;
  padding:14px 0;
  background:var(--c-bg-alt,#f6f6f6);
  border-top:1px solid var(--c-line,#e6e6e6);
  border-bottom:1px solid var(--c-line,#e6e6e6);
}
.nsfvocespba-scope .nsfvocespba-ad-label{
  display:block;
  font-size:10px;
  letter-spacing:1.5px;
  color:var(--c-meta,#8a8e9c);
  margin-bottom:10px;
  font-weight:600;
  text-transform:uppercase;
}
.nsfvocespba-scope .nsfvocespba-ad-box{
  margin:0 auto;
  background:repeating-linear-gradient(135deg,#ececec 0 14px,#f4f4f4 14px 28px);
  border:1px solid var(--c-line,#e6e6e6);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#aaa;
  font-size:12px;
  letter-spacing:1.5px;
  font-weight:700;
  overflow:hidden;
}
.nsfvocespba-scope .nsfvocespba-ad-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.nsfvocespba-scope.nsfvocespba-ad-mobile-banner .nsfvocespba-ad-box{height:100px;max-width:320px;}
.nsfvocespba-scope.nsfvocespba-ad-leaderboard .nsfvocespba-ad-box{height:90px;max-width:728px;}
.nsfvocespba-scope.nsfvocespba-ad-billboard .nsfvocespba-ad-box{height:250px;max-width:970px;}
.nsfvocespba-scope.nsfvocespba-ad-rectangle .nsfvocespba-ad-box{height:250px;max-width:300px;}
.nsfvocespba-scope.nsfvocespba-ad-half-page .nsfvocespba-ad-box{height:600px;max-width:300px;}
.nsfvocespba-scope.nsfvocespba-ad-footer-wide .nsfvocespba-ad-box{height:120px;max-width:970px;}
.nsfvocespba-scope.nsfvocespba-ad-fluid .nsfvocespba-ad-box{min-height:120px;width:100%;max-width:100%;}
.elementor-widget-nsfvocespba_sidebar_ad .nsfvocespba-ad-wrap{margin:0 0 24px;padding:12px;background:#fff;border:1px solid var(--c-line,#e6e6e6);border-radius:6px;}
.elementor-widget-nsfvocespba_middle_ad .nsfvocespba-ad-wrap{margin:32px 0;}
.elementor-widget-nsfvocespba_footer_ad .nsfvocespba-ad-wrap{margin:0;padding:22px 0;background:#fff;border-top:1px solid var(--c-line,#e6e6e6);border-bottom:1px solid var(--c-line,#e6e6e6);}
@media(max-width:767px){
  .nsfvocespba-scope.nsfvocespba-ad-hide-mobile{display:none!important;}
  .nsfvocespba-scope.nsfvocespba-ad-billboard .nsfvocespba-ad-box,
  .nsfvocespba-scope.nsfvocespba-ad-footer-wide .nsfvocespba-ad-box,
  .nsfvocespba-scope.nsfvocespba-ad-leaderboard .nsfvocespba-ad-box{height:100px;max-width:320px;}
  .nsfvocespba-scope.nsfvocespba-ad-half-page .nsfvocespba-ad-box{height:250px;max-width:300px;}
}

/* Voces de PBA v1.6 fixes: header canvas, Ivory Search modal and extended ad formats */
body.nsfvocespba-drawer-open,
body.nsfvocespba-search-open{overflow:hidden!important;}
.nsfvocespba-scope.nsfvocespba-header-widget .drawer-backdrop{z-index:999998;}
.nsfvocespba-scope.nsfvocespba-header-widget .drawer{z-index:999999;}
.nsfvocespba-scope.nsfvocespba-header-widget .drawer-nav .menu{display:block;}
.nsfvocespba-scope.nsfvocespba-header-widget .drawer-nav .menu-item-has-children>a::after{content:"";width:10px;height:10px;border-right:2px solid var(--c-text);border-bottom:2px solid var(--c-text);transform:rotate(-45deg);margin-left:8px;}
.nsfvocespba-scope .drawer-search-input button.ds-icon{border:0;background:transparent;padding:0;display:inline-flex;align-items:center;justify-content:center;}
.nsfvocespba-scope .nsfvocespba-search-modal{position:fixed;inset:0;z-index:1000000;display:none;align-items:flex-start;justify-content:center;padding:90px 18px 18px;}
.nsfvocespba-scope .nsfvocespba-search-modal.is-open{display:flex;}
.nsfvocespba-scope .nsfvocespba-search-modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.58);}
.nsfvocespba-scope .nsfvocespba-search-modal__panel{position:relative;width:min(760px,100%);background:#fff;border-radius:18px;padding:28px 24px 24px;box-shadow:0 22px 80px rgba(0,0,0,.32);}
.nsfvocespba-scope .nsfvocespba-search-modal__close{position:absolute;top:10px;right:12px;width:36px;height:36px;border:1px solid var(--c-line,#e6e6e6);border-radius:50%;font-size:24px;line-height:1;background:#fff;color:var(--c-text,#1a1a1a);display:flex;align-items:center;justify-content:center;}
.nsfvocespba-scope .nsfvocespba-search-modal__close:hover{background:var(--c-bg-alt,#f6f6f6);}
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-form,
.nsfvocespba-scope .nsfvocespba-search-modal form{width:100%;}
.nsfvocespba-scope .nsfvocespba-search-modal input[type="search"],
.nsfvocespba-scope .nsfvocespba-search-modal input[type="text"],
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-input{width:100%!important;min-height:54px;border:1px solid var(--c-line,#e6e6e6)!important;border-radius:28px!important;padding:0 22px!important;font-size:18px!important;box-shadow:none!important;}
.nsfvocespba-scope.nsfvocespba-ad-super-wide .nsfvocespba-ad-box{height:280px;max-width:1200px;}
.nsfvocespba-scope.nsfvocespba-ad-mega-wide .nsfvocespba-ad-box{height:180px;max-width:1140px;}
.nsfvocespba-scope.nsfvocespba-ad-square .nsfvocespba-ad-box{height:300px;max-width:300px;}
.nsfvocespba-scope.nsfvocespba-ad-mobile-square .nsfvocespba-ad-box{height:280px;max-width:336px;}
@media(max-width:767px){
  .nsfvocespba-scope .nsfvocespba-search-modal{padding-top:72px;}
  .nsfvocespba-scope .nsfvocespba-search-modal__panel{border-radius:14px;padding:24px 16px 18px;}
  .nsfvocespba-scope.nsfvocespba-ad-super-wide .nsfvocespba-ad-box,
  .nsfvocespba-scope.nsfvocespba-ad-mega-wide .nsfvocespba-ad-box{height:100px;max-width:360px;}
  .nsfvocespba-scope.nsfvocespba-ad-square .nsfvocespba-ad-box,
  .nsfvocespba-scope.nsfvocespba-ad-mobile-square .nsfvocespba-ad-box{height:280px;max-width:336px;}
  .elementor-widget-nsfvocespba_sidebar_ad .nsfvocespba-ad-wrap{padding:10px 0;border-left:0;border-right:0;border-radius:0;}
}


/* Voces de PBA v1.7: buscador Ivory estilo editorial + resultados AJAX */
.nsfvocespba-scope .nsfvocespba-search-modal{padding:84px 18px 18px;align-items:flex-start;}
.nsfvocespba-scope .nsfvocespba-search-modal__backdrop{background:rgba(0,0,0,.62);backdrop-filter:blur(1px);}
.nsfvocespba-scope .nsfvocespba-search-modal__panel{width:min(980px,calc(100vw - 36px));background:#fff;border-radius:24px;padding:42px 70px 34px 34px;box-shadow:0 26px 90px rgba(0,0,0,.30);}
.nsfvocespba-scope .nsfvocespba-search-modal__close{top:18px;right:18px;width:46px;height:46px;border:1px solid #dedede;border-radius:50%;font-size:34px;font-weight:300;background:#fff;color:#1a1a1a;z-index:5;}
.nsfvocespba-scope .nsfvocespba-search-modal__close:hover{background:#f7f7f7;color:var(--c-red,#d6202b);}
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-form,
.nsfvocespba-scope .nsfvocespba-search-modal form.search-form,
.nsfvocespba-scope .nsfvocespba-search-modal form{position:relative;width:100%;display:block!important;margin:0!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-form-style,
.nsfvocespba-scope .nsfvocespba-search-modal .is-form-style.is-form-style-3,
.nsfvocespba-scope .nsfvocespba-search-modal .is-form-style.is-form-style-2{display:block!important;width:100%!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-form label,
.nsfvocespba-scope .nsfvocespba-search-modal .search-form label{display:block!important;width:100%!important;}
.nsfvocespba-scope .nsfvocespba-search-modal input[type="search"],
.nsfvocespba-scope .nsfvocespba-search-modal input[type="text"],
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-input{width:100%!important;height:72px!important;min-height:72px!important;border:3px solid var(--c-red,#d6202b)!important;border-radius:999px!important;padding:0 72px 0 28px!important;font-size:22px!important;line-height:1!important;color:#1a1a1a!important;background:#fff!important;box-shadow:0 0 0 4px rgba(238,108,26,.08)!important;outline:none!important;}
.nsfvocespba-scope .nsfvocespba-search-modal input[type="search"]::placeholder,
.nsfvocespba-scope .nsfvocespba-search-modal input[type="text"]::placeholder,
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-input::placeholder{color:#8a8e9c!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-submit,
.nsfvocespba-scope .nsfvocespba-search-modal button[type="submit"],
.nsfvocespba-scope .nsfvocespba-search-modal input[type="submit"],
.nsfvocespba-scope .nsfvocespba-search-modal .search-submit{position:absolute!important;right:10px!important;top:50%!important;transform:translateY(-50%)!important;width:52px!important;height:52px!important;border:0!important;border-radius:50%!important;background:var(--c-red,#d6202b)!important;color:#fff!important;font-size:0!important;overflow:hidden!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:0!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-submit:before,
.nsfvocespba-scope .nsfvocespba-search-modal button[type="submit"]:before,
.nsfvocespba-scope .nsfvocespba-search-modal input[type="submit"]:before,
.nsfvocespba-scope .nsfvocespba-search-modal .search-submit:before{content:"";width:18px;height:18px;border:3px solid #fff;border-radius:50%;display:block;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-submit:after,
.nsfvocespba-scope .nsfvocespba-search-modal button[type="submit"]:after,
.nsfvocespba-scope .nsfvocespba-search-modal input[type="submit"]:after,
.nsfvocespba-scope .nsfvocespba-search-modal .search-submit:after{content:"";width:11px;height:3px;background:#fff;display:block;position:absolute;right:13px;bottom:15px;transform:rotate(45deg);border-radius:2px;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-icon{display:none!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-ajax-search-details,
.nsfvocespba-scope .nsfvocespba-search-modal .is-ajax-search-result,
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-sections,
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-results,
.nsfvocespba-scope .nsfvocespba-search-modal .ivory-ajax-search-results{margin-top:18px!important;border:1px solid #e6e6e6!important;border-radius:18px!important;box-shadow:0 12px 34px rgba(0,0,0,.10)!important;overflow:hidden!important;background:#fff!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-ajax-search-post,
.nsfvocespba-scope .nsfvocespba-search-modal .is-ajax-search-post-details,
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-result{padding:14px 18px!important;border-bottom:1px solid #f0f0f0!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-ajax-search-post:last-child,
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-result:last-child{border-bottom:0!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-title,
.nsfvocespba-scope .nsfvocespba-search-modal .is-title a,
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-title,
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-title a{font-size:16px!important;font-weight:800!important;color:#1a1a1a!important;line-height:1.25!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-title a:hover,
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-title a:hover{color:var(--c-red,#d6202b)!important;}
.nsfvocespba-scope .nsfvocespba-search-modal .is-search-excerpt,
.nsfvocespba-scope .nsfvocespba-search-modal .is-ajax-search-post-excerpt{font-size:13px!important;color:#565a6c!important;margin-top:4px!important;}
/* Ivory a veces inyecta los resultados al body, fuera del modal */
.is-ajax-search-result,
.is-ajax-search-details,
.is-search-results{z-index:1000002!important;}
@media(max-width:767px){
  .nsfvocespba-scope .nsfvocespba-search-modal{padding:72px 12px 12px;}
  .nsfvocespba-scope .nsfvocespba-search-modal__panel{width:calc(100vw - 24px);border-radius:22px;padding:34px 18px 22px;}
  .nsfvocespba-scope .nsfvocespba-search-modal__close{width:42px;height:42px;top:12px;right:12px;font-size:30px;}
  .nsfvocespba-scope .nsfvocespba-search-modal input[type="search"],
  .nsfvocespba-scope .nsfvocespba-search-modal input[type="text"],
  .nsfvocespba-scope .nsfvocespba-search-modal .is-search-input{height:60px!important;min-height:60px!important;font-size:18px!important;padding-left:22px!important;padding-right:62px!important;}
  .nsfvocespba-scope .nsfvocespba-search-modal .is-search-submit,
  .nsfvocespba-scope .nsfvocespba-search-modal button[type="submit"],
  .nsfvocespba-scope .nsfvocespba-search-modal input[type="submit"],
  .nsfvocespba-scope .nsfvocespba-search-modal .search-submit{width:44px!important;height:44px!important;right:8px!important;}
}

/* Voces de PBA Category Navigation widget */
.nsfvocespba-scope .nsfvocespba-cat-nav-widget,
.nsfvocespba-scope.nsfvocespba-cat-nav-widget {
  width: 100%;
}
.nsfvocespba-scope .nsfvocespba-cat-nav-title {
  margin: 0 0 12px;
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-text);
}
.nsfvocespba-scope .nsfvocespba-cat-nav-list {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.nsfvocespba-scope .nsfvocespba-cat-nav-list.is-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.nsfvocespba-scope .nsfvocespba-cat-nav-list.is-scroll::-webkit-scrollbar { display: none; }
.nsfvocespba-scope .nsfvocespba-cat-nav-list.is-wrap { flex-wrap: wrap; }
.nsfvocespba-scope .nsfvocespba-cat-nav-list.is-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.nsfvocespba-scope .nsfvocespba-cat-nav-list.is-vertical {
  flex-direction: column;
}
.nsfvocespba-scope .nsfvocespba-cat-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  background: #fff;
  color: var(--c-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.nsfvocespba-scope .nsfvocespba-cat-nav-list.is-grid .nsfvocespba-cat-nav-item,
.nsfvocespba-scope .nsfvocespba-cat-nav-list.is-vertical .nsfvocespba-cat-nav-item {
  justify-content: flex-start;
  white-space: normal;
  flex-wrap: wrap;
}
.nsfvocespba-scope .nsfvocespba-cat-nav-item:hover {
  border-color: var(--c-text);
  background: var(--c-bg-alt);
}
.nsfvocespba-scope .nsfvocespba-cat-nav-item.is-active {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.nsfvocespba-scope .nsfvocespba-cat-count {
  font-size: .85em;
  opacity: .75;
}
.nsfvocespba-scope .nsfvocespba-cat-desc {
  display: block;
  flex-basis: 100%;
  margin-top: 4px;
  color: var(--c-text-soft);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}
.nsfvocespba-scope .nsfvocespba-cat-nav-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--c-line);
  border-radius: 22px;
  background: #fff;
  color: var(--c-text);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
}
.nsfvocespba-scope .nsfvocespba-empty-message {
  margin: 10px 0 0;
  color: var(--c-meta);
  font-size: 13px;
}
@media (max-width: 767px) {
  .nsfvocespba-scope .nsfvocespba-cat-nav-list.is-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   v1.9 - Bloque de noticias dinámico + mejoras archive/images
   ============================================================ */
.nsfvocespba-scope .nsfvocespba-dynamic-section-title{
  font-size:22px;font-weight:800;text-transform:uppercase;letter-spacing:-.2px;color:var(--c-text);margin:0 0 16px;padding-bottom:8px;border-bottom:2px solid var(--c-text);position:relative;
}
.nsfvocespba-scope .nsfvocespba-dynamic-section-title::after{content:"";position:absolute;left:0;bottom:-2px;width:120px;height:2px;background:var(--c-red)}
.nsfvocespba-scope .nsfvocespba-dynamic-grid{display:grid;grid-template-columns:minmax(0,66%) minmax(0,1fr);align-items:start;gap:24px;margin:24px 0;}
.nsfvocespba-scope .nsfvocespba-dynamic-big-right{grid-template-columns:minmax(0,1fr) minmax(0,66%)}
.nsfvocespba-scope .nsfvocespba-dynamic-side{display:grid;gap:18px;}
.nsfvocespba-scope .nsfvocespba-dynamic-card{position:relative;min-width:0;overflow:hidden;background:#fff;}
.nsfvocespba-scope .nsfvocespba-dynamic-img{display:block;position:relative;overflow:hidden;width:100%;aspect-ratio:16/9;background:#eee;}
.nsfvocespba-scope .nsfvocespba-dynamic-img img,.nsfvocespba-scope .nsfvocespba-archive-img img,.nsfvocespba-scope .hero-img-real,.nsfvocespba-scope .card-img-real,.nsfvocespba-scope .cat-item img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder{display:block;width:100%;height:100%;}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s1{background:linear-gradient(135deg,#b8c01b,#5a6e10)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s2{background:linear-gradient(135deg,#2c3e50,#4ca1af)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s3{background:linear-gradient(135deg,#614385,#516395)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s4{background:linear-gradient(135deg,#ee9ca7,#ffdde1)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s5{background:linear-gradient(135deg,#134e5e,#71b280)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s6{background:linear-gradient(135deg,#b79891,#94716b)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s7{background:linear-gradient(135deg,#283c86,#45a247)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s8{background:linear-gradient(135deg,#8e2de2,#4a00e0)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s9{background:linear-gradient(135deg,#c31432,#240b36)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s10{background:linear-gradient(135deg,#ff512f,#f09819)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s11{background:linear-gradient(135deg,#1f4037,#99f2c8)}
.nsfvocespba-scope .nsfvocespba-dynamic-placeholder.s12{background:linear-gradient(135deg,#16222a,#3a6073)}
.nsfvocespba-scope .nsfvocespba-dynamic-content{padding:12px 0 0;}
.nsfvocespba-scope .nsfvocespba-dynamic-title{font-weight:800;line-height:1.12;color:var(--c-text);margin:0;}
.nsfvocespba-scope .nsfvocespba-dynamic-main .nsfvocespba-dynamic-title{font-size:clamp(28px,4vw,56px);letter-spacing:-.04em;}
.nsfvocespba-scope .nsfvocespba-dynamic-side .nsfvocespba-dynamic-title{font-size:clamp(18px,2vw,28px);letter-spacing:-.025em;}
.nsfvocespba-scope .nsfvocespba-dynamic-title a{color:inherit;}
.nsfvocespba-scope .nsfvocespba-dynamic-title a:hover{color:var(--c-red);}
.nsfvocespba-scope .nsfvocespba-dynamic-excerpt{font-size:18px;line-height:1.45;color:var(--c-text-soft);margin-top:12px;}
.nsfvocespba-scope .nsfvocespba-dynamic-meta{font-size:13px;color:var(--c-meta);margin-top:10px;}
.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-img::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0) 30%,rgba(0,0,0,.62) 100%);z-index:1;pointer-events:none;}
.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-content{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:24px;color:#fff;}
.nsfvocespba-scope .nsfvocespba-dynamic-side-card.nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-content{padding:16px;}
.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-title,.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-title a,.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-excerpt,.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-meta{color:#fff;}
.nsfvocespba-scope .nsfvocespba-dynamic-overlay{min-height:1px;}
.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-img{margin:0;}

.nsfvocespba-scope .cat-list{display:grid;gap:18px;}
.nsfvocespba-scope .cat-list.layout-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
.nsfvocespba-scope .cat-list.layout-grid .cat-item{display:block;}
.nsfvocespba-scope .cat-list.layout-grid .nsfvocespba-archive-img{margin-top:12px;}
.nsfvocespba-scope .cat-list.layout-compact .cat-item{display:block;}
.nsfvocespba-scope .cat-list.layout-compact .nsfvocespba-archive-img{display:none;}
.nsfvocespba-scope .cat-item{display:grid;grid-template-columns:minmax(0,1fr) 220px;gap:18px;align-items:center;padding:18px 0;border-bottom:1px solid var(--c-line);}
.nsfvocespba-scope .cat-item.is-featured-archive{display:grid;grid-template-columns:minmax(0,1fr);gap:16px;border-bottom:2px solid var(--c-line);padding-bottom:24px;}
.nsfvocespba-scope .cat-item.is-featured-archive .card-title{font-size:clamp(30px,4.5vw,58px);letter-spacing:-.04em;line-height:1.08;}
.nsfvocespba-scope .cat-item.is-featured-archive .nsfvocespba-archive-img{order:2;aspect-ratio:16/9;}
.nsfvocespba-scope .nsfvocespba-archive-img{display:block;position:relative;overflow:hidden;width:100%;aspect-ratio:1/1;background:#eee;}
.nsfvocespba-scope .nsfvocespba-archive-excerpt{margin-top:10px;}
.nsfvocespba-scope .card-byline:empty{display:none!important;}

@media (max-width: 767px){
  .nsfvocespba-scope .nsfvocespba-dynamic-grid,.nsfvocespba-scope .nsfvocespba-dynamic-big-right{grid-template-columns:1fr;}
  .nsfvocespba-scope .nsfvocespba-dynamic-side{grid-template-columns:1fr;}
  .nsfvocespba-scope .nsfvocespba-dynamic-content,.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-content{padding:14px;}
  .nsfvocespba-scope .cat-item{grid-template-columns:minmax(0,1fr) 120px!important;gap:14px;}
  .nsfvocespba-scope .cat-list.layout-grid{grid-template-columns:1fr!important;}
  .nsfvocespba-scope .cat-item.is-featured-archive{grid-template-columns:1fr!important;}
  .nsfvocespba-scope .cat-item.is-featured-archive .card-title{font-size:30px;}
}

/* v1.9.1 refinements */
.nsfvocespba-scope .nsfvocespba-feature-split.is-reversed{flex-direction:row-reverse;}
.nsfvocespba-scope.nsfvocespba-grid-news .card>a:first-child{display:block;aspect-ratio:var(--nsfvocespba-grid-ratio,1/1);overflow:hidden;background:#f3f3f3;}
.nsfvocespba-scope.nsfvocespba-grid-news .card>a:first-child img,
.nsfvocespba-scope.nsfvocespba-grid-news .card>a:first-child .card-img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;}
.nsfvocespba-scope.nsfvocespba-grid-news .card-title{margin-top:8px;}
.nsfvocespba-scope.nsfvocespba-grid-news .dual-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px;}
.nsfvocespba-scope .nsfvocespba-live-main-link{display:flex;align-items:center;gap:10px;min-width:0;flex:1;color:inherit;text-decoration:none;}
.nsfvocespba-scope .live-bar-inner>a:first-child{flex-shrink:0;text-decoration:none;}
@media(max-width:767px){
  .nsfvocespba-scope .nsfvocespba-feature-split.is-reversed{flex-direction:column;}
  .nsfvocespba-scope.nsfvocespba-grid-news .dual-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

/* Footer profesional editable */
.nsfvocespba-scope .nsfvocespba-footer-pro{
  border-top-style: solid;
  margin-top: 0;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .nsfvocespba-footer-main{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:48px;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand{
  text-align:inherit;
  margin:0;
  padding:0;
  border:0;
  flex:0 0 240px;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand .brand-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  font-weight:800;
  text-decoration:none;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand .brand-logo img{
  display:block;
  max-width:220px;
  height:auto;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand p{
  max-width:280px;
  margin:18px 0 0;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-socials{
  justify-content:inherit;
  flex-wrap:wrap;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-socials a{
  text-decoration:none;
  line-height:1;
  font-weight:700;
  text-transform:lowercase;
  background:transparent;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-cols{
  flex:1;
  display:grid;
  margin:0;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col h5{
  margin-top:0;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col ul{
  padding:0;
  margin:0;
  list-style:none;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col a{
  text-decoration:none;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom{
  margin-top:42px;
  border-top:1px solid;
  padding-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom p{
  margin:0;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom ul{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
  margin:0;
  padding:0;
  list-style:none;
}

@media (max-width: 767px){
  .nsfvocespba-scope .nsfvocespba-footer-pro .nsfvocespba-footer-main{
    flex-direction:column;
    gap:30px;
  }
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand{
    flex-basis:auto !important;
    width:100%;
  }
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-cols{
    width:100%;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:24px !important;
  }
}
@media (max-width: 480px){
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-cols{
    grid-template-columns:1fr !important;
  }
}


/* ============================================================
   "CLARÍN NEWS" — Portal de noticias estilo popular argentino.
   Maqueta editorial inspirada en patrones visuales de medios
   populares (tipo Crónica): logo script cursivo, banda roja
   de categoría, kickers en rojo, cards con foto cuadrada.
   Marca, autores, textos e imágenes son ficticios.
   ============================================================ */
/* ============================================================
   1. RESET
   ============================================================ */
.nsfvocespba-scope *, .nsfvocespba-scope *::before, .nsfvocespba-scope *::after {box-sizing: border-box; margin: 0; padding: 0;}
.nsfvocespba-scope {-webkit-text-size-adjust: 100%; scroll-behavior: smooth;}
.nsfvocespba-scope {font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.45;
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;}
.nsfvocespba-scope img, .nsfvocespba-scope svg, .nsfvocespba-scope picture, .nsfvocespba-scope video {display: block; max-width: 100%;}
.nsfvocespba-scope a {color: inherit; text-decoration: none;}
.nsfvocespba-scope button {font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0;}
.nsfvocespba-scope ul, .nsfvocespba-scope ol {list-style: none;}
.nsfvocespba-scope input {font: inherit; color: inherit;}
/* ============================================================
   2. VARIABLES
   ============================================================ */
.nsfvocespba-scope {/* Paleta editorial popular: rojo dominante */
  --c-red:        #d6202b;
  --c-red-dark:   #a31820;
  --c-red-darker: #7a1217;
  --c-red-live:   #d6202b;
  --c-text:       #1a1a1a;
  --c-text-soft:  #555;
  --c-meta:       #999;
  --c-line:       #e6e6e6;
  --c-line-soft:  #f0f0f0;
  --c-bg-alt:     #f6f6f6;
  --c-bg-dark:    #1a1a1a;
  --c-bg-darker:  #0a0a0a;
  --c-yellow:     #fce300;

  /* Tipografía sans-serif compacta tipo Helvetica condensed */
  --f-sans: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;
  /* Cursiva para el wordmark — fallbacks nativos */
  --f-script: "Brush Script MT", "Lucida Handwriting", "Apple Chancery", "Snell Roundhand", cursive;

  /* Layout */
  --w-max: 1280px;
  --header-h: 60px;

  /* Transiciones */
  --t-fast: 150ms ease;}
/* ============================================================
   3. CONTENEDOR
   ============================================================ */
.nsfvocespba-scope .container {width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 16px;}
@media (min-width: 1024px){.nsfvocespba-scope .container {padding: 0 24px;}}
/* ============================================================
   4. VIEW SWITCHER (maqueta)
   ============================================================ */
.nsfvocespba-scope .view-switcher {position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 9000;
  background: var(--c-bg-darker);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  padding: 4px;
  display: flex;
  gap: 2px;}
.nsfvocespba-scope .view-switcher button {padding: 7px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #aaa;
  border-radius: 20px;
  transition: all var(--t-fast);}
.nsfvocespba-scope .view-switcher button:hover {color: #fff;}
.nsfvocespba-scope .view-switcher button.is-active {background: var(--c-red);
  color: #fff;}
/* ============================================================
   5. BANNER PUBLICIDAD ARRIBA
   ============================================================ */
.nsfvocespba-scope .top-ad {background: #f0f0f0;
  text-align: center;
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;}
.nsfvocespba-scope .top-ad::before {content: "PUBLICIDAD";
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--c-meta);
  margin-bottom: 10px;
  font-weight: 600;}
.nsfvocespba-scope .top-ad-box {margin: 0 auto;
  width: 100%;
  max-width: 728px;
  height: 90px;
  background:
    repeating-linear-gradient(135deg, #e2e2e2 0 14px, #ebebeb 14px 28px);
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;}
/* ============================================================
   6. HEADER PRINCIPAL
   ============================================================ */
.nsfvocespba-scope .site-header {background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--c-line);}
.nsfvocespba-scope .site-header-inner {display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
  gap: 12px;}
/* Botones izquierda (hamburguesa, lupa, campana) */
.nsfvocespba-scope .header-icons {display: flex;
  align-items: center;
  gap: 4px;}
.nsfvocespba-scope .header-icon-btn {width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  color: var(--c-text);
  transition: all var(--t-fast);
  background: #fff;}
.nsfvocespba-scope .header-icon-btn:hover {background: var(--c-bg-alt);
  border-color: var(--c-text);}
.nsfvocespba-scope .header-icon-btn svg {width: 18px; height: 18px; fill: currentColor;}
.nsfvocespba-scope .header-icon-btn.is-burger {border-radius: 6px;}
/* Logo wordmark cursivo rojo */
.nsfvocespba-scope .brand {text-align: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;}
.nsfvocespba-scope .brand-logo {font-family: var(--f-script);
  font-weight: 700;
  font-style: italic;
  font-size: 42px;
  color: var(--c-red);
  letter-spacing: -1px;
  line-height: .85;
  text-transform: lowercase;
  /* Sombra muy sutil para darle un poco de cuerpo */
  text-shadow: 0 1px 0 rgba(0,0,0,.05);}
.nsfvocespba-scope .brand-slogan {font-family: var(--f-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--c-text);
  background: var(--c-text);
  color: #fff;
  padding: 2px 8px;
  display: none; /* Sólo aparece en single post */}
/* Lado derecho: EN VIVO + CLUB */
.nsfvocespba-scope .header-right {display: flex;
  align-items: center;
  gap: 10px;}
.nsfvocespba-scope .live-pill {display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 28px;
  padding: 0 12px;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--c-text);
  background: #fff;
  transition: background var(--t-fast);}
.nsfvocespba-scope .live-pill:hover {background: var(--c-bg-alt);}
.nsfvocespba-scope .live-pill .dot {width: 8px;
  height: 8px;
  background: var(--c-red-live);
  border-radius: 50%;
  animation: livepulse 1.4s ease-in-out infinite;}
@keyframes livepulse{
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}
.nsfvocespba-scope .club-pill {display: none; /* sólo desktop */
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 4px;}
.nsfvocespba-scope .club-pill .club-badge {background: var(--c-red);
  color: #fff;
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  padding: 2px 8px;
  line-height: 1;}
.nsfvocespba-scope .club-pill .club-text {font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--c-text);}
/* Fecha lateral (sólo desktop o single) */
.nsfvocespba-scope .header-date {display: none;
  font-size: 12px;
  color: var(--c-text-soft);}
/* ============================================================
   7. BARRA ROJA DE CATEGORÍA (firma visual)
   ============================================================ */
.nsfvocespba-scope .cat-bar {background: var(--c-red);
  color: #fff;}
.nsfvocespba-scope .cat-bar-inner {padding: 22px 0;}
.nsfvocespba-scope .cat-bar h1 {font-family: var(--f-sans);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -.5px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;}
@media (min-width: 768px){.nsfvocespba-scope .cat-bar h1 {font-size: 30px;}}
/* ============================================================
   8. CARDS DE PORTADA / CATEGORÍA
   ============================================================ */
.nsfvocespba-scope .posts-grid {display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 24px 0;}
@media (min-width: 600px){.nsfvocespba-scope .posts-grid {grid-template-columns: 1fr 1fr; gap: 24px;}}
@media (min-width: 900px){.nsfvocespba-scope .posts-grid {grid-template-columns: repeat(3, 1fr);}}
.nsfvocespba-scope .post-card {display: block;}
.nsfvocespba-scope .post-card-img {width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #ddd, #999);
  position: relative;}
.nsfvocespba-scope .post-card-img img {width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;}
.nsfvocespba-scope .post-card-img::after {content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,.3), transparent 60%);
  pointer-events: none;}
/* Paleta de gradientes para placeholders */
.nsfvocespba-scope .s1 {background: linear-gradient(135deg, #2a4858, #5b7c99);}
.nsfvocespba-scope .s2 {background: linear-gradient(135deg, #614385, #516395);}
.nsfvocespba-scope .s3 {background: linear-gradient(135deg, #1c3e5c, #2e6ea3);}
.nsfvocespba-scope .s4 {background: linear-gradient(135deg, #cc2b5e, #753a88);}
.nsfvocespba-scope .s5 {background: linear-gradient(135deg, #16222a, #3a6073);}
.nsfvocespba-scope .s6 {background: linear-gradient(135deg, #c31432, #240b36);}
.nsfvocespba-scope .s7 {background: linear-gradient(135deg, #283c86, #45a247);}
.nsfvocespba-scope .s8 {background: linear-gradient(135deg, #5a3e2b, #c4a777);}
.nsfvocespba-scope .s9 {background: linear-gradient(135deg, #232526, #414345);}
.nsfvocespba-scope .s10 {background: linear-gradient(135deg, #134e5e, #71b280);}
.nsfvocespba-scope .s11 {background: linear-gradient(135deg, #ff512f, #f09819);}
.nsfvocespba-scope .s12 {background: linear-gradient(135deg, #1f1c2c, #928dab);}
.nsfvocespba-scope .s13 {background: linear-gradient(135deg, #4b6cb7, #182848);}
.nsfvocespba-scope .s14 {background: linear-gradient(135deg, #7b4397, #dc2430);}
.nsfvocespba-scope .s15 {background: linear-gradient(135deg, #485563, #29323c);}
.nsfvocespba-scope .s16 {background: linear-gradient(135deg, #76b852, #8DC26F);}
.nsfvocespba-scope .s17 {background: linear-gradient(135deg, #355c7d, #6c5b7b);}
.nsfvocespba-scope .s18 {background: linear-gradient(135deg, #ff7e5f, #feb47b);}
.nsfvocespba-scope .post-card-body {padding-top: 12px;}
.nsfvocespba-scope .post-card-kicker {display: inline;
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: 14px;
  color: var(--c-red);
  text-transform: uppercase;
  letter-spacing: -.3px;
  margin-right: 6px;}
.nsfvocespba-scope .post-card-title {display: inline;
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.2;
  color: var(--c-text);
  letter-spacing: -.3px;}
.nsfvocespba-scope .post-card:hover .post-card-title {color: var(--c-red);}
.nsfvocespba-scope .post-card-date {display: block;
  font-size: 12px;
  color: var(--c-meta);
  margin-top: 10px;
  font-weight: 400;}
/* Card destacada (la primera, más grande) */
.nsfvocespba-scope .posts-grid > .post-card.feat {grid-column: 1 / -1;}
.nsfvocespba-scope .posts-grid > .post-card.feat .post-card-img {aspect-ratio: 16 / 10;}
.nsfvocespba-scope .posts-grid > .post-card.feat .post-card-kicker {font-size: 16px;}
.nsfvocespba-scope .posts-grid > .post-card.feat .post-card-title {font-size: 22px;}
@media (min-width: 600px){.nsfvocespba-scope .posts-grid > .post-card.feat .post-card-title {font-size: 26px;}}
/* ============================================================
   9. DRAWER MOBILE
   ============================================================ */
.nsfvocespba-scope .drawer-backdrop {position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;}
.nsfvocespba-scope .drawer-backdrop.is-open {opacity: 1; pointer-events: auto;}
.nsfvocespba-scope .drawer {position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 520px;
  background: #fff;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 280ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;}
.nsfvocespba-scope .drawer.is-open {transform: translateX(0);}
.nsfvocespba-scope .drawer-top {display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-line);}
.nsfvocespba-scope .drawer-close {display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  font-size: 13px;
  color: var(--c-text);
  background: #fff;}
.nsfvocespba-scope .drawer-close::before {content: "×";
  font-size: 18px;
  line-height: 1;}
.nsfvocespba-scope .drawer-close:hover {background: var(--c-bg-alt);}
.nsfvocespba-scope .drawer-logo {font-family: var(--f-script);
  font-style: italic;
  font-weight: 700;
  font-size: 38px;
  color: var(--c-red);
  text-align: center;
  line-height: 1;}
.nsfvocespba-scope .drawer-list {padding: 22px 24px 18px;}
.nsfvocespba-scope .drawer-list li {padding: 8px 0;
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  font-weight: 400;
  color: var(--c-text);}
.nsfvocespba-scope .drawer-list li::before {content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--c-red);
  border-radius: 50%;}
.nsfvocespba-scope .drawer-list li a {color: var(--c-text);
  transition: color var(--t-fast);}
.nsfvocespba-scope .drawer-list li a:hover {color: var(--c-red);}
.nsfvocespba-scope .drawer-live-cta {margin: 16px auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 28px;
  border: 1px solid var(--c-line);
  border-radius: 30px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--c-text);
  box-shadow: 0 2px 6px rgba(0,0,0,.05);}
.nsfvocespba-scope .drawer-live-cta .dot {width: 10px;
  height: 10px;
  background: var(--c-red-live);
  border-radius: 50%;
  animation: livepulse 1.4s ease-in-out infinite;}
.nsfvocespba-scope .drawer-search {padding: 0 24px 22px;}
.nsfvocespba-scope .drawer-search-input {position: relative;}
.nsfvocespba-scope .drawer-search-input input {width: 100%;
  height: 46px;
  padding: 0 18px 0 48px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);}
.nsfvocespba-scope .drawer-search-input input::placeholder {color: var(--c-meta);}
.nsfvocespba-scope .drawer-search-input svg {position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--c-text-soft);}
/* Grilla de "otros medios" del grupo (bloques de colores) */
.nsfvocespba-scope .drawer-brands {padding: 0 24px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;}
.nsfvocespba-scope .brand-tile {height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -.5px;
  border-radius: 2px;
  text-transform: lowercase;
  font-style: italic;
  font-family: var(--f-script);}
.nsfvocespba-scope .brand-tile.tile-green {background: #1aab8d;}
.nsfvocespba-scope .brand-tile.tile-pink {background: #d6206e;}
.nsfvocespba-scope .brand-tile.tile-red {background: #c81515;}
.nsfvocespba-scope .brand-tile.tile-orange {background: linear-gradient(90deg, #f7971e, #ffd200 50%, #00b8d9); color: #1a1a1a; font-family: var(--f-sans); font-style: normal; font-size: 14px; letter-spacing: 1px;}
.nsfvocespba-scope .brand-tile.tile-blue {background: #1a3a8a;}
.nsfvocespba-scope .brand-tile.tile-purple {background: linear-gradient(90deg, #4a148c, #d81b60);}
.nsfvocespba-scope .brand-tile.tile-black {background: #0a0a0a; font-family: var(--f-sans); font-style: normal; font-weight: 900; font-size: 14px; letter-spacing: 1px;}
.nsfvocespba-scope .brand-tile.tile-red2 {background: #d6202b;}
/* Sección oscura del drawer (otros medios + redes) */
.nsfvocespba-scope .drawer-dark {background: var(--c-bg-dark);
  color: #fff;
  padding: 24px 24px 32px;
  margin-top: auto;}
.nsfvocespba-scope .drawer-dark-head {background: var(--c-red);
  margin: -24px -24px 22px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;}
.nsfvocespba-scope .drawer-dark-head .drawer-logo {font-size: 30px;
  color: #fff;
  text-align: left;}
.nsfvocespba-scope .drawer-socials {display: flex;
  align-items: center;
  gap: 8px;}
.nsfvocespba-scope .drawer-socials .lbl {font-weight: 900;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 4px;}
.nsfvocespba-scope .drawer-socials a {width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;}
.nsfvocespba-scope .drawer-socials svg {width: 13px; height: 13px; fill: #fff;}
.nsfvocespba-scope .drawer-dark-cols {display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;}
.nsfvocespba-scope .drawer-dark-cols li {padding: 7px 0 7px 18px;
  position: relative;
  font-size: 14px;
  color: #fff;}
.nsfvocespba-scope .drawer-dark-cols li::before {content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--c-red);
  border-radius: 50%;}
.nsfvocespba-scope .drawer-dark-cols li a:hover {color: #ff9999;}
/* ============================================================
   10. SINGLE POST
   ============================================================ */
.nsfvocespba-scope .single-wrap {padding: 18px 0 32px;}
.nsfvocespba-scope .single-breadcrumb {font-size: 13px;
  color: var(--c-text);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;}
.nsfvocespba-scope .single-breadcrumb a {color: var(--c-red);
  font-weight: 400;}
.nsfvocespba-scope .single-breadcrumb a:hover {text-decoration: underline;}
.nsfvocespba-scope .single-breadcrumb .sep {color: var(--c-meta);}
.nsfvocespba-scope .single-breadcrumb .current {color: var(--c-meta);}
.nsfvocespba-scope .single-meta-row {display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;}
.nsfvocespba-scope .single-kicker {font-family: var(--f-sans);
  font-weight: 900;
  font-size: 14px;
  color: var(--c-red);
  text-transform: uppercase;
  letter-spacing: .3px;}
.nsfvocespba-scope .single-date {font-size: 12px;
  color: var(--c-meta);}
.nsfvocespba-scope .single-title {font-family: var(--f-sans);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.8px;
  color: var(--c-text);
  margin-bottom: 18px;}
.nsfvocespba-scope .single-subtitle {font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-text);
  margin-bottom: 22px;}
.nsfvocespba-scope .single-figure {margin: 0 -16px 22px;
  position: relative;}
@media (min-width: 768px){.nsfvocespba-scope .single-figure {margin-left: 0; margin-right: 0;}}
.nsfvocespba-scope .single-figure .post-card-img {aspect-ratio: 16 / 10;}
.nsfvocespba-scope .single-figcaption {position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff;
  font-size: 12px;
  padding: 28px 16px 12px;}
.nsfvocespba-scope .single-body {font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text);}
.nsfvocespba-scope .single-body > p {margin-bottom: 22px;}
.nsfvocespba-scope .single-body a {color: var(--c-red);
  font-weight: 700;}
.nsfvocespba-scope .single-body a:hover {text-decoration: underline;}
.nsfvocespba-scope .single-body strong, .nsfvocespba-scope .single-body b {font-weight: 800;
  color: var(--c-text);}
.nsfvocespba-scope .single-body .highlight-red {color: var(--c-red);
  font-weight: 700;}
.nsfvocespba-scope .single-body h2 {font-family: var(--f-sans);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.4px;
  margin: 30px 0 14px;
  color: var(--c-text);}
.nsfvocespba-scope .single-body blockquote {border-left: 4px solid var(--c-red);
  padding: 6px 0 6px 18px;
  margin: 24px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.4;
  font-weight: 500;}
.nsfvocespba-scope .single-ad {background: #f0f0f0;
  margin: 28px 0;
  padding: 14px 0;
  text-align: center;}
.nsfvocespba-scope .single-ad::before {content: "PUBLICIDAD";
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--c-meta);
  margin-bottom: 10px;
  font-weight: 600;}
.nsfvocespba-scope .single-ad .ad-inner {margin: 0 auto;
  width: 100%;
  max-width: 728px;
  height: 90px;
  background:
    repeating-linear-gradient(135deg, #e2e2e2 0 14px, #ebebeb 14px 28px);
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;}
/* Tweet embed simulado */
.nsfvocespba-scope .tweet-embed {border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 16px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.4;}
.nsfvocespba-scope .tweet-embed-header {display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;}
.nsfvocespba-scope .tweet-embed-avatar {width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-dark));
  flex-shrink: 0;}
.nsfvocespba-scope .tweet-embed-author {display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);}
.nsfvocespba-scope .tweet-embed-verified {width: 14px;
  height: 14px;
  background: #1da1f2;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  font-weight: 900;}
.nsfvocespba-scope .tweet-embed-handle {display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--c-meta);}
.nsfvocespba-scope .tweet-embed-x {margin-left: auto;
  width: 18px;
  height: 18px;
  fill: var(--c-text);}
.nsfvocespba-scope .tweet-embed-body {color: var(--c-text);}
.nsfvocespba-scope .tweet-embed-share {width: 28px;
  height: 28px;
  background: var(--c-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  font-weight: 900;
  margin-top: 12px;}
/* Cards de ads laterales */
.nsfvocespba-scope .single-side-ads {display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;}
.nsfvocespba-scope .side-ad-card {background:
    repeating-linear-gradient(135deg, #f5e0ec 0 14px, #f7e6f0 14px 28px);
  border: 1px solid var(--c-line);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: #c84895;
  font-weight: 700;
  text-align: center;
  position: relative;}
.nsfvocespba-scope .side-ad-card::before {content: "PUBLICIDAD";
  position: absolute;
  top: 6px;
  right: 8px;
  background: rgba(255,255,255,.85);
  padding: 2px 6px;
  font-size: 8px;
  letter-spacing: .8px;
  color: var(--c-meta);}
.nsfvocespba-scope .side-ad-card .brand {font-family: var(--f-script);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: #c84895;
  margin-bottom: 8px;}
.nsfvocespba-scope .side-ad-card small {font-size: 10px;
  letter-spacing: .6px;}
/* ============================================================
   11. FOOTER
   ============================================================ */
.nsfvocespba-scope .footer {background: var(--c-bg-dark);
  color: #fff;
  margin-top: 40px;}
.nsfvocespba-scope .footer-top {background: var(--c-red);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;}
.nsfvocespba-scope .footer-top .container {display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;}
.nsfvocespba-scope .footer-logo {font-family: var(--f-script);
  font-style: italic;
  font-weight: 700;
  font-size: 38px;
  color: #fff;
  line-height: 1;}
.nsfvocespba-scope .footer-socials {display: flex;
  align-items: center;
  gap: 8px;}
.nsfvocespba-scope .footer-socials .lbl {font-weight: 900;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 4px;}
.nsfvocespba-scope .footer-socials a {width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;}
.nsfvocespba-scope .footer-socials svg {width: 14px; height: 14px; fill: #fff;}
.nsfvocespba-scope .footer-body {padding: 28px 0 32px;}
.nsfvocespba-scope .footer-cols {display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 24px;}
.nsfvocespba-scope .footer-cols li {padding: 8px 0 8px 18px;
  position: relative;
  font-size: 15px;
  color: #fff;}
.nsfvocespba-scope .footer-cols li::before {content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  background: var(--c-red);
  border-radius: 50%;}
.nsfvocespba-scope .footer-cols a:hover {color: #ff9999;}
.nsfvocespba-scope .footer-brands-grid {display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;}
.nsfvocespba-scope .footer-bottom {border-top: 1px solid #333;
  padding-top: 18px;
  font-size: 12px;
  color: #888;
  text-align: center;}
/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (min-width: 768px){.nsfvocespba-scope .top-ad-box {height: 90px; max-width: 970px;}
.nsfvocespba-scope .header-date {display: block;}
.nsfvocespba-scope .single-title {font-size: 38px;}
.nsfvocespba-scope .single-subtitle {font-size: 18px;}
.nsfvocespba-scope .cat-bar-inner {padding: 28px 0;}}
@media (min-width: 1024px){.nsfvocespba-scope {--header-h: 72px;}
.nsfvocespba-scope .site-header-inner {grid-template-columns: 200px 1fr 200px;}
.nsfvocespba-scope .brand-logo {font-size: 52px;}
.nsfvocespba-scope .header-icons {gap: 6px;}
.nsfvocespba-scope .header-icon-btn {width: 44px; height: 44px;}
.nsfvocespba-scope .club-pill {display: inline-flex;}
.nsfvocespba-scope .single-title {font-size: 48px;}
.nsfvocespba-scope .single-body {font-size: 18px;}
.nsfvocespba-scope .footer-cols {grid-template-columns: repeat(3, 1fr);}
.nsfvocespba-scope .footer-brands-grid {grid-template-columns: repeat(4, 1fr);}
.nsfvocespba-scope .drawer-dark-cols {grid-template-columns: 1fr 1fr;}}
/* ============================================================
   13. ACCESIBILIDAD
   ============================================================ */
.nsfvocespba-scope a:focus-visible, .nsfvocespba-scope button:focus-visible, .nsfvocespba-scope input:focus-visible {outline: 2px solid var(--c-red);
  outline-offset: 2px;}
@media (prefers-reduced-motion: reduce){.nsfvocespba-scope *, .nsfvocespba-scope *::before, .nsfvocespba-scope *::after {animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;}}


/* ==========================
   Voces de PBA widget compatibility
   ========================== */
.nsfvocespba-scope{--c-red:#d6202b;--c-orange:#d6202b;--c-red-dark:#a31820;--c-yellow:#fce300;--f-script:"Brush Script MT","Lucida Handwriting","Apple Chancery","Snell Roundhand",cursive;}
.nsfvocespba-scope .card-img-real,
.nsfvocespba-scope .post-card-img img,
.nsfvocespba-scope .card > a:first-child img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;}
.nsfvocespba-scope .card > a:first-child:has(img),
.nsfvocespba-scope .card-img-real{aspect-ratio:var(--nsfvocespba-grid-ratio, 1 / 1);overflow:hidden;}
.nsfvocespba-scope .nsfvocespba-grid-news .card > a:first-child{display:block;aspect-ratio:var(--nsfvocespba-grid-ratio, 4 / 3);overflow:hidden;background:#eee;}
.nsfvocespba-scope .nsfvocespba-grid-news .card-img-real{aspect-ratio:var(--nsfvocespba-grid-ratio, 4 / 3);}
.nsfvocespba-scope .nsfvocespba-grid-news .card-title{font-family:var(--f-sans);font-weight:900;letter-spacing:-.3px;}
.nsfvocespba-scope .nsfvocespba-grid-news .section-head{border-bottom-color:var(--c-red);}
.nsfvocespba-scope .nsfvocespba-grid-news .section-title{font-weight:900;text-transform:uppercase;}
.nsfvocespba-scope .nsfvocespba-dynamic-news-block .dynamic-card{position:relative;overflow:hidden;background:#111;}
.nsfvocespba-scope .nsfvocespba-dynamic-news-block .dynamic-card__image img{width:100%;height:100%;object-fit:cover;}
.nsfvocespba-scope .nsfvocespba-dynamic-news-block .dynamic-card__image{height:100%;aspect-ratio:16/9;background:#ddd;}
.nsfvocespba-scope .nsfvocespba-dynamic-news-block .dynamic-card__content{position:absolute;left:0;right:0;bottom:0;padding:18px;color:#fff;background:linear-gradient(to top,rgba(0,0,0,.82),rgba(0,0,0,0));}
.nsfvocespba-scope .nsfvocespba-dynamic-news-block .dynamic-card__title{color:#fff;font-weight:900;line-height:1.05;}
.nsfvocespba-scope .nsfvocespba-dynamic-news-block .dynamic-card__kicker{color:#fff;background:var(--c-red);display:inline-block;padding:3px 7px;font-weight:900;text-transform:uppercase;font-size:12px;margin-bottom:8px;}
.nsfvocespba-scope .nsfvocespba-feature-split .feature-split__text{text-align:var(--feature-text-align,left);}
body.nsfvocespba-drawer-open, body.nsfvocespba-search-open{overflow:hidden!important;}

/* ==========================
   v1.1 fixes: byline, FontAwesome share, market carousel, brand tiles
   ========================== */
.nsfvocespba-scope .share-btn i,
.nsfvocespba-scope .share-save i{font-size:16px;line-height:1;color:currentColor;}
.nsfvocespba-scope .share-save{gap:7px;}
.nsfvocespba-scope .author-name:empty,
.nsfvocespba-scope .card-byline:empty,
.nsfvocespba-scope .hero-byline:empty,
.nsfvocespba-scope .nsfvocespba-dynamic-meta:empty,
.nsfvocespba-scope .nsfvocespba-news-row-author:empty{display:none!important;}

.nsfvocespba-scope .nsfvocespba-market-widget{border:0;padding:0;margin:0 0 18px;}
.nsfvocespba-scope .nsfvocespba-market-track{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding:4px 4px 12px;scrollbar-width:thin;}
.nsfvocespba-scope .nsfvocespba-market-track .nsfvocespba-market-card{flex:0 0 220px;scroll-snap-align:start;}
.nsfvocespba-scope .nsfvocespba-market-ticker{display:flex;gap:8px;overflow-x:auto;white-space:nowrap;padding:6px 0;}
.nsfvocespba-scope .nsfvocespba-market-ticker .nsfvocespba-market-card{min-height:52px;display:grid;grid-template-columns:auto auto auto;align-items:center;gap:10px;text-align:left;flex:0 0 auto;padding:10px 14px;}
.nsfvocespba-scope .nsfvocespba-market-card{position:relative;min-height:108px;align-items:flex-start;text-align:left;box-shadow:0 8px 20px rgba(0,0,0,.06);transition:transform .18s ease, box-shadow .18s ease,border-color .18s ease;}
.nsfvocespba-scope .nsfvocespba-market-card::before{content:"";position:absolute;left:12px;right:12px;top:0;border-top:3px solid transparent;border-radius:999px;}
.nsfvocespba-scope .nsfvocespba-market-card:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(0,0,0,.1);}
.nsfvocespba-scope .nsfvocespba-market-top{width:100%;display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:8px;}
.nsfvocespba-scope .nsfvocespba-market-title{text-align:left;font-size:12px;font-weight:900;letter-spacing:.08em;}
.nsfvocespba-scope .nsfvocespba-market-value{font-size:clamp(25px,3vw,38px);letter-spacing:-.04em;margin:0;}
.nsfvocespba-scope .nsfvocespba-market-meta{justify-content:flex-start;font-size:12px;margin-top:8px;}
.nsfvocespba-scope .nsfvocespba-market-arrow.is-down,.nsfvocespba-scope .nsfvocespba-market-meta.is-down{color:#111;}
.nsfvocespba-scope .nsfvocespba-market-arrow.is-up,.nsfvocespba-scope .nsfvocespba-market-meta.is-up{color:#148a4f;}
.nsfvocespba-scope .nsfvocespba-market-source{margin-top:8px;}
.nsfvocespba-scope .nsfvocespba-market-source:before,.nsfvocespba-scope .nsfvocespba-market-source:after{max-width:180px;}

.nsfvocespba-scope .nsfvocespba-brand-tiles{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;}
.nsfvocespba-scope .nsfvocespba-brand-tiles .brand-tile{min-height:0;text-decoration:none;transition:transform .18s ease,filter .18s ease;}
.nsfvocespba-scope .nsfvocespba-brand-tiles .brand-tile:hover{transform:translateY(-2px);filter:saturate(1.1) brightness(1.03);}

.elementor-editor-active .nsfvocespba-scope .nsfvocespba-dynamic-grid,
.elementor-editor-active .nsfvocespba-scope .nsfvocespba-dynamic-card,
.elementor-editor-active .nsfvocespba-scope .nsfvocespba-dynamic-img{transition:none!important;}
@media(max-width:767px){
  .nsfvocespba-scope .nsfvocespba-market-track .nsfvocespba-market-card{flex-basis:72vw;}
  .nsfvocespba-scope .nsfvocespba-market-card{min-height:96px;}
  .nsfvocespba-scope .nsfvocespba-brand-tiles{grid-template-columns:repeat(2,minmax(0,1fr));}
}


/* v1.2: FontAwesome frontend fallback + market sidebar/tape */
.nsfvocespba-scope .share-btn .fa-fallback,
.nsfvocespba-scope .share-save .fa-fallback{width:16px;height:16px;fill:currentColor;display:none;}
.nsfvocespba-scope .share-btn i:empty + .fa-fallback,
.nsfvocespba-scope .share-save i:empty + .fa-fallback{display:block;}
.nsfvocespba-scope .share-btn i[class*="fa-"],
.nsfvocespba-scope .share-save i[class*="fa-"]{font-style:normal;}
.nsfvocespba-scope .nsfvocespba-market-layout-sidebar_grid .nsfvocespba-market-grid{grid-template-columns:1fr!important;gap:10px;}
.nsfvocespba-scope .nsfvocespba-market-layout-sidebar_grid .nsfvocespba-market-card{min-height:74px;display:grid;grid-template-columns:1fr auto;grid-template-areas:"top value" "meta value";align-items:center;text-align:left;padding:12px 14px;}
.nsfvocespba-scope .nsfvocespba-market-layout-sidebar_grid .nsfvocespba-market-top{grid-area:top;margin:0;justify-content:flex-start;}
.nsfvocespba-scope .nsfvocespba-market-layout-sidebar_grid .nsfvocespba-market-value{grid-area:value;font-size:26px;text-align:right;margin-left:10px;white-space:nowrap;}
.nsfvocespba-scope .nsfvocespba-market-layout-sidebar_grid .nsfvocespba-market-meta{grid-area:meta;margin-top:4px;}
.nsfvocespba-scope .nsfvocespba-market-tape{overflow:hidden;width:100%;position:relative;padding:4px 0 10px;}
.nsfvocespba-scope .nsfvocespba-market-tape:before,.nsfvocespba-scope .nsfvocespba-market-tape:after{content:"";position:absolute;top:0;bottom:0;width:42px;z-index:2;pointer-events:none;}
.nsfvocespba-scope .nsfvocespba-market-tape:before{left:0;background:linear-gradient(90deg,#fff,rgba(255,255,255,0));}
.nsfvocespba-scope .nsfvocespba-market-tape:after{right:0;background:linear-gradient(270deg,#fff,rgba(255,255,255,0));}
.nsfvocespba-scope .nsfvocespba-market-tape-inner{display:flex;gap:10px;width:max-content;animation:nsfvocespbaMarketTape var(--nsfvocespba-ticker-speed,28s) linear infinite;}
.nsfvocespba-scope .nsfvocespba-market-tape.is-pausable:hover .nsfvocespba-market-tape-inner{animation-play-state:paused;}
.nsfvocespba-scope .nsfvocespba-market-tape .nsfvocespba-market-card{flex:0 0 auto;min-width:220px;min-height:62px;display:grid;grid-template-columns:auto auto auto;align-items:center;gap:12px;text-align:left;padding:10px 14px;box-shadow:none;border-radius:999px;}
.nsfvocespba-scope .nsfvocespba-market-tape .nsfvocespba-market-card::before{display:none;}
.nsfvocespba-scope .nsfvocespba-market-tape .nsfvocespba-market-top{width:auto;margin:0;gap:6px;}
.nsfvocespba-scope .nsfvocespba-market-tape .nsfvocespba-market-value{font-size:22px;margin:0;white-space:nowrap;}
.nsfvocespba-scope .nsfvocespba-market-tape .nsfvocespba-market-meta{margin:0;font-size:12px;white-space:nowrap;}
@keyframes nsfvocespbaMarketTape{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(max-width:767px){
  .nsfvocespba-scope .nsfvocespba-market-layout-sidebar_grid .nsfvocespba-market-card{grid-template-columns:1fr;grid-template-areas:"top" "value" "meta";}
  .nsfvocespba-scope .nsfvocespba-market-layout-sidebar_grid .nsfvocespba-market-value{text-align:left;margin-left:0;font-size:24px;}
  .nsfvocespba-scope .nsfvocespba-market-tape .nsfvocespba-market-card{min-width:190px;}
}

/* v1.3.0 - Search results and category grid widgets */
.nsfvocespba-scope.nsfvocespba-search-results .nsfvocespba-search-title{
  font-family: var(--f-sans, Arial, sans-serif);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 34px 0 28px;
  color: var(--c-text, #1a1a1a);
}
.nsfvocespba-search-list{display:grid; gap:20px; margin:0 0 34px;}
.nsfvocespba-search-list.layout-list{display:flex; flex-direction:column;}
.nsfvocespba-search-list.layout-grid{display:grid; grid-template-columns:repeat(3,minmax(0,1fr));}
.nsfvocespba-search-item{border-bottom:1px solid var(--c-line,#e6e6e6); padding:0 0 20px;}
.nsfvocespba-search-item.layout-list{display:grid; grid-template-columns:minmax(0,1fr) 220px; gap:22px; align-items:center;}
.nsfvocespba-search-item.layout-grid{display:block;}
.nsfvocespba-search-kicker{display:block; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; margin:0 0 7px; color:var(--c-red,#d6202b);}
.nsfvocespba-search-item-title{font-size:clamp(20px, 2.1vw, 31px); line-height:1.12; font-weight:850; letter-spacing:-.035em; margin:0;}
.nsfvocespba-search-list.layout-grid .nsfvocespba-search-item-title{font-size:20px;}
.nsfvocespba-search-excerpt{font-size:16px; line-height:1.45; color:#555; margin:10px 0 0;}
.nsfvocespba-search-meta{font-size:13px; color:#999; margin:11px 0 0;}
.nsfvocespba-search-img{display:block; width:100%; aspect-ratio:1/1; overflow:hidden; background:#eee;}
.nsfvocespba-search-img img,.nsfvocespba-search-img .nsfvocespba-dynamic-placeholder{width:100%; height:100%; display:block; object-fit:cover; object-position:center;}
.nsfvocespba-search-pagination{display:flex; justify-content:center; flex-wrap:wrap; gap:8px; margin:28px 0;}
.nsfvocespba-search-pagination .page-numbers{min-width:38px; height:38px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--c-line,#e6e6e6); border-radius:999px; padding:0 12px; font-weight:800;}
.nsfvocespba-search-pagination .current{background:var(--c-red,#d6202b); color:#fff; border-color:var(--c-red,#d6202b);}
.nsfvocespba-search-empty{font-size:18px; color:#666;}

.nsfvocespba-category-grid-posts .nsfvocespba-cat-grid-header{margin:0 0 24px; padding:0 0 14px; border-bottom:3px solid var(--c-red,#d6202b);}
.nsfvocespba-category-grid-posts .nsfvocespba-cat-grid-title{font-size:clamp(28px,4vw,54px); line-height:1; font-weight:900; text-transform:uppercase; letter-spacing:-.04em; margin:0; color:var(--c-red,#d6202b);}
.nsfvocespba-category-grid-posts .nsfvocespba-cat-grid-desc{font-size:17px; line-height:1.45; color:#555; max-width:760px; margin:12px 0 0;}
.nsfvocespba-category-grid-posts .posts-grid{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:28px; padding:0;}
.nsfvocespba-category-grid-posts .post-card-img{width:100%; aspect-ratio:4/3; overflow:hidden; background:#eee;}
.nsfvocespba-category-grid-posts .post-card-img img{width:100%; height:100%; object-fit:cover; object-position:center; display:block;}
.nsfvocespba-category-grid-posts .post-card-body{padding-top:12px;}
.nsfvocespba-category-grid-posts .post-card-kicker{display:inline; font-weight:900; color:var(--c-red,#d6202b); text-transform:uppercase; margin-right:7px;}
.nsfvocespba-category-grid-posts .post-card-title{display:inline; font-weight:850; line-height:1.16; letter-spacing:-.025em; margin:0; font-size:20px;}
.nsfvocespba-category-grid-posts .post-card-excerpt{font-size:15px; line-height:1.45; color:#555; margin:9px 0 0;}
.nsfvocespba-category-grid-posts .post-card-date{display:block; font-size:13px; color:#999; margin-top:10px;}
.nsfvocespba-category-grid-posts .post-card.feat{grid-column:1 / -1; display:grid; grid-template-columns:1.25fr 1fr; gap:28px; align-items:center; border-bottom:1px solid var(--c-line,#e6e6e6); padding-bottom:28px;}
.nsfvocespba-category-grid-posts .post-card.feat .post-card-title{font-size:clamp(28px,3.4vw,48px);}
.nsfvocespba-category-grid-posts .post-card.feat .post-card-img{aspect-ratio:16/10;}

@media (max-width: 767px){
  .nsfvocespba-search-item.layout-list{grid-template-columns:1fr 112px; gap:14px; align-items:start;}
  .nsfvocespba-search-list.layout-grid{grid-template-columns:1fr!important;}
  .nsfvocespba-search-item-title{font-size:20px;}
  .nsfvocespba-search-excerpt{font-size:15px;}
  .nsfvocespba-category-grid-posts .posts-grid{grid-template-columns:1fr!important;}
  .nsfvocespba-category-grid-posts .post-card.feat{display:block;}
  .nsfvocespba-category-grid-posts .post-card.feat .post-card-title{font-size:26px;}
}


/* ============================================================
   v1.3.1 - Responsive/editor fixes
   Estos ajustes evitan que reglas mobile hardcodeadas pisen los controles responsive de Elementor.
   ============================================================ */
.nsfvocespba-scope .brand-logo-img{display:block;height:auto;max-width:100%;object-fit:contain;}
.elementor-editor-active .nsfvocespba-scope *{box-sizing:border-box;}
.elementor-editor-active .nsfvocespba-scope .site-header{position:relative;}
.nsfvocespba-scope .card-img-real,
.nsfvocespba-scope .post-card-img img,
.nsfvocespba-scope .nsfvocespba-dynamic-img img,
.nsfvocespba-scope .hero-img-real{width:100%;height:100%;object-fit:cover;object-position:center;display:block;}
.nsfvocespba-scope .card > a:first-child{display:block;aspect-ratio:var(--nsfvocespba-grid-ratio,1/1);overflow:hidden;}
.nsfvocespba-scope .card > a:first-child .card-img-real{aspect-ratio:unset;}
@media (max-width: 767px){
  .nsfvocespba-scope.nsfvocespba-header-widget .site-header-inner{grid-template-columns:auto minmax(0,1fr) auto;gap:8px;}
  .nsfvocespba-scope.nsfvocespba-header-widget .brand{min-width:0;}
  .nsfvocespba-scope.nsfvocespba-header-widget .brand-logo{font-size:clamp(30px,12vw,52px);white-space:nowrap;}
  .nsfvocespba-scope.nsfvocespba-header-widget .brand-logo-img{max-height:56px;width:auto;max-width:min(54vw,240px);}
  .nsfvocespba-scope.nsfvocespba-header-widget .header-date,
  .nsfvocespba-scope.nsfvocespba-header-widget .club-pill{display:none;}
  .nsfvocespba-scope.nsfvocespba-header-widget .header-icons{gap:4px;}
  .nsfvocespba-scope.nsfvocespba-header-widget .header-icon-btn{width:40px;height:40px;}
  .nsfvocespba-scope .nsfvocespba-dynamic-grid,
  .nsfvocespba-scope .nsfvocespba-dynamic-big-right{grid-template-columns:1fr;}
  .nsfvocespba-scope .nsfvocespba-dynamic-side{grid-template-columns:1fr;}
  .nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-content{padding:14px;}
  .nsfvocespba-scope .nsfvocespba-dynamic-main .nsfvocespba-dynamic-title{font-size:clamp(26px,8vw,38px);}
  .nsfvocespba-scope .nsfvocespba-dynamic-side .nsfvocespba-dynamic-title{font-size:clamp(18px,6vw,24px);}
}

/* v1.3.3 fixes: Hero Noticias multi-post, share SVG icons and responsive preview */
.nsfvocespba-scope .nsfvocespba-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(280px,.9fr);
  align-items:stretch;
  gap:24px;
}
.nsfvocespba-scope .nsfvocespba-hero-secondary-bottom .nsfvocespba-hero-grid{
  grid-template-columns:1fr;
}
.nsfvocespba-scope .nsfvocespba-hero-main,
.nsfvocespba-scope .nsfvocespba-hero-side-card{
  position:relative;
  overflow:hidden;
  min-width:0;
}
.nsfvocespba-scope .nsfvocespba-hero-main-media,
.nsfvocespba-scope .nsfvocespba-hero-main-media img,
.nsfvocespba-scope .nsfvocespba-hero-side-media,
.nsfvocespba-scope .nsfvocespba-hero-side-media img,
.nsfvocespba-scope .hero-img-real{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.nsfvocespba-scope .nsfvocespba-hero-main-media-link,
.nsfvocespba-scope .nsfvocespba-hero-side-media-link{
  display:block;
  overflow:hidden;
  background:#ddd;
}
.nsfvocespba-scope .nsfvocespba-hero-main-content{
  padding:16px 0 0;
}
.nsfvocespba-scope .nsfvocespba-hero-main-title{
  font-size:clamp(28px,4vw,54px);
  line-height:1.06;
  font-weight:900;
  margin:0 0 14px;
  letter-spacing:-.04em;
}
.nsfvocespba-scope .nsfvocespba-hero-side{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  min-width:0;
}
.nsfvocespba-scope .nsfvocespba-hero-secondary-bottom .nsfvocespba-hero-side{
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.nsfvocespba-scope .nsfvocespba-hero-side-title{
  font-size:clamp(18px,2vw,28px);
  line-height:1.08;
  font-weight:900;
  margin:10px 0 0;
  letter-spacing:-.02em;
}
.nsfvocespba-scope .share-btn svg,
.nsfvocespba-scope .share-save svg{
  width:16px;
  height:16px;
  display:block;
  fill:currentColor;
}
.nsfvocespba-scope .share-save svg{
  margin-right:7px;
}
.nsfvocespba-scope .note-breadcrumb .sep{ color:#999; margin:0 6px; }
.nsfvocespba-scope .note-breadcrumb .current{ color:#999; }
@media (max-width:767px){
  .nsfvocespba-scope .nsfvocespba-hero-grid,
  .nsfvocespba-scope .nsfvocespba-hero-secondary-bottom .nsfvocespba-hero-grid{
    grid-template-columns:1fr;
  }
  .nsfvocespba-scope .nsfvocespba-hero-side{
    grid-template-columns:1fr;
  }
  .nsfvocespba-scope .nsfvocespba-hero-side-card{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:12px;
    align-items:center;
  }
  .nsfvocespba-scope .nsfvocespba-hero-side-title{
    margin:0;
    font-size:17px;
  }
}

/* v1.3.5 fixes: dynamic news mobile + footer socials in columns */
.nsfvocespba-scope .nsfvocespba-dynamic-news{width:100%;max-width:100%;overflow:hidden;}
.nsfvocespba-scope .nsfvocespba-dynamic-grid{display:grid;grid-template-columns:minmax(0,66%) minmax(0,1fr);align-items:stretch;}
.nsfvocespba-scope .nsfvocespba-dynamic-grid.is-reverse .nsfvocespba-dynamic-main{order:2;}
.nsfvocespba-scope .nsfvocespba-dynamic-grid.is-reverse .nsfvocespba-dynamic-side{order:1;}
.nsfvocespba-scope .nsfvocespba-dynamic-side{display:grid;grid-template-columns:1fr;gap:inherit;min-width:0;}
.nsfvocespba-scope .nsfvocespba-dynamic-card{position:relative;min-width:0;overflow:hidden;}
.nsfvocespba-scope .nsfvocespba-dynamic-img{display:block;position:relative;overflow:hidden;background:#eee;width:100%;}
.nsfvocespba-scope .nsfvocespba-dynamic-img img,.nsfvocespba-scope .nsfvocespba-dynamic-placeholder{display:block;width:100%;height:100%;object-fit:cover;object-position:center;}
.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-img::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;background:linear-gradient(180deg,rgba(0,0,0,0) 25%,rgba(0,0,0,.62) 100%);}
.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-content{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:clamp(14px,3vw,32px);color:#fff;}
.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-title,.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-title a,.nsfvocespba-scope .nsfvocespba-dynamic-overlay .nsfvocespba-dynamic-excerpt{color:#fff;}
.nsfvocespba-scope .nsfvocespba-dynamic-title{font-weight:900;line-height:1.08;margin:0;}
.nsfvocespba-scope .nsfvocespba-dynamic-main .nsfvocespba-dynamic-title{font-size:clamp(30px,4.2vw,56px);}
.nsfvocespba-scope .nsfvocespba-dynamic-side .nsfvocespba-dynamic-title{font-size:clamp(18px,1.8vw,26px);}
.nsfvocespba-scope .nsfvocespba-dynamic-excerpt{margin-top:10px;font-size:clamp(15px,1.5vw,19px);line-height:1.45;}
.nsfvocespba-scope .footer-socials-inline{justify-content:flex-start;flex-wrap:wrap;margin-top:8px;}

@media (max-width: 767px){
  .nsfvocespba-scope .nsfvocespba-dynamic-grid,.nsfvocespba-scope .nsfvocespba-dynamic-grid.is-reverse{display:grid!important;grid-template-columns:1fr!important;gap:16px!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-grid.is-reverse .nsfvocespba-dynamic-main,.nsfvocespba-scope .nsfvocespba-dynamic-grid.is-reverse .nsfvocespba-dynamic-side{order:initial;}
  .nsfvocespba-scope .nsfvocespba-dynamic-side{gap:16px!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-visible="1"] [data-mobile-index]:nth-of-type(n+2),
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-visible="2"] [data-mobile-index]:nth-of-type(n+3),
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-visible="3"] [data-mobile-index]:nth-of-type(n+4),
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-visible="4"] [data-mobile-index]:nth-of-type(n+5),
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-visible="5"] [data-mobile-index]:nth-of-type(n+6),
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-visible="6"] [data-mobile-index]:nth-of-type(n+7){display:none!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-text-below="1"] .nsfvocespba-dynamic-content{position:static!important;padding:10px 0 0!important;color:var(--c-text)!important;background:transparent!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-text-below="1"] .nsfvocespba-dynamic-title,
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-text-below="1"] .nsfvocespba-dynamic-title a,
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-text-below="1"] .nsfvocespba-dynamic-excerpt{color:var(--c-text)!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-text-below="1"] .nsfvocespba-dynamic-img::after{display:none!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-main .nsfvocespba-dynamic-title{font-size:28px!important;line-height:1.1!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-side .nsfvocespba-dynamic-title{font-size:18px!important;line-height:1.15!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-main .nsfvocespba-dynamic-img{aspect-ratio:16/10!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-side .nsfvocespba-dynamic-img{aspect-ratio:4/3!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-news[data-mobile-hide-excerpt="1"] .nsfvocespba-dynamic-excerpt{display:none!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-mobile-two .nsfvocespba-dynamic-side{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .nsfvocespba-scope .nsfvocespba-dynamic-mobile-compact .nsfvocespba-dynamic-side-card{display:grid;grid-template-columns:96px 1fr;gap:12px;align-items:start;}
  .nsfvocespba-scope .nsfvocespba-dynamic-mobile-compact .nsfvocespba-dynamic-side-card .nsfvocespba-dynamic-img{aspect-ratio:1/1!important;}
}


/* ============================================================
   SKIN Voces de PBA — generado para paquete independiente.
   Layout editorial popular compacto, inspirado en grillas de alto volumen tipo Voces de PBA.
   No incluye logos, imágenes ni assets propietarios de medios reales.
   ============================================================ */
.nsfvocespba-scope{
  --c-red:#c90000;
  --c-red-live:#f5c400;
  --c-yellow:#f5c400;
  --c-bg-dark:#1c1c1c;
  --c-bg-alt:#f4f4f4;
  --f-sans:Arial, "Helvetica Neue", Helvetica, sans-serif;
  --f-serif:Georgia, "Times New Roman", serif;
}
.nsfvocespba-scope .brand-logo{letter-spacing:-.04em;}
.nsfvocespba-scope .post-card-title, .nsfvocespba-scope .card-title, .nsfvocespba-scope .hero-title, .nsfvocespba-scope .note-title{text-wrap:balance;}
.nsfvocespba-scope .site-header{z-index:50;}
.nsfvocespba-scope .card-img-real, .nsfvocespba-scope .post-card-img img{object-fit:cover;}

.nsfvocespba-scope{background:#fff;color:#222;}
.nsfvocespba-scope .site-header{background:#fff;border-bottom:4px solid #c90000;box-shadow:0 3px 0 rgba(0,0,0,.04);}
.nsfvocespba-scope .brand-logo{font-family:var(--f-serif);font-weight:900;color:#c90000;font-size:clamp(34px,5vw,58px);}
.nsfvocespba-scope .brand-slogan{display:inline-block;background:#c90000;color:#fff;padding:2px 7px;border-radius:2px;font-weight:800;letter-spacing:.12em;}
.nsfvocespba-scope .cat-bar{background:#c90000;}
.nsfvocespba-scope .cat-bar h1{font-family:var(--f-sans);font-weight:900;letter-spacing:.04em;}
.nsfvocespba-scope .posts-grid{gap:18px;}
@media(min-width:900px){.nsfvocespba-scope .posts-grid{grid-template-columns:1.35fr 1fr 1fr;}.nsfvocespba-scope .posts-grid>.post-card.feat{grid-column:auto;grid-row:span 2;}}
.nsfvocespba-scope .post-card{background:#f2f2f2;border:1px solid #e1e1e1;}
.nsfvocespba-scope .post-card-body{padding:10px 12px 14px;}
.nsfvocespba-scope .post-card-kicker{background:#f5c400;color:#111;padding:2px 5px;font-size:10px;font-weight:900;text-transform:uppercase;}
.nsfvocespba-scope .post-card-title{font-family:var(--f-sans);font-weight:800;line-height:1.12;}
.nsfvocespba-scope .section-title{font-family:var(--f-sans);font-weight:900;border-left:8px solid #c90000;padding-left:10px;}
.nsfvocespba-scope .nsfvocespba-latest-box{border-radius:0;border-top:6px solid #c90000;}
.nsfvocespba-scope .nsfvocespba-market-card{border-radius:0;box-shadow:none;}
.nsfvocespba-scope .footer-top{background:#c90000;}



/* ============================================================
   V2 Layouts: estructuras distintas por medio de referencia.
   Mantiene widgets/shortcodes originales; sólo redefine maqueta y skin visual.
   ============================================================ */
.nsfvocespba-scope .nsf-v2 { --v2-accent:#d71920; --v2-accent2:#f5c400; --v2-dark:#151515; --v2-line:#e6e6e6; --v2-muted:#6b7280; background:#fff; color:#141414; font-family:Arial,Helvetica,sans-serif; }
.nsfvocespba-scope .nsf-v2 a{color:inherit;text-decoration:none}
.nsfvocespba-scope .nsf-v2 .container{max-width:1180px;margin:0 auto;padding-inline:18px}
.nsfvocespba-scope .nsf-v2-header{background:#fff;position:sticky;top:0;z-index:60;border-bottom:1px solid var(--v2-line)}
.nsfvocespba-scope .nsf-v2-header-inner{min-height:72px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:12px}
.nsfvocespba-scope .nsf-v2-header-left{display:flex;gap:10px;align-items:center}
.nsfvocespba-scope .nsf-v2-header-right{display:flex;justify-content:flex-end;align-items:center;gap:12px}
.nsfvocespba-scope .nsf-v2 .header-icon-btn{width:38px;height:38px;border:0;background:transparent;display:grid;place-items:center;color:inherit;cursor:pointer}
.nsfvocespba-scope .nsf-v2 .header-icon-btn svg{width:23px;height:23px;fill:currentColor}
.nsfvocespba-scope .nsf-v2-live{display:inline-flex;align-items:center;gap:7px;border-radius:999px;background:var(--v2-accent);color:#fff;padding:8px 13px;font-size:12px;font-weight:800;text-transform:uppercase;box-shadow:0 8px 18px rgba(0,0,0,.14)}
.nsfvocespba-scope .nsf-v2-live span{width:8px;height:8px;border-radius:99px;background:var(--v2-accent2)}
.nsfvocespba-scope .nsf-v2-nav{border-bottom:1px solid var(--v2-line);background:#fff}
.nsfvocespba-scope .nsf-v2-nav .container{display:flex;align-items:center;gap:22px;overflow:auto;min-height:42px;white-space:nowrap;font-size:13px;font-weight:700}
.nsfvocespba-scope .nsf-v2-ad{margin:18px auto;background:#f0f0f0;border:1px solid #e0e0e0;min-height:78px;display:grid;place-items:center;text-align:center;color:#6b7280}
.nsfvocespba-scope .nsf-v2-ad span{display:block;font-size:9px;text-transform:uppercase;letter-spacing:.1em;color:#999}
.nsfvocespba-scope .nsf-v2-ad strong{font-size:15px;color:#777}
.nsfvocespba-scope .nsf-v2-bigad{min-height:140px}
.nsfvocespba-scope .nsf-v2-img{position:relative;width:100%;aspect-ratio:16/10;background:#ddd;overflow:hidden}
.nsfvocespba-scope .nsf-v2-img:after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 28% 20%,rgba(255,255,255,.22),transparent 32%),linear-gradient(to top,rgba(0,0,0,.22),transparent 50%)}
.nsfvocespba-scope .nsf-v2-img-1{background:linear-gradient(135deg,#485563,#29323c)}
.nsfvocespba-scope .nsf-v2-img-2{background:linear-gradient(135deg,#bdc3c7,#2c3e50)}
.nsfvocespba-scope .nsf-v2-img-3{background:linear-gradient(135deg,#134e5e,#71b280)}
.nsfvocespba-scope .nsf-v2-img-4{background:linear-gradient(135deg,#614385,#516395)}
.nsfvocespba-scope .nsf-v2-img-5{background:linear-gradient(135deg,#141e30,#243b55)}
.nsfvocespba-scope .nsf-v2-img-6{background:linear-gradient(135deg,#c31432,#240b36)}
.nsfvocespba-scope .nsf-v2-img-7{background:linear-gradient(135deg,#5a3e2b,#c4a777)}
.nsfvocespba-scope .nsf-v2-img-8{background:linear-gradient(135deg,#355c7d,#6c5b7b)}
.nsfvocespba-scope .nsf-v2-img-9{background:linear-gradient(135deg,#2c3e50,#4ca1af)}
.nsfvocespba-scope .nsf-v2-img-10{background:linear-gradient(135deg,#ff512f,#f09819)}
.nsfvocespba-scope .nsf-v2-img-11{background:linear-gradient(135deg,#283c86,#45a247)}
.nsfvocespba-scope .nsf-v2-img-12{background:linear-gradient(135deg,#16222a,#3a6073)}
.nsfvocespba-scope .nsf-v2-img-13{background:linear-gradient(135deg,#7b4397,#dc2430)}
.nsfvocespba-scope .nsf-v2-kicker{display:inline-block;margin:10px 0 6px;font-size:10px;line-height:1;text-transform:uppercase;letter-spacing:.04em;font-weight:900;color:var(--v2-accent)}
.nsfvocespba-scope .nsf-v2-card h3{font-size:20px;line-height:1.12;margin:0 0 8px;font-weight:800;text-wrap:balance}
.nsfvocespba-scope .nsf-v2-card p{margin:0;color:var(--v2-muted);font-size:12px;line-height:1.35}
.nsfvocespba-scope .nsf-v2-grid-2,.nsfvocespba-scope .nsf-v2-grid-3,.nsfvocespba-scope .nsf-v2-grid-4,.nsfvocespba-scope .nsf-v2-mini-grid{display:grid;gap:18px}
.nsfvocespba-scope .nsf-v2-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.nsfvocespba-scope .nsf-v2-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.nsfvocespba-scope .nsf-v2-grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.nsfvocespba-scope .nsf-v2-mini-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.nsfvocespba-scope .nsf-v2-section-grid,.nsfvocespba-scope .nsf-v2-related{padding:28px 0}
.nsfvocespba-scope .nsf-v2-note-layout{display:grid;grid-template-columns:minmax(0,760px) 300px;gap:46px;padding:38px 0}
.nsfvocespba-scope .nsf-v2-breadcrumb{font-size:12px;color:var(--v2-muted);margin-bottom:14px}
.nsfvocespba-scope .nsf-v2-note-main h1{font-size:clamp(34px,5vw,58px);line-height:1.02;margin:8px 0 14px;text-wrap:balance}
.nsfvocespba-scope .nsf-v2-lead{font-size:20px;line-height:1.4;color:#4b5563}
.nsfvocespba-scope .nsf-v2-author{font-size:13px;border-top:1px solid var(--v2-line);border-bottom:1px solid var(--v2-line);padding:12px 0;margin:18px 0;color:#555}
.nsfvocespba-scope .nsf-v2-note-photo{margin:22px 0;aspect-ratio:16/9}
.nsfvocespba-scope .nsf-v2-note-main p{font-size:18px;line-height:1.72}
.nsfvocespba-scope .nsf-v2-note-main blockquote{margin:30px 0;padding:20px 24px;border-left:5px solid var(--v2-accent);font-size:24px;line-height:1.3;font-weight:700;background:#fafafa}
.nsfvocespba-scope .nsf-v2-note-side{position:sticky;top:94px;align-self:start;border-top:4px solid var(--v2-accent);padding-top:12px}
.nsfvocespba-scope .nsf-v2-note-side h3{margin:0 0 10px;font-size:18px;text-transform:uppercase}
.nsfvocespba-scope .nsf-v2-note-side ol{padding-left:22px;margin:0}
.nsfvocespba-scope .nsf-v2-note-side li{padding:10px 0;border-bottom:1px solid var(--v2-line);font-weight:700}
.nsfvocespba-scope .nsf-v2-boxad{height:250px;margin-top:22px;background:#eee;display:grid;place-items:center;color:#999}
.nsfvocespba-scope .nsf-v2-footer{margin-top:36px;padding:28px 0;background:var(--v2-dark);color:#fff}
.nsfvocespba-scope .nsf-v2-footer .container{display:flex;justify-content:space-between;gap:20px;align-items:center;flex-wrap:wrap}
.nsfvocespba-scope .nsf-v2 .drawer-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;padding:0 24px 22px}
.nsfvocespba-scope .nsf-v2 .drawer-list a{padding:15px 0;border-bottom:1px solid #eee;font-weight:800}
@media(max-width:900px){
 .nsfvocespba-scope .nsf-v2-header-inner{min-height:62px}
 .nsfvocespba-scope .nsf-v2-header-right .nsf-v2-date,.nsfvocespba-scope .nsf-v2-subscribe{display:none}
 .nsfvocespba-scope .nsf-v2-grid-4{grid-template-columns:repeat(2,1fr)}
 .nsfvocespba-scope .nsf-v2-grid-3,.nsfvocespba-scope .nsf-v2-grid-2,.nsfvocespba-scope .nsf-v2-mini-grid{grid-template-columns:1fr}
 .nsfvocespba-scope .nsf-v2-note-layout{grid-template-columns:1fr}
 .nsfvocespba-scope .nsf-v2-note-side{position:static}
}

.nsfvocespba-scope .nsf-v2-voces-pba{--v2-accent:#d71920;--v2-accent2:#ffd000;background:#fff;color:#222}
.nsfvocespba-scope .nsf-v2-top-red{background:#d71920;color:#fff;font-size:13px}
.nsfvocespba-scope .nsf-v2-top-red .container{min-height:34px;display:flex;gap:20px;align-items:center;overflow:hidden;white-space:nowrap}
.nsfvocespba-scope .nsf-v2-logo-voces-pba{font-family:Georgia,serif;color:#d71920;font-weight:900;font-size:clamp(38px,6vw,62px);letter-spacing:-.08em}
.nsfvocespba-scope .nsf-v2-voces-pba .nsf-v2-header{border-bottom:4px solid #d71920}
.nsfvocespba-scope .nsf-v2-voces-pba .nsf-v2-nav{background:#f7f7f7}
.nsfvocespba-scope .nsf-v2-voces-pba-hero{display:grid;grid-template-columns:1.45fr 1fr 280px;gap:20px;padding-top:24px}
.nsfvocespba-scope .nsf-v2-voces-pba-main{background:#f3f3f3;border:1px solid #ddd;padding-bottom:14px}
.nsfvocespba-scope .nsf-v2-voces-pba-main h1{font-size:clamp(34px,4vw,54px);line-height:.98;margin:0 16px 8px;font-weight:900;letter-spacing:-.04em}
.nsfvocespba-scope .nsf-v2-voces-pba-main p,.nsfvocespba-scope .nsf-v2-voces-pba-main .nsf-v2-kicker{margin-left:16px;margin-right:16px}
.nsfvocespba-scope .nsf-v2-voces-pba-side{display:grid;gap:18px}
.nsfvocespba-scope .nsf-v2-voces-pba .nsf-v2-card{background:#f1f1f1;border:1px solid #e1e1e1}
.nsfvocespba-scope .nsf-v2-voces-pba .nsf-v2-card h3,.nsfvocespba-scope .nsf-v2-voces-pba .nsf-v2-card p,.nsfvocespba-scope .nsf-v2-voces-pba .nsf-v2-card .nsf-v2-kicker{margin-left:10px;margin-right:10px}
.nsfvocespba-scope .nsf-v2-voces-pba .nsf-v2-kicker{background:#ffd000;color:#111;padding:4px 6px}
.nsfvocespba-scope .nsf-v2-voces-pba-ranking{background:#161616;color:#fff;padding:18px}
.nsfvocespba-scope .nsf-v2-voces-pba-ranking h2{margin:0 0 10px;color:#ffd000;font-size:22px;text-transform:uppercase}
.nsfvocespba-scope .nsf-v2-voces-pba-ranking ol{margin:0;padding-left:22px}
.nsfvocespba-scope .nsf-v2-voces-pba-ranking li{padding:12px 0;border-bottom:1px solid rgba(255,255,255,.14);font-weight:800}
.nsfvocespba-scope .nsf-v2-strip{padding:28px 18px}
.nsfvocespba-scope .nsf-v2-strip h2,.nsfvocespba-scope .nsf-v2-section-grid h2{border-left:8px solid #d71920;padding-left:12px;text-transform:uppercase;font-weight:900}
.nsfvocespba-scope .nsf-v2-strip>div{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media(max-width:960px){.nsfvocespba-scope .nsf-v2-voces-pba-hero{grid-template-columns:1fr}.nsfvocespba-scope .nsf-v2-strip>div{grid-template-columns:1fr 1fr}}


/* =========================================================
   Header widget enhanced controls v1.3.0
   ========================================================= */
.nsfvocespba-scope.nsf-site-header-enhanced {
  --nsf-header-bg: inherit;
  --nsf-nav-bg: inherit;
  --nsf-accent: var(--c-red, #d6202b);
  --nsf-text: inherit;
  width: 100%;
}
.nsfvocespba-scope.nsf-site-header-enhanced .container,
.nsfvocespba-scope.nsf-site-header-enhanced .dr-registered-header__wrap {
  width: min(100% - 32px, 1280px);
  margin-left: auto;
  margin-right: auto;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-header,
.nsfvocespba-scope.nsf-site-header-enhanced .amb-header,
.nsfvocespba-scope.nsf-site-header-enhanced .voz-header,
.nsfvocespba-scope.nsf-site-header-enhanced .mod-header,
.nsfvocespba-scope.nsf-site-header-enhanced .dr-registered-header {
  color: var(--nsf-text, inherit);
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-header,
.nsfvocespba-scope.nsf-site-header-enhanced .amb-header,
.nsfvocespba-scope.nsf-site-header-enhanced .voz-header,
.nsfvocespba-scope.nsf-site-header-enhanced .mod-header {
  background: var(--nsf-header-bg, inherit);
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-nav,
.nsfvocespba-scope.nsf-site-header-enhanced .amb-nav,
.nsfvocespba-scope.nsf-site-header-enhanced .voz-nav,
.nsfvocespba-scope.nsf-site-header-enhanced .mod-nav,
.nsfvocespba-scope.nsf-site-header-enhanced .dr-registered-header__nav {
  background: var(--nsf-nav-bg, inherit);
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-logo-img {
  width: 220px;
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-header-right,
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-right-actions,
.nsfvocespba-scope.nsf-site-header-enhanced .dr-registered-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-left-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
  line-height: 1.1;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-date {
  font-size: 14px;
  color: inherit;
  opacity: .85;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-temperature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: inherit;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-temperature::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nsf-accent, #8bd62f);
  display: inline-block;
  flex: 0 0 auto;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-nav::-webkit-scrollbar,
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-nav .container::-webkit-scrollbar,
.nsfvocespba-scope.nsf-site-header-enhanced .amb-nav::-webkit-scrollbar,
.nsfvocespba-scope.nsf-site-header-enhanced .voz-nav::-webkit-scrollbar,
.nsfvocespba-scope.nsf-site-header-enhanced .mod-nav::-webkit-scrollbar { display: none; }
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-nav a {
  white-space: nowrap;
}
.nsfvocespba-scope.nsf-site-header-enhanced .header-icon-btn svg,
.nsfvocespba-scope.nsf-site-header-enhanced .dr-registered-header__icon svg {
  fill: currentColor;
}
.nsfvocespba-scope.nsf-site-header-enhanced--registrado .dr-registered-header {
  --dr-top-bg: #56bdd0;
  --dr-nav-bg: #005563;
  --dr-accent: #a6d329;
  --dr-text: #fff;
}
.nsfvocespba-scope.nsf-site-header-enhanced--registrado .dr-registered-header__brand {
  justify-self: center;
}
.nsfvocespba-scope.nsf-site-header-enhanced .mod-live span,
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-live span,
.nsfvocespba-scope.nsf-site-header-enhanced .dr-registered-header__live span {
  display: inline-block;
}
@media (max-width: 768px) {
  .nsfvocespba-scope.nsf-site-header-enhanced .container,
  .nsfvocespba-scope.nsf-site-header-enhanced .dr-registered-header__wrap { width: min(100% - 20px, 1280px); }
  .nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-date { display: none; }
  .nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-temperature { display: none; }
  .nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-header-inner,
  .nsfvocespba-scope.nsf-site-header-enhanced .amb-top,
  .nsfvocespba-scope.nsf-site-header-enhanced .voz-top,
  .nsfvocespba-scope.nsf-site-header-enhanced .mod-top { grid-template-columns: auto minmax(0,1fr) auto; gap: 8px; }
  .nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-logo-text,
  .nsfvocespba-scope.nsf-site-header-enhanced .amb-logo,
  .nsfvocespba-scope.nsf-site-header-enhanced .voz-logo,
  .nsfvocespba-scope.nsf-site-header-enhanced .mod-logo,
  .nsfvocespba-scope.nsf-site-header-enhanced .dr-registered-header__word { max-width: 72vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

.nsfvocespba-scope.nsf-site-header-enhanced .mod-live span {
  display:inline-block;width:8px;height:8px;background:#38ff9c;border-radius:50%;margin-right:7px;vertical-align:middle;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-brand .mod-logo {
  display:inline-block;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-brand .amb-logo,
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-header-brand .voz-logo {
  display:inline-block;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-logo-ed span {
  display:inline;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-logo-ed strong {
  font-weight:inherit;
}

/* =========================================================
   Voces de PBA — canvas refinado v1.3.5
   Corrige menú corrido, botón de cierre y paleta del logo.
   ========================================================= */
.nsfvocespba-scope.nsf-site-header-enhanced{
  --vpba-blue:#0b7fe5;
  --vpba-black:#050505;
  --vpba-green:#55e891;
  --vpba-red:#d60000;
  --vpba-soft:#f4f8ff;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-backdrop{
  background:rgba(3, 8, 18, .62);
  backdrop-filter:blur(5px);
  z-index:99998;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer{
  width:min(92vw, 430px);
  max-width:430px;
  background:#fff;
  color:#101010;
  border-right:0;
  box-shadow:24px 0 70px rgba(0,0,0,.28);
  z-index:99999;
  overflow:hidden;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer::before{
  content:"";
  position:absolute;
  inset:auto -70px -90px auto;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle at 50% 50%, rgba(11,127,229,.18), rgba(11,127,229,.08) 42%, transparent 43%);
  pointer-events:none;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-top,
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-header{
  position:relative;
  display:grid;
  grid-template-columns:48px minmax(0,1fr) 48px;
  align-items:center;
  gap:12px;
  min-height:118px;
  padding:24px 22px 18px;
  border-bottom:1px solid #e9eef5;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-close{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #dfe7f0;
  border-radius:14px;
  background:#fff;
  color:var(--vpba-black);
  box-shadow:0 8px 22px rgba(8,24,48,.08);
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  font-size:0;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-close::before,
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-close::after{
  content:"";
  position:absolute;
  width:17px;
  height:2px;
  border-radius:99px;
  background:currentColor;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-close::before{transform:rotate(45deg)}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-close::after{transform:rotate(-45deg)}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-close:hover{
  transform:translateY(-1px);
  color:#fff;
  border-color:var(--vpba-blue);
  background:var(--vpba-blue);
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-logo{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--vpba-black);
  text-decoration:none;
  min-width:0;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-logo-img{
  width:min(230px, 100%);
  max-height:92px;
  object-fit:contain;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-logo-img--brand{
  width:min(210px, 100%);
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-logo-text{
  font-family:Arial Black, Impact, system-ui, sans-serif;
  font-size:28px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
  color:var(--vpba-black);
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-search{
  position:relative;
  padding:18px 22px 14px;
  border-bottom:1px solid #eef2f6;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-search-input{
  position:relative;
  display:block;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-search-input svg{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:21px;
  height:21px;
  fill:#667085;
  z-index:2;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-search-input input{
  width:100%;
  height:56px;
  padding:0 18px 0 52px;
  border:1px solid #dce4ed;
  border-radius:16px;
  background:#fff;
  color:#111;
  font-size:16px;
  line-height:1;
  box-shadow:0 10px 28px rgba(8,24,48,.06);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-search-input input:focus{
  border-color:var(--vpba-blue);
  box-shadow:0 0 0 4px rgba(11,127,229,.12), 0 10px 28px rgba(8,24,48,.06);
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-list{
  position:relative;
  display:flex!important;
  flex-direction:column!important;
  gap:0!important;
  padding:8px 22px 16px!important;
  overflow-y:auto;
  flex:1 1 auto;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-list a,
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-list .drawer-link{
  display:flex!important;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:17px 4px!important;
  border-bottom:1px solid #edf1f5;
  color:#111!important;
  font-size:19px;
  line-height:1.15;
  font-weight:850;
  letter-spacing:-.02em;
  text-decoration:none!important;
  white-space:normal;
  word-break:normal;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-list a::after{
  content:"";
  width:9px;
  height:9px;
  border-top:2px solid var(--vpba-blue);
  border-right:2px solid var(--vpba-blue);
  transform:rotate(45deg);
  margin-left:16px;
  flex:0 0 auto;
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-list a:hover{
  color:var(--vpba-blue)!important;
  transform:translateX(3px);
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-live-cta{
  align-self:center;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:10px 22px 28px;
  padding:14px 24px;
  border-radius:999px;
  background:var(--vpba-black);
  color:#fff!important;
  font-weight:900;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  text-decoration:none!important;
  box-shadow:0 15px 35px rgba(0,0,0,.18);
}
.nsfvocespba-scope.nsf-site-header-enhanced .drawer-live-cta .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--vpba-green);
  box-shadow:0 0 0 5px rgba(85,232,145,.18);
}
.nsfvocespba-scope.nsf-site-header-enhanced--voces-pba .nsf-v2-header-voces-pba{
  border-bottom:4px solid var(--vpba-blue);
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-logo-voces-pba{
  color:var(--vpba-black);
  font-family:Arial Black, Impact, system-ui, sans-serif;
  letter-spacing:-.06em;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-live{
  background:var(--vpba-black);
  color:#fff;
}
.nsfvocespba-scope.nsf-site-header-enhanced .nsf-v2-live span{
  background:var(--vpba-green);
}
@media(max-width:640px){
  .nsfvocespba-scope.nsf-site-header-enhanced .drawer{width:min(94vw,390px)}
  .nsfvocespba-scope.nsf-site-header-enhanced .drawer-top{grid-template-columns:44px minmax(0,1fr) 24px;min-height:104px;padding:18px 16px 14px}
  .nsfvocespba-scope.nsf-site-header-enhanced .drawer-close{width:42px;height:42px;border-radius:13px}
  .nsfvocespba-scope.nsf-site-header-enhanced .drawer-search{padding:14px 16px 10px}
  .nsfvocespba-scope.nsf-site-header-enhanced .drawer-list{padding:6px 16px 14px!important}
  .nsfvocespba-scope.nsf-site-header-enhanced .drawer-list a{font-size:18px;padding:16px 2px!important}
  .nsfvocespba-scope.nsf-site-header-enhanced .drawer-logo-img{max-height:78px;width:min(190px,100%)}
}

/* ============================================================
   Voces de PBA v1.3.7 — Footer de marca profesional
   Tres columnas: marca, categorías e información legal.
   ============================================================ */
.nsfvocespba-scope .nsfvocespba-footer-pro{
  position:relative;
  overflow:hidden;
  background:#050505;
  color:#fff;
  border-top:0!important;
  isolation:isolate;
}
.nsfvocespba-scope .nsfvocespba-footer-pro::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg,#0A7DE2 0%,#49E68B 52%,#0A7DE2 100%);
  z-index:1;
}
.nsfvocespba-scope .nsfvocespba-footer-pro::after{
  content:"";
  position:absolute;
  right:-110px;
  bottom:-160px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%,rgba(10,125,226,.95) 0 34%,transparent 35%), radial-gradient(circle,rgba(73,230,139,.12) 0 48%,transparent 49%);
  opacity:.65;
  z-index:-1;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .container{position:relative;z-index:2;}
.nsfvocespba-scope .nsfvocespba-footer-pro .nsfvocespba-footer-main{
  display:grid!important;
  grid-template-columns:minmax(260px,1.15fr) minmax(220px,.85fr) minmax(260px,.9fr);
  align-items:start;
  gap:clamp(28px,4vw,64px);
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand{
  flex-basis:auto!important;
  width:auto!important;
  min-width:0;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand .brand-logo{
  display:inline-flex;
  max-width:min(360px,100%);
  transform:translateX(-4px);
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand .brand-logo img{
  max-width:min(330px,100%)!important;
  width:100%;
  height:auto;
  filter:drop-shadow(0 14px 24px rgba(10,125,226,.12));
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand p{
  max-width:380px;
  margin:20px 0 0!important;
  color:#D8DDE4;
  font-size:15px;
  line-height:1.75;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand p::before{
  content:"";
  display:block;
  width:78px;
  height:4px;
  margin:0 0 18px;
  border-radius:999px;
  background:linear-gradient(90deg,#0A7DE2,#49E68B);
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-cols{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:24px!important;
  margin:0!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col,
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card{
  padding:0;
  background:transparent;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col h5,
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card h5{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px!important;
  color:#0A7DE2!important;
  font-size:13px;
  line-height:1.1;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col h5::before,
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card h5::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:#49E68B;
  box-shadow:0 0 0 5px rgba(73,230,139,.12);
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col ul,
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom ul{
  display:grid;
  gap:10px;
  margin:0!important;
  padding:0!important;
  list-style:none!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col a,
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom a,
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card a{
  position:relative;
  display:inline-flex;
  align-items:center;
  color:#fff!important;
  text-decoration:none!important;
  font-size:15px;
  line-height:1.35;
  font-weight:700;
  opacity:.86;
  transition:color .18s ease, opacity .18s ease, transform .18s ease;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col a::before{
  content:"";
  width:0;
  height:2px;
  margin-right:0;
  border-radius:99px;
  background:#49E68B;
  transition:width .18s ease, margin .18s ease;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col a:hover,
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom a:hover,
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card a:hover{
  color:#49E68B!important;
  opacity:1;
  transform:translateX(2px);
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-col a:hover::before{
  width:16px;
  margin-right:8px;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card{
  min-height:100%;
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(10,125,226,.08));
  box-shadow:0 24px 70px rgba(0,0,0,.24);
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card p{
  margin:0 0 18px!important;
  color:#D8DDE4!important;
  font-size:14px;
  line-height:1.65;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-socials{
  display:flex!important;
  align-items:center;
  justify-content:flex-start!important;
  flex-wrap:wrap;
  margin:18px 0 20px!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-socials a{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border:1px solid rgba(10,125,226,.75)!important;
  border-radius:14px!important;
  color:#fff!important;
  background:rgba(255,255,255,.04)!important;
  box-shadow:0 10px 24px rgba(10,125,226,.10);
  opacity:1!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-socials a:hover{
  color:#050505!important;
  border-color:#49E68B!important;
  background:#49E68B!important;
  transform:translateY(-2px);
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-socials svg,
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-socials i{
  width:1em;
  height:1em;
  display:block;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom{
  margin:16px 0 0!important;
  padding:18px 0 0!important;
  border-top:1px solid rgba(255,255,255,.12)!important;
  display:block!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom ul{
  display:flex!important;
  gap:12px 18px!important;
  flex-wrap:wrap;
  justify-content:flex-start!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom li{margin:0!important;}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom a{
  font-size:13px!important;
  font-weight:700!important;
  color:#D8DDE4!important;
}
@media (max-width: 1024px){
  .nsfvocespba-scope .nsfvocespba-footer-pro .nsfvocespba-footer-main{
    grid-template-columns:1fr 1fr;
  }
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card{
    grid-column:1 / -1;
  }
}
@media (max-width: 767px){
  .nsfvocespba-scope .nsfvocespba-footer-pro .nsfvocespba-footer-main{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:34px!important;
  }
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand .brand-logo img{max-width:260px!important;}
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card{padding:22px;}
}

/* ============================================================
   Voces de PBA v1.3.7 — Footer: copyright horizontal + logo editable
   ============================================================ */
.nsfvocespba-scope .nsfvocespba-footer-pro .nsfvocespba-footer-main{
  grid-template-columns:minmax(220px,.9fr) minmax(0,1.55fr)!important;
  align-items:start!important;
  gap:clamp(28px,5vw,76px)!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-cols{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:clamp(28px,4vw,60px)!important;
  width:100%!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand .brand-logo{
  max-width:100%!important;
  width:auto!important;
  transform:none!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand .brand-logo img{
  width:300px;
  max-width:100%!important;
  max-height:210px;
  object-fit:contain!important;
  object-position:left center!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-legal-card{
  display:none!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-bar{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  align-items:center;
  gap:18px 28px;
  margin:clamp(34px,5vw,58px) 0 0;
  padding:20px 0 0;
  border-top:1px solid rgba(255,255,255,.14);
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-copy{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px 14px;
  min-width:0;
  color:#D8DDE4;
  font-size:14px;
  line-height:1.45;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-copy strong{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#0A7DE2;
  font-size:12px;
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-copy strong::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:#49E68B;
  box-shadow:0 0 0 5px rgba(73,230,139,.12);
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-links ul{
  display:flex!important;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end!important;
  gap:10px 20px!important;
  margin:0!important;
  padding:0!important;
  list-style:none!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-links a{
  color:#D8DDE4!important;
  font-size:13px!important;
  font-weight:800!important;
  text-decoration:none!important;
  opacity:.88;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-links a:hover{
  color:#49E68B!important;
  opacity:1;
}
.nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-bar .footer-socials{
  margin:0!important;
  justify-content:flex-end!important;
}
.nsfvocespba-scope .nsfvocespba-footer-pro::after{
  right:-150px!important;
  bottom:-250px!important;
  width:360px!important;
  height:360px!important;
  opacity:.35!important;
}
@media (max-width:1024px){
  .nsfvocespba-scope .nsfvocespba-footer-pro .nsfvocespba-footer-main{
    grid-template-columns:1fr!important;
  }
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-cols{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-bar{
    grid-template-columns:1fr;
    justify-items:start;
  }
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-links ul,
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-bar .footer-socials{
    justify-content:flex-start!important;
  }
}
@media (max-width:767px){
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-cols{
    grid-template-columns:1fr!important;
  }
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-brand .brand-logo img{
    width:min(260px,100%)!important;
    max-width:100%!important;
  }
  .nsfvocespba-scope .nsfvocespba-footer-pro .footer-bottom-bar{
    margin-top:30px;
    padding-top:18px;
  }
}

/* ============================================================
   Voces de PBA v1.3.8 — Home, sidebar, archivo y single Pro
   ============================================================ */
.nsfvocespba-scope.vpba-pro,
.nsfvocespba-scope.vpba-archive-pro,
.nsfvocespba-scope.vpba-single-pro,
.nsfvocespba-scope.vpba-sidebar-latest{font-family:inherit;color:#080808;box-sizing:border-box}
.nsfvocespba-scope.vpba-pro *,.nsfvocespba-scope.vpba-archive-pro *,.nsfvocespba-scope.vpba-single-pro *,.nsfvocespba-scope.vpba-sidebar-latest *{box-sizing:border-box}
.vpba-pro a,.vpba-archive-pro a,.vpba-single-pro a,.vpba-sidebar-latest a{text-decoration:none;color:inherit}
.vpba-pro{position:relative;padding:54px 0 40px;background:#fff;overflow:hidden}
.vpba-pro:before{content:"";position:absolute;right:-120px;top:120px;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle at 40% 40%,rgba(11,131,230,.20),rgba(80,231,138,.08) 58%,transparent 60%);pointer-events:none}
.vpba-pro-head{max-width:1240px;margin:0 auto 34px;padding:0 22px;position:relative;z-index:1}
.vpba-pro-dot,.vpba-archive-dot,.vpba-single-dot{display:inline-block;width:14px;height:14px;border-radius:99px;background:#50e78a;box-shadow:0 0 0 8px rgba(80,231,138,.12);vertical-align:middle;margin-right:10px}
.vpba-pro-eyebrow{font-weight:900;letter-spacing:.16em;text-transform:uppercase;font-size:13px;color:#0b83e6}
.vpba-pro-title{margin:10px 0 8px;font-size:clamp(36px,5vw,72px);line-height:.92;font-weight:950;letter-spacing:-.05em;text-transform:uppercase;color:#050505}
.vpba-pro-intro{max-width:720px;font-size:18px;line-height:1.55;color:#60636a;margin:0}
.vpba-pro-layout{max-width:1240px;margin:0 auto;padding:0 22px;display:grid;grid-template-columns:1fr;gap:28px;position:relative;z-index:1}
.vpba-pro-layout.has-sidebar{grid-template-columns:minmax(0,1fr) 330px}
.vpba-pro-main{min-width:0}
.vpba-pro-hero-grid{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(280px,.85fr);grid-template-rows:1fr 1fr;gap:22px;margin-bottom:42px}
.vpba-pro-card{position:relative;background:#fff;border-bottom:1px solid rgba(0,0,0,.12);transition:transform .22s ease,border-color .22s ease}
.vpba-pro-card:hover{transform:translateY(-2px);border-color:rgba(11,131,230,.5)}
.vpba-pro-card.is-hero{grid-row:span 2}.vpba-pro-card.is-hero .vpba-pro-card-title{font-size:clamp(30px,4vw,54px);line-height:.98;letter-spacing:-.04em}.vpba-pro-card.is-hero .vpba-pro-img{aspect-ratio:16/10}.vpba-pro-card.is-side .vpba-pro-img{aspect-ratio:16/9}.vpba-pro-card:not(.is-hero):not(.is-side) .vpba-pro-img{aspect-ratio:4/3}
.vpba-pro-img{display:block;background:#eef3f8;overflow:hidden;margin-bottom:14px;position:relative}.vpba-pro-img img,.vpba-pro-img-placeholder{display:block;width:100%;height:100%;object-fit:cover}.vpba-pro-img-placeholder{min-height:180px;background:linear-gradient(135deg,#0b83e6,#111,#50e78a)}
.vpba-pro-card-body{position:relative;padding:0 4px 18px}.vpba-pro-kicker{display:inline-flex;align-items:center;gap:6px;margin-bottom:8px;font-size:12px;line-height:1;font-weight:900;text-transform:uppercase;letter-spacing:.08em;color:#0b83e6}.vpba-pro-kicker:before{content:"";width:7px;height:7px;border-radius:50%;background:#e10b12;display:inline-block}
.vpba-pro-card-title{margin:0;font-size:22px;line-height:1.06;font-weight:950;letter-spacing:-.03em;color:#080808}.vpba-pro-card-title a:hover{color:#0b83e6}.vpba-pro-excerpt{margin:10px 0 0;color:#616161;font-size:15px;line-height:1.45}.vpba-pro-meta{display:block;margin-top:10px;color:#777;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.vpba-pro-arrow{position:absolute;right:4px;bottom:18px;display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:999px;background:#111;color:#fff;font-weight:900;opacity:.92;transition:.2s ease}
.vpba-pro-section{margin-top:38px}.vpba-pro-section-head{display:flex;align-items:center;justify-content:space-between;gap:18px;border-top:3px solid #050505;padding-top:16px;margin-bottom:20px}.vpba-pro-section-title{display:flex;align-items:center;gap:10px;margin:0;font-size:28px;font-weight:950;letter-spacing:-.03em;text-transform:uppercase;color:#0b83e6}.vpba-pro-section-title:before{content:"";width:12px;height:12px;border-radius:99px;background:#0b83e6}.vpba-pro-section-link{font-size:12px;text-transform:uppercase;letter-spacing:.1em;font-weight:900;color:#0b83e6}
.vpba-pro-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:28px}.vpba-pro-grid .vpba-pro-card-title{font-size:20px}.vpba-pro-grid .vpba-pro-excerpt{font-size:14px}
.vpba-pro-sidebar{position:sticky;top:32px;align-self:start;background:#060606;color:#fff;border-radius:24px;padding:26px 24px;border:1px solid rgba(255,255,255,.14);box-shadow:0 18px 50px rgba(0,0,0,.18);overflow:hidden}.vpba-pro-sidebar:after{content:"";position:absolute;right:-80px;bottom:-90px;width:220px;height:220px;border-radius:50%;background:rgba(11,131,230,.35);pointer-events:none}.vpba-pro-sidebar-title{position:relative;margin:0 0 18px;font-size:22px;line-height:1;text-transform:uppercase;letter-spacing:.04em;color:#fff}.vpba-pro-sidebar-title:before{content:"";display:inline-block;width:10px;height:10px;border-radius:50%;background:#0b83e6;margin-right:10px}.vpba-pro-latest-item{position:relative;z-index:1;display:grid;grid-template-columns:44px 1fr;gap:14px;padding:16px 0;border-top:1px solid rgba(255,255,255,.16)}.vpba-pro-latest-item span{font-size:13px;color:#50e78a;font-weight:950}.vpba-pro-latest-item a{font-size:16px;line-height:1.22;font-weight:850;color:#fff}.vpba-pro-latest-item a:hover{color:#50e78a}.vpba-pro-bottom-line{display:block;max-width:1240px;height:5px;margin:34px auto 0;background:linear-gradient(90deg,#0b83e6,#50e78a);border-radius:999px}

.vpba-sidebar-latest{background:#fff;border:1px solid rgba(0,0,0,.10);border-radius:22px;padding:22px;box-shadow:0 14px 34px rgba(0,0,0,.06)}.vpba-sidebar-title{margin:0 0 14px;color:#0b83e6;font-weight:950;text-transform:uppercase;letter-spacing:.08em;font-size:18px}.vpba-sidebar-title:before{content:"";display:inline-block;width:10px;height:10px;border-radius:50%;background:#0b83e6;margin-right:8px}.vpba-sidebar-item{display:grid;grid-template-columns:30px 76px 1fr;gap:12px;align-items:center;padding:14px 0;border-top:1px solid rgba(0,0,0,.10)}.vpba-sidebar-item:first-child{border-top:0}.vpba-sidebar-item-num{display:inline-flex;width:26px;height:26px;border-radius:50%;align-items:center;justify-content:center;background:#50e78a;color:#050505;font-weight:950;font-size:11px}.vpba-sidebar-thumb{display:block;width:76px;aspect-ratio:1/1;border-radius:14px;overflow:hidden;background:#edf3f8}.vpba-sidebar-thumb img,.vpba-sidebar-thumb span{display:block;width:100%;height:100%;object-fit:cover}.vpba-sidebar-link{display:block;font-size:15px;line-height:1.18;font-weight:850}.vpba-sidebar-link:hover{color:#0b83e6}.vpba-sidebar-item time{display:block;margin-top:5px;color:#777;font-size:11px;text-transform:uppercase;font-weight:700}

.vpba-archive-pro{max-width:1240px;margin:0 auto;padding:54px 22px}.vpba-archive-head{position:relative;border-bottom:4px solid #070707;padding-bottom:22px;margin-bottom:28px}.vpba-archive-head:before{content:"";position:absolute;left:0;bottom:-4px;width:160px;height:4px;background:#0b83e6}.vpba-archive-prefix{display:inline-block;color:#0b83e6;font-weight:950;text-transform:uppercase;letter-spacing:.12em;font-size:13px}.vpba-archive-title{margin:8px 0 0;font-size:clamp(38px,6vw,82px);line-height:.9;font-weight:950;letter-spacing:-.055em;text-transform:uppercase;color:#050505}.vpba-archive-head p{max-width:760px;color:#62656b;font-size:18px;line-height:1.45;margin:12px 0 0}.vpba-archive-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px}.vpba-archive-card{border-bottom:1px solid rgba(0,0,0,.14);padding-bottom:18px}.vpba-archive-card.is-featured{grid-column:span 2;display:grid;grid-template-columns:1.2fr 1fr;gap:22px;align-items:center}.vpba-archive-img{display:block;aspect-ratio:4/3;background:#eff4f8;border-radius:18px;overflow:hidden;margin-bottom:14px}.vpba-archive-card.is-featured .vpba-archive-img{aspect-ratio:16/10;margin-bottom:0}.vpba-archive-img img,.vpba-archive-img span{display:block;width:100%;height:100%;object-fit:cover}.vpba-archive-kicker{display:block;font-size:12px;font-weight:950;text-transform:uppercase;letter-spacing:.08em;color:#0b83e6;margin-bottom:8px}.vpba-archive-card-title{margin:0;font-size:22px;line-height:1.05;font-weight:950;letter-spacing:-.03em}.vpba-archive-card.is-featured .vpba-archive-card-title{font-size:clamp(30px,4vw,50px)}.vpba-archive-card p{color:#666;line-height:1.45;margin:10px 0 0}.vpba-archive-card time{display:block;margin-top:10px;color:#777;font-size:12px;text-transform:uppercase;font-weight:800}.vpba-archive-pro.is-list .vpba-archive-grid{display:block}.vpba-archive-card.is-list{display:grid;grid-template-columns:260px 1fr;gap:22px;padding:20px 0}.vpba-archive-card.is-list .vpba-archive-img{margin:0;aspect-ratio:16/10}.vpba-archive-pagination{margin-top:32px;display:flex;gap:8px;flex-wrap:wrap}.vpba-archive-pagination .page-numbers{display:inline-flex;min-width:38px;height:38px;align-items:center;justify-content:center;border-radius:999px;border:1px solid rgba(0,0,0,.12);font-weight:900}.vpba-archive-pagination .current{background:#070707;color:#fff}

.vpba-single-pro{max-width:920px;margin:0 auto;padding:48px 22px}.vpba-single-head{margin-bottom:28px}.vpba-single-cat{display:inline-flex;align-items:center;color:#0b83e6;font-weight:950;text-transform:uppercase;letter-spacing:.12em;font-size:13px}.vpba-single-title{position:relative;margin:14px 0 18px;font-size:clamp(40px,6vw,82px);line-height:.94;letter-spacing:-.06em;font-weight:950;color:#050505}.vpba-single-title:after{content:"";display:block;width:160px;height:5px;background:#0b83e6;border-radius:999px;margin-top:22px}.vpba-single-subtitle{font-size:22px;line-height:1.38;color:#555;margin:0 0 18px}.vpba-single-meta{display:flex;gap:16px;flex-wrap:wrap;color:#777;font-size:13px;text-transform:uppercase;font-weight:800;letter-spacing:.04em}.vpba-single-image{margin:34px 0}.vpba-single-image img{width:100%;height:auto;border-radius:24px;display:block}.vpba-single-image figcaption{font-size:13px;color:#777;margin-top:10px}.vpba-single-share{display:flex;align-items:center;gap:10px;flex-wrap:wrap;padding:16px 0;border-top:1px solid rgba(0,0,0,.12);border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:26px}.vpba-single-share span{font-weight:950;text-transform:uppercase;letter-spacing:.08em}.vpba-single-share a{display:inline-flex;border-radius:999px;background:#070707;color:#fff;padding:9px 14px;font-size:12px;font-weight:900}.vpba-single-share a:hover{background:#0b83e6}.vpba-single-content{font-size:19px;line-height:1.72;color:#1d1d1d}.vpba-single-content h2,.vpba-single-content h3{line-height:1.1;letter-spacing:-.03em}.vpba-single-related{margin-top:46px;border-top:4px solid #070707;padding-top:20px}.vpba-single-related-title{display:flex;align-items:center;gap:10px;margin:0 0 18px;color:#0b83e6;text-transform:uppercase;font-weight:950;letter-spacing:.04em}.vpba-single-related-title:before{content:"";width:12px;height:12px;border-radius:50%;background:#0b83e6}.vpba-single-related>div{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.vpba-single-related article img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:16px}.vpba-single-related article h3{font-size:18px;line-height:1.08;margin:10px 0 0;font-weight:950}

@media (max-width:1024px){.vpba-pro-layout.has-sidebar{grid-template-columns:1fr}.vpba-pro-sidebar{position:relative;top:auto}.vpba-pro-hero-grid{grid-template-columns:1fr 1fr}.vpba-pro-card.is-hero{grid-column:span 2}.vpba-pro-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.vpba-archive-card.is-featured{grid-column:span 1;display:block}.vpba-archive-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:767px){.vpba-pro{padding:34px 0}.vpba-pro-hero-grid,.vpba-pro-grid,.vpba-archive-grid,.vpba-single-related>div{grid-template-columns:1fr}.vpba-pro-card.is-hero{grid-column:auto}.vpba-pro-card.is-hero .vpba-pro-card-title{font-size:34px}.vpba-pro-section-head{align-items:flex-start;flex-direction:column}.vpba-sidebar-item{grid-template-columns:28px 64px 1fr}.vpba-sidebar-thumb{width:64px}.vpba-archive-card.is-list{grid-template-columns:1fr}.vpba-archive-title,.vpba-single-title{font-size:42px}.vpba-single-content{font-size:17px}.vpba-pro-arrow{display:none}}
