.socioListado {
  display: flex;
  width: 100%;
  padding: 75px 20px 100px 20px;
  justify-content: center;
  background-color:#F3F5FA;
}

.socioListadoContainer {
  display: grid;
  /* 3 columnas para evitar la sensación de "lista infinita" */
  grid-template-columns: repeat(3, 1fr); 
  width: 100%;
  max-width: 1095px;
  gap: 20px 50px; /* 20px entre filas, 50px entre columnas para que respire */
}

.socioListadoCaja {
  display: flex;
  align-items: center;
  padding: 15px 0 15px 25px; /* Espacio interno para que el texto no pegue a la línea */
  background: none;
  box-shadow: none;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;

  /* EL BORDE IZQUIERDO REFORZADO */
  /* Un gris medio para que se note la estructura sin el hover */
  border-left: 2.5px solid #e0e0e0; 
}

.socioListadoName {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-size: 14.56px;
  line-height: 17.8px;
  letter-spacing: -0.015em;
  color: #666;
  position: relative;
  transition: all 0.3s ease;
}

/* EL PUNTITO (Viñeta) */
.socioListadoName::before {
  content: "•";
  position: absolute;
  left: -18px; /* Ajustado para que quede entre la línea y el nombre */
  color: #678ee8;
  opacity: 0;
  font-size: 20px;
  transition: opacity 0.3s ease;
}

/* --- EFECTO HOVER --- */
.socioListadoCaja:hover {
  /* La línea se vuelve más fuerte y de color al tocar la zona */
  border-left: 2.5px solid #678ee8;
  background-color: transparent; /* Aseguramos que no parezca botón */
}

.socioListadoCaja:hover .socioListadoName {
  color: #000;
  /* Subrayado con aire (bajo) */
  text-decoration: none;
  text-underline-offset: 10px; 
  text-decoration-thickness: 1.5px;
}

.socioListadoCaja:hover .socioListadoName::before {
  opacity: 1; /* Aparece el puntito */
}

/* Limpieza de efectos anteriores de 'botón' */
.socioListadoCaja:hover {
  transform: none;
}

/* Responsivo para que no se amontone en pantallas chicas */
@media (max-width: 900px) {
  .socioListadoContainer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .socioListadoContainer { grid-template-columns: 1fr; }
}


@media(max-width:700px){


.socioListado{

  padding: 40px 20px;

}

.socioListadoName::before {
opacity: 1;
}


}