/* css/facilitadores.css */

/* Grid contenedor de facilitadores */
.facilitadores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

/* Nombre (enlace) */
.facilitadores-grid .f-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A66C2;           /* LinkedIn blue */
  text-decoration: none;
  transition: color .2s;
}

.facilitadores-grid .f-name:hover {
  color: #004182;           /* azul más oscuro al pasar */
  text-decoration: underline;
}

/* Rol */
.facilitadores-grid .f-role {
  font-size: 0.875rem;
  color: #555;
  margin-top: 0.25rem;
}
