.team-card__wrapper {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 20px;
  border: 1px solid #E3E3E3;
  background: #FFF;
}
.team-card__wrapper > img {
  border-radius: 10px;
}
.team-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-card_name {
  color: var(--color-primary--1);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.team-card_job {
  overflow: hidden;
  color: #292E3D;
  text-overflow: ellipsis;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
