/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rojo: #CC2200;
  --rojo-oscuro: #9e1a00;
  --negro: #111110;
  --negro2: #1c1c1b;
  --gris-oscuro: #2e2e2c;
  --gris-medio: #888785;
  --gris-claro: #f2f0eb;
  --gris-borde: #e0ddd7;
  --blanco: #fff;
  --texto: #1c1c1b;
  --texto2: #55534e;
  --texto3: #888785;
  --font-sans: 'IBM Plex Sans', system-ui, sans-serif;
  --font-serif: 'IBM Plex Serif', Georgia, serif;
  --radio: 6px;
  --radio-lg: 10px;
  --sombra: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =============================================
   BARRA SUPERIOR
   ============================================= */
.topbar {
  background: var(--rojo);
  color: #fff;
  font-size: 12px;
  padding: 7px 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-info span { display: flex; align-items: center; gap: 5px; opacity: .92; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  color: #fff;
  font-size: 11px;
  opacity: .8;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 3px;
  transition: opacity .2s;
}
.topbar-social a:hover { opacity: 1; }

/* =============================================
   NAVEGACIÓN
   ============================================= */
nav.site-nav {
  background: var(--negro);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gris-oscuro);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.nav-logo-icon--img {
  border-radius: 8px;
  display: block;
  object-fit: cover;
}
.nav-logo-txt strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.nav-logo-txt span {
  color: #777;
  font-size: 11px;
}

/* Menú de WordPress */
.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 0;
}
.main-navigation ul li a {
  display: block;
  color: #bbb;
  font-size: 13px;
  padding: 22px 14px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-menu-ancestor > a {
  color: #fff;
  border-color: var(--rojo);
}
/* Botón CTA de afiliación en el menú */
.main-navigation ul li.menu-item-afiliate > a {
  background: var(--rojo);
  color: #fff !important;
  border-bottom: none !important;
  padding: 8px 16px !important;
  border-radius: var(--radio);
  margin-left: 8px;
  transition: background .2s !important;
}
.main-navigation ul li.menu-item-afiliate > a:hover {
  background: var(--rojo-oscuro) !important;
}

/* Submenús */
.main-navigation ul ul {
  display: none;
  position: absolute;
  background: var(--negro2);
  border: 1px solid var(--gris-oscuro);
  border-radius: var(--radio);
  min-width: 180px;
  padding: .5rem 0;
  z-index: 9999;
  flex-direction: column;
}
.main-navigation ul li { position: relative; }
.main-navigation ul li:hover > ul { display: flex; }
.main-navigation ul ul li a {
  padding: 8px 16px;
  border-bottom: none !important;
  border-left: 2px solid transparent;
  font-size: 13px;
}
.main-navigation ul ul li a:hover {
  border-left-color: var(--rojo);
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #ccc;
  transition: .3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--negro);
  color: #fff;
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 48px,
    rgba(204,34,0,.035) 48px,
    rgba(204,34,0,.035) 49px
  );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--rojo);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(204,34,0,.5);
  color: #f99;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: italic; color: #f66; }

