/* Custom team card styles for equal size and center alignment */
.team-card {
  width: 320px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.team-inner-box {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.team-inner-box .flex-grow-1 {
  flex-grow: 1;
}
.team-desc {
  min-height: 90px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .team-card {
    width: 90vw;
    min-width: 220px;
    max-width: 100%;
  }
  .team-inner-box {
    min-height: 340px;
  }
  .team-desc {
    min-height: 60px;
  }
}
