.team-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.team-list__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #e8edf0;
}
.team-list__item:first-child {
  border-top: 1px solid #e8edf0;
}
.team-list__portrait-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e8edf0;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 480px) {
  .team-list__portrait-wrap {
    width: 60px;
    height: 60px;
  }
}
.team-list__portrait {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 50%;
  display: block;
}
.team-list__portrait--placeholder {
  width: 100%;
  height: 100%;
  background-color: #c8d4db;
  border-radius: 50%;
}
.team-list__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.team-list__name {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a2530;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .team-list__name {
    font-size: 16px;
  }
}
.team-list__description {
  font-size: 14px;
  color: #5a6878;
  margin: 0;
  line-height: 1.5;
}