.hero-desc {
  color: #999;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radio);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.btn-rojo { background: var(--rojo); color: #fff; }
.btn-rojo:hover { background: var(--rojo-oscuro); }
.btn-outline {
  background: transparent;
  color: #ccc;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-outline:hover { background: rgba(255,255,255,.07); color: #fff; }

.hero-datos {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-dato strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--rojo);
  font-family: var(--font-serif);
}
.hero-dato span { font-size: 12px; color: #666; }

/* Panel lateral hero */
.hero-panel {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radio-lg);
  padding: 2rem;
}
.hero-panel-title {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 1.5rem;
}
.hero-news-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-news-tag {
  display: inline-block;
  font-size: 10px;
  color: #f99;
  border: 1px solid rgba(204,34,0,.4);
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-news-titulo {
  font-size: 14px;
  color: #ddd;
  line-height: 1.4;
  margin-bottom: .3rem;
}
.hero-news-titulo a:hover { color: #fff; }
.hero-news-fecha { font-size: 11px; color: #555; }

/* =============================================
   SECCIONES GENERALES
   ============================================= */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: .6rem;
}
.section-titulo {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: .7rem;
  letter-spacing: -.02em;
}
.section-sub {
  color: var(--texto2);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 540px;
  line-height: 1.7;
}

/* =============================================
   NOTICIAS
   ============================================= */
.noticias-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.ver-todas {
  font-size: 13px;
  color: var(--rojo);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
  white-space: nowrap;
}
.ver-todas:hover { gap: 8px; }

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.noticia-card {
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  background: var(--blanco);
}
.noticia-card:hover {
  border-color: #c5c2bc;
  box-shadow: var(--sombra);
  transform: translateY(-2px);
}
.noticia-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--gris-claro);
}
.noticia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.noticia-card:hover .noticia-img img { transform: scale(1.04); }
.noticia-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #f0ede7 0%, #e8e5df 100%);
}
.noticia-cat {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--rojo);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.noticia-body { padding: 1.25rem 1.5rem 1.5rem; }
.noticia-fecha { font-size: 11px; color: var(--texto3); margin-bottom: .5rem; }
.noticia-titulo {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: .75rem;
  color: var(--texto);
}
.noticia-titulo a:hover { color: var(--rojo); }
.noticia-resumen { font-size: 13px; color: var(--texto2); line-height: 1.6; }

/* =============================================
   SECCIONES SINDICALES
   ============================================= */
