/* colors */
/* easing bezier */
/* layout vars */
/* NEWS CARDS MODULE */
.people-cards {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width : 48em) {
  .people-cards {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width : 68.75em) {
  .people-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.people-cards a {
  color: inherit;
  text-decoration: none;
}

.people-card {
  background-color: white;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1), box-shadow 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  position: relative;
  display: flex;
  font-size: 0.875rem;
  margin-bottom: 15px;
}
@media screen and (min-width : 48em) {
  .people-card {
    margin-bottom: 0;
  }
}
.people-card h4, .people-card .job-title {
  font-weight: 600;
  font-size: 0.875rem;
  padding-right: 30px;
}
.people-card h4 {
  color: #005DAF;
}
.people-card .email {
  margin-top: 0.5em;
  color: #005DAF;
}
.people-card .image-wrapper {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  aspect-ratio: 165/180;
  overflow: hidden;
  flex-basis: 45%;
}
.people-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
}
.people-card .text-wrapper {
  padding: 15px;
  padding-top: 30px;
  flex-basis: 55%;
  position: relative;
}
.people-card .arrow-link {
  position: absolute;
  bottom: 20px;
}
.people-card .arrow-link::after {
  top: 4px;
}
