.section-team {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4.5rem;
}
@media (max-width: 992px) {
  .section-team {
    margin-bottom: 2.25rem;
  }
}
.section-team__buttons {
  display: flex;
  gap: 1rem;
}
@media (max-width: 992px) {
  .section-team__buttons {
    flex-direction: column;
  }
}

.member {
  display: flex;
  gap: 25px;
  align-items: center;
}
.member-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.member-img img {
  width: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.member-img-frame {
  flex: none;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  padding: 0.25rem;
  border: 1px solid #c19a6b;
}
.member-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.member-name {
  font-size: 1.5rem;
  line-height: 1.375rem;
  font-weight: 400;
}
.member-position, .member-email {
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.member-position a, .member-email a {
  color: #000;
}
.member-email {
  font-weight: 600;
  margin-top: 1rem;
}
