
  /* Estilo general de la tarjeta para los proefesionales del index*/
  .team .member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 100%;      /* mismas alturas */
    width: 100%;       /* ocupa todo el ancho de su col */
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  }
  
  .team .member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .team .member .info {
    flex-grow: 1;
    max-height: 150px;
    overflow-y: auto;
    text-align: left;
    width: 100%;       /* fuerza que el texto ocupe el ancho de la card */
  }
  
  .team .member h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
  
  .team .member span {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
  }
  
  