.team__section h2 {
  letter-spacing: 0;
  color: #000;
  font-size: 32px;
  margin: 0 0 60px;
  text-align: center;
  font-weight: 700;
}
.team__section h2 .yellowPurpelGradient.light {
  color: transparent;
  background: transparent linear-gradient(99deg, #004246 0%, #ffd500 100%) 0% 0%
    no-repeat padding-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.team__section .grid__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team__section .grid__row .member__block {
  border-radius: 16px;
  padding: 24px;
  background: #f2fbf7;
  position: relative;
  box-shadow: 4px 12px 30px #0000000a;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  margin: 3rem 0;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #00000014;
}
.team__section .grid__row .member__block img {
  min-height: 114px;
  min-width: 114px;
  max-width: 114px;
  border-radius: 50%;
  padding: 0.6rem;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent linear-gradient(133deg, #ffd500 0%, #00484d 100%) 0%
    0% no-repeat padding-box;
  object-fit: cover;
}
.team__section .grid__row .member__block .about {
  padding-top: 48px;
}
.team__section .grid__row .member__block h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.team__section .grid__row .member__block p {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

@media (max-width: 800px) {
  .team__section .grid__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .team__section .grid__row {
    grid-template-columns: 1fr;
  }
}
