.meca-leaders-page {
  background: #f7f7f5;
  color: #151515;
  padding: 48px 20px 72px;
}

.meca-leaders-wrap {
  margin: 0 auto;
  max-width: 1240px;
}

.meca-leaders-header {
  background: #fff;
  border: 1px solid #d8d8d3;
  margin-bottom: 42px;
  padding: 42px 32px;
  text-align: center;
}

.meca-leaders-header h1 {
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

.meca-leaders-description {
  font-size: 17px;
  margin: 18px auto 0;
  max-width: 760px;
}

.meca-leaders-grid {
  display: grid;
  gap: 34px 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.meca-leader-card {
  background: transparent;
  min-width: 0;
}

.meca-leader-text {
  min-height: 74px;
  padding: 0 12px 12px;
}

.meca-leader-text h2 {
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.meca-leader-text p {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.meca-leader-photo {
  aspect-ratio: 4 / 4.7;
  background: #e8e8e4;
  overflow: hidden;
}

.meca-leader-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 300ms ease;
  width: 100%;
}

.meca-leader-card:hover .meca-leader-photo img {
  transform: scale(1.025);
}

.meca-leader-placeholder {
  align-items: center;
  color: #777;
  display: flex;
  font-size: 72px;
  height: 100%;
  justify-content: center;
}

.meca-leaders-empty {
  background: #fff;
  border: 1px solid #ddd;
  padding: 42px;
  text-align: center;
}

@media (max-width: 900px) {
  .meca-leaders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .meca-leaders-page {
    padding: 24px 14px 48px;
  }

  .meca-leaders-header {
    margin-bottom: 28px;
    padding: 30px 16px;
  }

  .meca-leaders-grid {
    grid-template-columns: 1fr;
  }

  .meca-leader-text {
    min-height: 0;
    padding-left: 4px;
  }
}