.secciones-bg { background: var(--gris-claro); }
.secciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.seccion-item {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.seccion-item:hover {
  border-color: var(--rojo);
  box-shadow: 0 0 0 3px rgba(204,34,0,.06);
}
.seccion-icono {
  width: 36px; height: 36px;
  background: var(--gris-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.seccion-txt strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; color: var(--texto); }
.seccion-txt span { font-size: 12px; color: var(--texto3); }

/* =============================================
   AFILIACIÓN
   ============================================= */
.afilia-section {
  background: var(--negro);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.afilia-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(204,34,0,.03) 100px, rgba(204,34,0,.03) 101px);
  pointer-events: none;
}
.afilia-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.afilia-section .section-eyebrow { color: #f99; }
.afilia-section .section-titulo { color: #fff; margin-bottom: 1rem; }
.afilia-section .section-sub { color: #888; margin-inline: auto; }

.afilia-pasos {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.afilia-paso { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #aaa; }
.afilia-paso-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--rojo);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =============================================
   FORMACIÓN
   ============================================= */
.formacion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.formacion-card {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-lg);
  padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.formacion-card:hover { border-color: #c5c2bc; box-shadow: var(--sombra); }
.formacion-icono { font-size: 2rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.formacion-titulo { font-size: 16px; font-weight: 600; margin-bottom: .4rem; }
.formacion-desc { font-size: 13px; color: var(--texto2); line-height: 1.6; margin-bottom: .75rem; }
.formacion-link { font-size: 12px; color: var(--rojo); font-weight: 500; }
.formacion-link:hover { text-decoration: underline; }

/* =============================================
   CONTACTO
   ============================================= */
.contacto-bg { background: var(--gris-claro); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contacto-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gris-borde);
}
.contacto-info-item:last-child { border-bottom: none; }
.contacto-icono {
  width: 40px; height: 40px;
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contacto-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--texto3); margin-bottom: 3px; }
.contacto-valor { font-size: 15px; font-weight: 500; color: var(--texto); }
.contacto-valor a:hover { color: var(--rojo); }
.contacto-sub { font-size: 12px; color: var(--texto3); margin-top: 2px; }

.mapa-placeholder {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--texto3);
  font-size: 14px;
}
.mapa-placeholder a { color: var(--rojo); font-size: 13px; font-weight: 500; }

/* =============================================
   PÁGINA ÚNICA (single.php) y ARCHIVO
   ============================================= */
.page-header {
  background: var(--negro);
  color: #fff;
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--gris-oscuro);
}
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-header .entry-category {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.entry-meta { font-size: 13px; color: #666; display: flex; gap: 1rem; flex-wrap: wrap; }
.entry-meta a { color: #888; }
.entry-meta a:hover { color: #ccc; }

.content-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.content-area.no-sidebar { grid-template-columns: 1fr; max-width: 760px; }

/* Contenido de entrada */
.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--texto);
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  font-family: var(--font-serif);
  margin: 2rem 0 .75rem;
  letter-spacing: -.01em;
}
.entry-content h2 { font-size: 1.6rem; }
.entry-content h3 { font-size: 1.3rem; }
.entry-content p { margin-bottom: 1.4rem; }
.entry-content ul, .entry-content ol { margin: 0 0 1.4rem 1.5rem; }
.entry-content li { margin-bottom: .4rem; }
.entry-content a { color: var(--rojo); text-decoration: underline; }
.entry-content blockquote {
  border-left: 3px solid var(--rojo);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--gris-claro);
  border-radius: 0 var(--radio) var(--radio) 0;
  font-style: italic;
  color: var(--texto2);
}
.entry-content img {
  border-radius: var(--radio);
  margin: 1.5rem 0;
  max-width: 100%;
}
.entry-content figure { margin: 1.5rem 0; }
.entry-content figcaption { font-size: 12px; color: var(--texto3); margin-top: .5rem; text-align: center; }

/* ── Tablas en páginas de contenido ── */
/* Tablas: base desktop */
.entry-content .wp-block-table,
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 14px;
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
}
.entry-content .wp-block-table figure { margin: 0; }
.entry-content .wp-block-table figure table,
.entry-content .table-scroll-wrap table {
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
}
/* Cabecera */
.entry-content table thead tr,
.entry-content .wp-block-table thead tr {
  background: var(--negro);
  color: #fff;
}
.entry-content table thead th,
.entry-content .wp-block-table thead th {
  padding: 13px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ccc;
  border: none;
  white-space: nowrap;
}
.entry-content table thead th:first-child,
.entry-content .wp-block-table thead th:first-child {
  border-left: 3px solid var(--rojo);
}
/* Filas */
.entry-content table tbody tr,
.entry-content .wp-block-table tbody tr {
  border-bottom: 1px solid var(--gris-borde);
  transition: background .15s;
}
.entry-content table tbody tr:nth-child(even),
.entry-content .wp-block-table tbody tr:nth-child(even) {
  background: var(--gris-claro);
}
.entry-content table tbody tr:hover,
.entry-content .wp-block-table tbody tr:hover {
  background: #f7e8e5;
}
.entry-content table tbody td,
.entry-content .wp-block-table tbody td {
  padding: 12px 16px;
  vertical-align: top;
  color: var(--texto2);
  border: none;
  line-height: 1.55;
}
.entry-content table tbody td:first-child,
.entry-content .wp-block-table tbody td:first-child {
  font-weight: 600;
  color: var(--texto);
  border-left: 3px solid transparent;
}
.entry-content table tbody tr:hover td:first-child,
.entry-content .wp-block-table tbody tr:hover td:first-child {
  border-left-color: var(--rojo);
}
/* Links dentro de celdas */
.entry-content table td a,
.entry-content .wp-block-table td a {
  color: var(--rojo);
  text-decoration: none;
  word-break: break-all;
}
.entry-content table td a:hover,
.entry-content .wp-block-table td a:hover {
  text-decoration: underline;
}
/* Emojis/iconos candado */
.entry-content table td .wp-block-table__cell-content,
.entry-content table td {
  font-variant-numeric: tabular-nums;
}
/* =============================================
   TABLAS RESPONSIVE — TARJETAS EN MÓVIL
   Cada fila se convierte en una tarjeta etiqueta|valor
   ============================================= */
@media (max-width: 768px) {
  /* Ocultar cabecera (se muestra como data-label en cada celda) */
  .entry-content table thead,
  .entry-content .wp-block-table thead { display: none !important; }

  /* Tabla y tbody en flujo de bloque */
  .entry-content table,
  .entry-content .wp-block-table table {
    display: block;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    margin: 0;
  }
  .entry-content table tbody,
  .entry-content .wp-block-table tbody { display: block; }

  /* Cada fila = tarjeta */
  .entry-content table tbody tr,
  .entry-content .wp-block-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border-radius: var(--radio);
    border: 1px solid var(--gris-borde);
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,.07);
    background: var(--blanco) !important;
  }

  /* Cada celda: dos columnas (etiqueta | valor) */
  .entry-content table tbody td,
  .entry-content .wp-block-table tbody td {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 .75rem;
    align-items: baseline;
    padding: 9px 14px;
    font-size: 13px;
    border-bottom: 1px solid var(--gris-borde);
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
  }
  .entry-content table tbody td:last-child,
  .entry-content .wp-block-table tbody td:last-child { border-bottom: none; }

  /* Etiqueta de columna via data-label */
  .entry-content table tbody td::before,
  .entry-content .wp-block-table tbody td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--texto3);
    white-space: nowrap;
    padding-top: 2px;
  }

  /* Primera celda: nombre de sección, destacado a negro */
  .entry-content table tbody tr td:first-child,
  .entry-content .wp-block-table tbody tr td:first-child {
    grid-template-columns: 1fr;
    background: var(--negro);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-left: 4px solid var(--rojo);
    border-bottom: none;
    padding: 11px 14px;
  }
  .entry-content table tbody tr td:first-child::before,
  .entry-content .wp-block-table tbody tr td:first-child::before { display: none; }

  /* Wrapper Gutenberg: sin estilos extra en móvil */
  .entry-content .wp-block-table {
    box-shadow: none;
    border-radius: 0;
    margin: 2rem 0;
    overflow: visible;
  }
}



