.team-section {
  text-align: left;
}

.team-section__badge {
  margin-bottom: var(--spacing-10);
}

.team-section__title {
  font-weight: 400;
  font-size: 40px;
  color: var(--grey-800);
  margin-bottom: var(--spacing-4);
}

.team-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--spacing-7);
  margin-bottom: var(--spacing-9);
}

.founder-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  min-height: 340px;
  padding: var(--spacing-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--grey-100);
  isolation: isolate;
}

.founder-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  z-index: -2;
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.founder-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 90%;
}

.founder-card__tag,
.founder-card__body {
  position: relative;
  z-index: 1;
}
.founder-card__tag {
  width: fit-content;
  color: var(--teal-vibrant);
  font-weight: 600;
}
.founder-card__body h3 {
  font-family: "Fraunces";
  font-weight: 400;
  font-size: 20px;
  margin-bottom: var(--spacing-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-card__body h3 small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-200);
}

.founder-card__body p {
  font-size: 13px;
}

.team-lists {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-7);
}
.team-list h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--grey-800);
  margin-bottom: var(--spacing-5);
}
.team-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-4) var(--spacing-5);
}
.team-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  font-size: 16px;
  font-weight: 500;
  background: #ffffff;
  border-radius: 10px;
  padding: var(--spacing-4) var(--spacing-5);
}
.team-list li i {
  color: var(--color-primary);
  background: var(--teal-50);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-list li span {
  display: flex;
  flex-direction: column;
}
.team-list li small {
  color: var(--color-text-muted);
  font-weight: 400;
}

.team-bottom {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--spacing-7);
  align-items: stretch;
}
.experts h4 {
  font-size: 18px;
  margin-bottom: var(--spacing-2);
}
.experts .section-subtitle {
  margin-bottom: var(--spacing-6);
}
.experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4);
  border: none;
}
.expert-cell {
  padding: var(--spacing-5);
  background: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.expert-cell strong {
  font-size: 14px;
  color: var(--grey-600);
  font-weight: 400;
}
.expert-cell span {
  color: var(--grey-800);
  font-weight: 500;
  font-size: 16px;
}
.expert-cell small {
  color: var(--grey-800);
  font-weight: 500;
  font-size: 14px;
}
.expert-cell--more {
  align-items: flex-start;
  justify-content: center;
  background: var(--teal-50);
  color: var(--teal-600);
  font-weight: 600;
}

.volunteers-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  padding: var(--spacing-7);
  text-align: center;
  position: relative;
}

.volunteers-box__label {
  display: inline-block;
  position: relative;
  color: var(--grey-800);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: var(--spacing-4);
  padding-top: 10px;
}

.volunteers-box__label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 33%;
  background: var(--teal-vibrant);
  border-radius: 999px;
}

.volunteers-box__count {
  display: block;
  font-family: "Fraunces";
  font-size: 40px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--spacing-4);
}

.volunteers-box p {
  color: var(--grey-800);
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .team-top,
  .team-bottom,
  .team-lists,
  .experts-grid {
    grid-template-columns: 1fr;
  }
}
