.team-cards {
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
.team-cards__container {
  position: relative;
  width: 100%;
}
.team-cards__card {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px var(--section-padding-x);
  background-color: #fff;
  position: relative;
}
@media (min-width: 992px) {
  .team-cards__card {
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 768px) {
  .team-cards__card {
    min-height: auto;
    padding: 40px var(--section-padding-x);
  }
}
.team-cards__card-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.team-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 991px) {
  .team-cards__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.team-cards__image-column {
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .team-cards__image-column {
    position: relative;
    top: 0;
    width: 100%;
    max-width: none;
    margin: 0 0 30px 0;
  }
}
.team-cards__image-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  aspect-ratio: 1/1.1;
}
@media (max-width: 991px) {
  .team-cards__image-wrap {
    aspect-ratio: 1/1;
    border-radius: 12px;
  }
}
.team-cards__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-cards__content-column {
  text-align: left;
}
.team-cards__name {
  color: var(--color-brand-green, #4A5D4A);
  margin-bottom: 20px;
}
.team-cards__divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-brand-gold, #F8B822);
  margin-bottom: 30px;
}
.team-cards__bio {
  color: var(--color-brand-dark-grey, #333);
  line-height: 1.7;
}
.team-cards__bio p {
  margin-bottom: 20px;
}

/*# sourceMappingURL=team-cards.css.map */