/* Sidebar */
.sidebar { position: sticky; top: 80px; }
.widget {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.widget-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--texto3);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--gris-borde);
}
.widget ul { list-style: none; }
.widget ul li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--gris-borde);
  font-size: 13px;
}
.widget ul li:last-child { border-bottom: none; padding-bottom: 0; }
.widget ul li a { color: var(--texto2); transition: color .2s; }
.widget ul li a:hover { color: var(--rojo); }

/* Archivo / Blog */
.archive-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.posts-list { display: grid; gap: 1.5rem; }

/* Paginación */
.pagination {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.pagination a.page-numbers,
.pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 8px;
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  font-size: 13px;
  color: var(--texto2);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.pagination a.page-numbers:hover,
.pagination span.page-numbers.current {
  background: var(--rojo);
  color: #fff;
  border-color: var(--rojo);
}
.pagination span.page-numbers.dots {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 2px;
  color: var(--texto2);
}
.pagination a.prev.page-numbers,
.pagination a.next.page-numbers {
  padding: 0 14px;
}

/* =============================================
   FOOTER
   ============================================= */
footer.site-footer {
  background: var(--negro2);
  color: #888;
  font-size: 13px;
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2rem;
}
.footer-marca strong { display: block; color: #ddd; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.footer-marca span { font-size: 12px; color: #555; }
.footer-separador { width: 32px; height: 2px; background: var(--rojo); margin: 1rem 0; }
.footer-desc { font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-links-sociales { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-btn {
  font-size: 11px; color: #777;
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 10px;
  border-radius: 3px;
  transition: color .2s, border-color .2s;
}
.footer-social-btn:hover { color: #ccc; border-color: rgba(255,255,255,.25); }

.footer-col h4 {
  color: #ccc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li a { display: block; color: #666; padding: 3px 0; transition: color .2s; line-height: 1.8; }
.footer-col ul li a:hover { color: #ccc; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: 12px;
  color: #444;
}
.footer-bottom span { color: #555; }

/* =============================================
   BARRA ADMIN WORDPRESS
   ============================================= */
.admin-bar nav.site-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav.site-nav { top: 46px; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-panel { display: none; }
  .noticias-grid { grid-template-columns: 1fr 1fr; }
  .formacion-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-area { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .main-navigation { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--negro); padding: 1rem 0; border-bottom: 1px solid #333; }
  .main-navigation.open { display: flex; }
  .main-navigation ul { flex-direction: column; }
  .main-navigation ul li a { padding: 12px 2rem; border-bottom: none !important; }
  .nav-toggle { display: flex; }
  .noticias-grid { grid-template-columns: 1fr; }
  .hero-datos { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .section { padding: 3rem 1.25rem; }

  /* Footer móvil mejorado */
  footer.site-footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-col h4 { font-size: 11px; margin-bottom: .6rem; }
  .footer-col ul li a { font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; padding-top: 1rem; }
  .footer-links-sociales { gap: 6px; }
  .footer-social-btn { font-size: 11px; padding: 4px 10px; }

  /* Seguridad: ocultar cualquier widget legacy o embed que quedara */
  .footer-marca .widget,
  .footer-marca .widget-title { display: none !important; }
  footer.site-footer iframe,
  footer.site-footer embed { display: none !important; }

  /* Evitar desbordamiento de texto largo */
  .site-footer * { word-break: break-word; overflow-wrap: break-word; }
}

/* =============================================
   ANIMACIONES
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeInUp .5s ease both; }
.hero h1 { animation: fadeInUp .6s .1s ease both; }
.hero-desc { animation: fadeInUp .6s .2s ease both; }
.hero-btns { animation: fadeInUp .6s .3s ease both; }
.hero-datos { animation: fadeInUp .6s .4s ease both; }
.hero-panel { animation: fadeInUp .7s .2s ease both; }


/* =============================================================
   BARRA LATERAL DESKTOP (colapsable · expande al hover)
   ============================================================= */
:root {
  --rail-w-collapsed: 64px;
  --rail-w-expanded: 290px;
  --rail-bg-1: #0f0f0e;
  --rail-bg-2: #17171508;
  --rail-border: #242422;
  --rail-border-soft: #1d1d1b;
  --rail-text: #e8e8e5;
  --rail-text-dim: #8c8c87;
  --rail-text-faint: #54544e;
  --rail-accent: #d42a1a;
  --rail-accent-dark: #8e1a10;
  --rail-accent-soft: rgba(212,42,26,.14);
  --rail-hover: rgba(255,255,255,.05);
  --rail-ease: cubic-bezier(.4,0,.2,1);
}

/* La barra lateral solo aparece en desktop */
@media (min-width: 901px) {
  body {
    padding-left: var(--rail-w-collapsed);
    transition: padding-left .35s var(--rail-ease);
  }
  .admin-bar .rail-sidebar { top: 32px; height: calc(100vh - 32px); }
}

.rail-sidebar {
  display: none;
}

@media (min-width: 901px) {
  .rail-sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--rail-w-collapsed);
    height: 100vh;
    background:
      radial-gradient(140% 60% at 0% 0%, rgba(212,42,26,.08), transparent 55%),
      linear-gradient(180deg, #0f0f0e 0%, #161614 100%);
    border-right: 1px solid var(--rail-border);
    box-shadow: 1px 0 0 rgba(255,255,255,.02), 8px 0 24px -14px rgba(0,0,0,.55);
    z-index: 1100;
    overflow: hidden;
    transition: width .35s var(--rail-ease), box-shadow .35s var(--rail-ease);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--rail-text);
    will-change: width;
  }

  .rail-sidebar:hover,
  .rail-sidebar:focus-within {
    width: var(--rail-w-expanded);
    box-shadow: 12px 0 40px -10px rgba(0,0,0,.65);
  }

  .rail-inner {
    width: var(--rail-w-expanded);
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: .4rem 0 1rem;
    scrollbar-width: thin;
    scrollbar-color: #2a2a28 transparent;
  }
  .rail-inner::-webkit-scrollbar { width: 6px; }
  .rail-inner::-webkit-scrollbar-track { background: transparent; }
  .rail-inner::-webkit-scrollbar-thumb {
    background: #23231f;
    border-radius: 3px;
    background-clip: padding-box;
    border: 1px solid transparent;
  }
  .rail-inner::-webkit-scrollbar-thumb:hover { background: #33332f; }

  /* Brand */
  .rail-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 1.1rem 1rem calc((var(--rail-w-collapsed) - 40px) / 2);
    text-decoration: none;
    border-bottom: 1px solid var(--rail-border-soft);
    position: relative;
    margin-bottom: .5rem;
  }
  .rail-brand::after {
    content: '';
    position: absolute;
    left: 1rem; right: 1rem; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,42,26,.4), transparent);
  }
  .rail-brand-icon {
    width: 40px; height: 40px;
    border-radius: 9px;
    box-shadow: 0 4px 14px -4px rgba(212,42,26,.55);
    flex-shrink: 0;
  }
  .rail-brand-icon--img {
    display: block;
    object-fit: cover;
  }
  .rail-brand-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s var(--rail-ease) .05s, transform .3s var(--rail-ease) .05s;
  }
  .rail-brand-txt strong {
    color: var(--rail-text);
    font-size: 13px;
    font-weight: 700;
  }
  .rail-brand-txt em {
    color: var(--rail-text-faint);
    font-size: 10.5px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .3px;
    text-transform: uppercase;
  }

  /* Etiquetas de sección */
  .rail-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: .9rem 1.25rem .45rem;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--rail-text-faint);
    white-space: nowrap;
    opacity: 0;
    transition: opacity .25s var(--rail-ease) .1s;
  }
  .rail-section-label span {
    flex-shrink: 0;
  }
  .rail-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--rail-border), transparent);
  }

  /* Menú */
  .rail-menu {
    list-style: none;
    padding: 0 .55rem;
    margin: 0;
  }
  .rail-item { position: relative; }
  .rail-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: .65rem .65rem;
    margin: 2px 0;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--rail-text-dim);
    text-decoration: none;
    border-radius: 8px;
    transition: color .18s, background .18s, padding-left .2s;
    white-space: nowrap;
  }
  .rail-icon {
    width: 30px;
    flex-shrink: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1;
    filter: grayscale(.25);
    transition: filter .18s, transform .18s;
  }
  .rail-label {
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .22s var(--rail-ease) .08s, transform .28s var(--rail-ease) .08s;
  }
  .rail-item a:hover {
    color: var(--rail-text);
    background: var(--rail-hover);
  }
  .rail-item a:hover .rail-icon { filter: none; transform: scale(1.08); }
  .rail-item.is-active > a {
    color: #fff;
    background: linear-gradient(90deg, var(--rail-accent-soft), transparent);
  }
  .rail-item.is-active > a::before {
    content: '';
    position: absolute;
    left: -.55rem;
    top: 22%; bottom: 22%;
    width: 3px;
    background: var(--rail-accent);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px rgba(212,42,26,.55);
  }
  .rail-item.is-active .rail-icon { filter: none; }

  /* Divisor */
  .rail-divider {
    height: 1px;
    margin: .85rem 1.25rem;
    background: linear-gradient(90deg, transparent, var(--rail-border) 20%, var(--rail-border) 80%, transparent);
    opacity: 0;
    transition: opacity .25s var(--rail-ease);
  }

  /* Contenido que solo aparece expandido */
  .rail-expand-only {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .25s var(--rail-ease), transform .3s var(--rail-ease);
    pointer-events: none;
  }

  /* Estado expandido: revelar etiquetas y widgets */
  .rail-sidebar:hover .rail-brand-txt,
  .rail-sidebar:focus-within .rail-brand-txt,
  .rail-sidebar:hover .rail-label,
  .rail-sidebar:focus-within .rail-label {
    opacity: 1;
    transform: translateX(0);
  }
  .rail-sidebar:hover .rail-section-label,
  .rail-sidebar:focus-within .rail-section-label,
  .rail-sidebar:hover .rail-divider,
  .rail-sidebar:focus-within .rail-divider {
    opacity: 1;
  }
  .rail-sidebar:hover .rail-expand-only,
  .rail-sidebar:focus-within .rail-expand-only {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    transition-delay: .08s;
  }

  /* Últimas entradas */
  .rail-posts {
    list-style: none;
    padding: 0 1rem;
    margin: 0;
  }
  .rail-posts li a {
    display: block;
    padding: .55rem .55rem;
    border-radius: 6px;
    text-decoration: none;
    border-bottom: 1px solid var(--rail-border-soft);
    transition: background .15s;
  }
  .rail-posts li:last-child a { border-bottom: none; }
  .rail-posts li a:hover { background: var(--rail-hover); }
  .rail-post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--rail-text-dim);
    line-height: 1.4;
    margin-bottom: 4px;
    white-space: normal;
  }
  .rail-posts li a:hover .rail-post-title { color: var(--rail-text); }
  .rail-post-date {
    display: block;
    font-size: 9.5px;
    color: var(--rail-text-faint);
    text-transform: uppercase;
    letter-spacing: .4px;
  }

  /* CTA */
  .rail-cta {
    margin: .25rem 1rem;
    padding: 1rem .9rem;
    background:
      radial-gradient(140% 80% at 0% 0%, rgba(212,42,26,.22), transparent 60%),
      linear-gradient(135deg, rgba(212,42,26,.1), rgba(212,42,26,.03));
    border: 1px solid rgba(212,42,26,.3);
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .rail-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  }
  .rail-cta-icon {
    font-size: 1.5rem;
    margin-bottom: .35rem;
    filter: drop-shadow(0 2px 5px rgba(212,42,26,.4));
  }
  .rail-cta-txt {
    font-size: 11.5px;
    color: var(--rail-text);
    margin-bottom: .7rem;
    font-weight: 600;
    line-height: 1.35;
  }
  .rail-cta-btn {
    display: inline-block;
    background: linear-gradient(180deg, var(--rail-accent), #a82012);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 22px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px -4px rgba(212,42,26,.55), inset 0 1px 0 rgba(255,255,255,.2);
    transition: transform .2s, box-shadow .2s;
  }
  .rail-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px -4px rgba(212,42,26,.7), inset 0 1px 0 rgba(255,255,255,.25);
  }

  /* Contacto */
  .rail-contact {
    padding: 0 1.1rem 1.5rem;
  }
  .rail-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: .35rem 0;
    font-size: 11.5px;
    color: var(--rail-text-dim);
    line-height: 1.4;
  }
  .rail-ci-icon {
    flex-shrink: 0;
    width: 18px;
    font-size: 12px;
    opacity: .7;
  }
  .rail-contact-item a {
    color: var(--rail-text-dim);
    text-decoration: none;
    transition: color .15s;
  }
  .rail-contact-item a:hover { color: var(--rail-accent); }
}

