

/* =====    QUIENES SOMOS     ===== */

.contenedor {
  max-width: 100%; /* No permite que el contenedor supere el ancho de pantalla */
  padding: 0.625rem;    /* Espaciado interno seguro */
}


.people-list{
  background:#fff;
  padding:2.5rem;
  border-radius:0.25rem;
  box-shadow:0 0.25rem 1.125rem rgba(0,0,0,.06);
}

.people-list ul{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:0.875rem 2rem;
}

.people-list li{
  font-size:0.875rem;
  line-height:1;
  border-bottom:0.0625rem solid #eee;
  padding-bottom:0.625rem;
}
.people-list div{
  display: flex;
  overflow: hidden;
  align-items: center; /* Centrado vertical */
  justify-content: left; /* Centrado horizontal (opcional) */
  height: 10vh;  /* Altura necesaria para ver el centrado */
}
.people-list img{
  height:3.125rem;
  width:auto;
  margin-right: 0.625rem;
  vertical-align:middle;
  border-radius: 12%;
}

.people-list strong{
  display:block;
  font-size:0.9375rem;
  margin-bottom:0.25rem;
}

@media(max-width:768px){
    .page-box {
      margin: 0 0.9375rem 0 0.9375rem;
      padding: 0;
    }
    .page-box h1 {
      line-height: 1.0;
      padding-top: 1.875rem;
    }
    .page-box h3 {
      line-height: 1.2;
    }
    
    .people-list{
      background:#fff;
      margin: 0rem;
      padding: 0 0 0 0;
      border-radius:0.25rem;
      box-shadow:0 0.25rem 1.125rem rgba(0,0,0,.06);
      overflow: hidden;
      /* word-wrap: break-word; /* O overflow-wrap: break-word;
      overflow-wrap: break-word; */
    }
    .people-list div{
      display: flex;
      overflow: hidden;
      /*word-wrap: break-word;*/ /* O overflow-wrap: break-word; */
      /* overflow-wrap: break-word; */
      align-items: center;  /*Centrado vertical;*/
      /*justify-content: left;*/ /* Centrado horizontal (opcional) */
      height: 10vh;  /* Altura necesaria para ver el centrado */
    }
    .people-list div p {
      /* padding-right: 3.625rem; Ajusta el valor según tus necesidades */
      font-size: 1.125rem;
      color: #1f1f1f;
    }
    .people-list div strong {
      font-size: 1.125rem;
      font-weight: bold;
      color: #202020;
    }
    .people-list img{
      height:4.375rem;
      width:auto;
      margin-right: 0.625rem;
      vertical-align:middle;
      border-radius: 12%;
    }
 
    .people-list ul{
      padding: 0 2.625rem 0 0.625rem;
      margin: 0rem;
    }

    .people-list li{
      /* padding: 0 0.625rem 0 0.625rem; */
      margin: 0rem;
    }

}

/* =====  FIN QUIENES SOMOS     ===== */

/* ===== TABLA ===== */
   .tabla-div {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
        border: 0.0625rem solid #ccc;
        width: 100%;
        max-width: 50rem;
    }
    .celda {
        border: 0.0625rem solid #eee;
        padding: 0.625rem;
        text-align: left;
    }
    .cabecera {
        background-color: #f2f2f2;
        font-weight: bold;
    }
    .cabecera2 {
        font-weight: bold;
        text-align: left;
    }

