/* ============================================================
   ACREDITACIONES — INDUSTRIAS ANCE
   Grid dinámico vía acred-global.js
   Acento: #00049E único para todo el sitio, sin overrides
   por microsite (antes: verde Alimentos/Sustentabilidad,
   turquesa Salud, celeste STPS — ya eliminados)
   ============================================================ */
.ance-acred {
  background: #f8f8f8;
  padding: 7rem 5rem;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.ance-acred-titulo {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.ance-acred-titulo span {
  font-weight: 300;
  color: #a0a0a0;
}
.ance-acred-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.ance-acred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2.5rem;
  position: relative;
}
.ance-acred-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(0, 4, 158, 0.2);
}
.ance-acred-icon { margin-bottom: 1.2rem; }
.ance-acred-nombre {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.ance-acred-dato {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}
.ance-acred-badge {
  display: inline-block;
  margin-top: 0.8rem;
  background: rgba(0, 4, 158, 0.08);
  border: 1px solid rgba(0, 4, 158, 0.3);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #00049e;
  letter-spacing: 0.5px;
}
.ance-acred-item > p:last-child { margin-top: auto; }
@media (max-width: 1024px) {
  .ance-acred-item:not(:last-child)::after { display: none; }
  .ance-acred-item { border-bottom: 1px solid rgba(0,4,158,0.15); padding-bottom: 2rem; }
  .ance-acred-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .ance-acred { padding: 3rem 1.5rem; }
  .ance-acred-item { padding: 0 0 2rem; border-bottom: 1px solid rgba(0,4,158,0.15); }
  .ance-acred-item:not(:last-child)::after { display: none; }
  .ance-acred-item:last-child { border-bottom: none; }
}

/* AJUSTE: fuerza azul de marca en los iconos SVG, sin importar
   el stroke/fill inline que traiga cada ícono en el HTML */
.ance-acred-icon svg {
  stroke: #00049e !important;
}
.ance-acred-icon svg [fill]:not([fill="none"]) {
  fill: #00049e !important;
}