/* =============================================================
   CALENDARIO — Componente compartido
   ============================================================= */
.cgt-calendar {
  padding: .85rem .9rem .9rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--rail-border-soft, #1d1d1b);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  font-family: 'Inter', -apple-system, sans-serif;
}
.cgt-calendar--sidebar { margin: 0 .9rem; }

.cgt-calendar .cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.cgt-calendar .cal-month-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--rail-text, #e8e8e5);
  letter-spacing: .3px;
}
.cgt-calendar .cal-today-pill {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--rail-accent, #d42a1a), var(--rail-accent-dark, #8e1a10));
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: .3px;
  box-shadow: 0 2px 8px -2px rgba(212,42,26,.5);
}
.cgt-calendar .cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.cgt-calendar .cal-weekdays span {
  text-align: center;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--rail-text-faint, #54544e);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 0;
}
.cgt-calendar .cal-weekdays .we { color: #8a3b33; }
.cgt-calendar .cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cgt-calendar .cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--rail-text-dim, #8c8c87);
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  transition: background .15s, transform .15s, color .15s;
}
.cgt-calendar .cal-day.empty { opacity: 0; pointer-events: none; }
.cgt-calendar .cal-day.weekend { color: var(--rail-text-faint, #54544e); }
.cgt-calendar .cal-day.festivo {
  color: #ff8a7a;
  background: rgba(212,42,26,.06);
}
.cgt-calendar .cal-day.has-post {
  color: var(--rail-text, #e8e8e5);
  font-weight: 600;
  background: rgba(255,255,255,.04);
}
.cgt-calendar .cal-day.has-post::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--rail-accent, #d42a1a);
  box-shadow: 0 0 4px rgba(212,42,26,.8);
}
a.cal-day.has-post:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}
.cgt-calendar .cal-day.today {
  color: #fff !important;
  background: linear-gradient(135deg, var(--rail-accent, #d42a1a), var(--rail-accent-dark, #8e1a10));
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(212,42,26,.45), inset 0 1px 0 rgba(255,255,255,.2);
}
.cgt-calendar .cal-day.today::after { background: #fff; box-shadow: none; }

.cgt-calendar .cal-legend {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: .8rem;
  padding-top: .6rem;
  border-top: 1px solid var(--rail-border-soft, #1d1d1b);
}
.cgt-calendar .cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  color: var(--rail-text-faint, #54544e);
  font-weight: 500;
}
.cgt-calendar .cal-legend-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cgt-calendar .cal-legend-dot.dot-today { background: var(--rail-accent, #d42a1a); box-shadow: 0 0 6px rgba(212,42,26,.6); }
.cgt-calendar .cal-legend-dot.dot-post { background: #aaa; }
.cgt-calendar .cal-legend-dot.dot-festivo { background: #ff8a7a; }

/* =============================================================
   CALENDARIO MÓVIL — sección previa al footer
   ============================================================= */
.mobile-calendar-section {
  display: none;
  background: linear-gradient(180deg, #0d0d0c, #131311);
  border-top: 1px solid #1d1d1b;
  padding: 2rem 1rem 2.5rem;
}
.mobile-calendar-inner {
  max-width: 420px;
  margin: 0 auto;
}
.mobile-calendar-head {
  text-align: center;
  margin-bottom: 1.25rem;
}
.mobile-calendar-head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e8e8e5;
  margin: 0 0 .35rem;
  letter-spacing: .3px;
}
.mobile-calendar-head p {
  font-size: .78rem;
  color: #6e6e68;
  margin: 0;
  letter-spacing: .2px;
}
.cgt-calendar--mobile {
  background: rgba(255,255,255,.025);
  border-color: #262624;
  padding: 1rem 1rem 1.1rem;
}
.cgt-calendar--mobile .cal-month-name { font-size: 13.5px; }
.cgt-calendar--mobile .cal-day { font-size: 12.5px; }
.cgt-calendar--mobile .cal-weekdays span { font-size: 10px; }

@media (max-width: 900px) {
  .mobile-calendar-section { display: block; }
}

/* =============================================
   SVG ICON REPLACEMENTS (emoji fallback fix)
   ============================================= */
.nav-svg-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.contact-svg-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.rail-ci-icon .contact-svg-icon,
.rail-ci-icon svg {
  width: 16px;
  height: 16px;
}
.mapa-placeholder svg {
  width: 3rem;
  height: 3rem;
}
/* Topbar SVG icons */
.topbar-info span svg {
  width: 14px;
  height: 14px;
  opacity: .85;
}
