/* Estructura por secciones H2 en Our People */
.profiles h2, .profiles h3 {  /* Tu H2 de Partners/Associates/etc. */
  clear: both;  /* Fuerza salto de línea después del H2 */
  margin: 40px 0 20px 0;  /* Espacio generoso arriba/abajo */
  text-align: left;  /* Centrado opcional */
  font-size: 24px;
  color: #731a1e;
}

.profiles .items-row {  /* Cada grupo de tarjetas después de H2 */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;  /* Espacio uniforme entre tarjetas */
  margin-bottom: 0;  /* Limpia margen inferior */
}

.profiles .our-people-circle {
  flex: 0 0 calc(33.333% - 14px);  /* Máx 3 por fila */
  float: none;
  margin: 0;
  box-sizing: border-box;
}

/* Móvil: 1 por fila en cada sección */
@media only screen and (max-width: 620px) {
  .profiles .our-people-circle {
    flex: 0 0 100%;
  }
  .profiles h2, .profiles h3 {
    margin-top: 30px;
  }
  
}

@media only screen and (max-width: 620px) {
  .profiles .items-row {
    justify-content: flex-start !important;  /* Izquierda total */
    padding-left: 10px !important;  /* Pequeño margen si quieres */
  }
  
  .profiles .our-people-circle {
    margin-left: 0 !important;
    margin-right: 10px !important;  /* Espacio entre tarjetas */
  }
}