

.profile-container {
  display: flex;
  justify-content: space-around;
  height: auto;
  flex-wrap: wrap;
  width: 85%;
  flex-direction: row;
}

.profile-card {
  flex: 1 1 30%;
    max-width: 270px;
    background: #9ccaeb52;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 0 2px 0 #d31d1d00;
    transition: .3s;
    margin: 30px;
}



.profile-card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px -5px #e05c4f6b;
}

.profile-icon {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.profile-name {
  font-size: 20px;
  font-weight: bold;
  color: black;
  margin: 20px 0px 15px 0px;
}

.profile-position {
  font-size: 14px;
    color: #000;
    text-align: center;
    width: 240px;
}

.button {
  margin: 40px 0 0 0;
  padding: 10px 30px;
  color: #999;
  text-decoration: none;
  border: 1px solid #999;
  border-radius: 4px;
}

.button:hover {
  color: #fff;
  background: #748dff;
  border: 1px solid #748dff;
}

@media screen and (max-width: 1000px) {
  .profile-name {
      font-size: 18px;
  }
}

@media screen and (max-width: 800px) {
  .profile-card {
      padding: 20px 15px;
      max-width: 75%; /* Ajuste para que las tarjetas ocupen todo el ancho en pantallas pequeñas */
  }

  .profile-name {
      font-size: 16px;
  }
}