.team-leaders {
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 47, 54, 0.1), transparent 34%),
    #fafaf7;
  color: #26282b;
}

.team-leaders__header {
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.team-leaders__eyebrow {
  margin: 0 0 12px;
  color: #8f2f36;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-leaders__title {
  margin: 0;
  font-size: clamp(32px, 3.25vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.team-leaders__intro {
  max-width: 760px;
  margin: 22px auto 0;
  color: #5d5f62;
  font-size: 18px;
  line-height: 1.65;
}

.team-leaders__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.team-leaders__card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 40, 43, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(38, 40, 43, 0.08);
}

.team-leaders__media {
  aspect-ratio: 1856 / 2304;
  overflow: hidden;
  background: #e9e2dc;
}

.team-leaders__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.team-leaders__content {
  padding: 22px 20px 24px;
}

.team-leaders__role {
  margin: 0 0 8px;
  color: #8f2f36;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-leaders__name {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.team-leaders__description {
  margin: 14px 0 0;
  color: #5d5f62;
  font-size: 15px;
  line-height: 1.58;
}

@media screen and (max-width: 991px) {
  .team-leaders {
    padding: 76px 0;
  }

  .team-leaders__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

}

@media screen and (max-width: 599px) {
  .team-leaders {
    padding: 60px 0;
  }

  .team-leaders__header {
    margin-bottom: 34px;
    text-align: left;
  }

  .team-leaders__title {
    font-size: 32px;
    line-height: 1.12;
  }

  .team-leaders__intro {
    margin-top: 18px;
    font-size: 16px;
  }

  .team-leaders__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-leaders__content {
    padding: 22px;
  }

  .team-leaders__name {
    font-size: 24px;
  }
}
