.team-block .team-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 1200px) {
  .team-block .team-list {
    grid-template-columns: auto;
    gap: 64px;
  }
}
.team-block .team-list .team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
@media (max-width: 1200px) {
  .team-block .team-list .team-member {
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-rows: min-content;
    row-gap: 0px;
    align-items: start;
    grid-template-areas: "img info" "img contact";
  }
}
@media (max-width: 720px) {
  .team-block .team-list .team-member {
    grid-template-columns: 120px 1fr;
  }
}
@media (max-width: 540px) {
  .team-block .team-list .team-member {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "info" "contact";
  }
}
.team-block .team-list .team-member .image-wrapper {
  white-space: nowrap;
  line-height: 0px;
  min-width: 200px;
  grid-area: img;
}
@media (max-width: 720px) {
  .team-block .team-list .team-member .image-wrapper {
    min-width: 120px;
  }
}
@media (max-width: 380px) {
  .team-block .team-list .team-member .image-wrapper {
    min-width: 80px;
  }
}
.team-block .team-list .team-member .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.team-block .team-list .team-member .info-wrapper {
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  grid-area: info;
  max-width: 500px;
  height: -moz-min-content;
  height: min-content;
  max-height: -moz-min-content;
  max-height: min-content;
  box-sizing: border-box;
}
@media (max-width: 720px) {
  .team-block .team-list .team-member .info-wrapper {
    gap: 8px;
  }
}
@media (max-width: 540px) {
  .team-block .team-list .team-member .info-wrapper {
    margin-top: 16px;
  }
}
.team-block .team-list .team-member .info-wrapper h2 {
  margin: 0px;
}
.team-block .team-list .team-member .contact-wrapper {
  color: #000000;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #d8d8d8;
  grid-area: contact;
  max-width: 500px;
  margin-top: auto;
}
@media (max-width: 1440px) {
  .team-block .team-list .team-member .contact-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
}
@media (max-width: 1200px) {
  .team-block .team-list .team-member .contact-wrapper {
    margin-bottom: 0;
    margin-top: auto;
  }
}
@media (max-width: 720px) {
  .team-block .team-list .team-member .contact-wrapper {
    margin-top: 12px;
    gap: 8px;
  }
}
.team-block .team-list .team-member .contact-wrapper .h5 {
  margin: 0px;
}
.team-block .team-list .team-member .contact-wrapper .direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
  width: 100%;
}
.team-block .team-list .team-member .contact-wrapper .direct a {
  text-decoration: underline;
}
.team-block .team-list .team-member .contact-wrapper .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-bottom: 1px solid #d8d8d8;
  width: 100%;
  padding: 12px 0px;
  line-height: 1em;
}
.team-block .team-list .team-member .contact-wrapper .row svg {
  width: auto;
  height: 20px;
}

/******************
 * BACKEND STYLES *
******************//*# sourceMappingURL=team.css.map */