.team-members-section-wrapper {
  margin: 32px auto;
}
.team-members-section-wrapper .team-members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 576px) {
  .team-members-section-wrapper .team-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .team-members-section-wrapper .team-members-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .team-members-section-wrapper .team-members-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.team-members-section-wrapper .team-member-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f03;
}
.team-members-section-wrapper .team-member-image {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.team-members-section-wrapper .team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-members-section-wrapper .team-member-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.team-members-section-wrapper .team-member-name {
  font-weight: 700;
  font-size: 18px;
}
.team-members-section-wrapper .team-member-position {
  margin-bottom: 8px;
}
.team-members-section-wrapper .team-member-phone {
  font-weight: 400;
  margin-top: auto;
}
.team-members-section-wrapper .team-member-phone a {
  text-decoration: none;
}

/*# sourceMappingURL=team-members-section.css.map */
