.team-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.team-grid > .team-grid-item {
  width: 33.33%;
  flex-grow: 0;
  padding: 10px 10px 60px;
}
@media (max-width: 767px) {
  .team-grid > .team-grid-item {
    width: 33.33%;
  }
}
@media (max-width: 520px) {
  .team-grid > .team-grid-item {
    width: 50%;
  }
  .team-grid > .team-grid-item .name {
    font-size: 15px;
    line-height: 19px;
  }
  .team-grid > .team-grid-item .position {
    font-size: 12px;
    line-height: 15px;
  }
}

.team-grid-item {
  text-align: center;
  color: var(--wp--preset--color--dark-green);
}
.team-grid-item > .inner-container {
  max-width: 240px;
}
.team-grid-item .image {
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 15px;
  background: var(--wp--preset--color--light-blue-gray);
  border-radius: 50%;
}
.team-grid-item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.team-grid-item.no-image .image {
  background: var(--wp--preset--color--light-blue-gray) url(./images/placeholder.svg) no-repeat center center;
  background-size: cover;
}
.team-grid-item .name {
  margin: 0 20px;
}
.team-grid-item .position {
  margin: 0 20px;
}/*# sourceMappingURL=style.css.map */