.team-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 0;
}
.team-grid .team-member {
  text-align: center;
  position: relative;
}
.team-grid .team-member:nth-child(2n) .member-image {
  background: var(--Secondary-Light-Green-300, #F1F9F8);
}
.team-grid .team-member .member-image {
  width: 100%;
  height: 332px;
  overflow: hidden;
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.team-grid .team-member .member-image img {
  width: 100%;
}
.team-grid .team-member .member-image:after {
  content: "";
  display: block;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(35, 90, 80, 0) 0%, #235A50 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.team-grid .team-member .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 43px 25px;
  text-align: left;
}
.team-grid .team-member .info h3 {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 27.2px */
}
.team-grid .team-member .info .job-title {
  color: var(--Secondary-Light-Green-300, #F1F9F8);
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}
