.page-hero {
  position: relative;
  width: 100%;
  min-height: 220px;
  height: clamp(220px, 32vw, 360px);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45));
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 72px;
}

.lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--muted);
}

.section {
  margin: 48px 0 24px;
}

.section h2 {
  margin: 0 0 28px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
  justify-items: center;
}

.people-grid.leaders {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 20px;
}

.people-grid.leaders .person {
  flex: 0 1 220px;
}

.people-grid.leaders-one {
  display: flex;
  justify-content: center;
}

.person {
  width: 100%;
  max-width: 220px;
  text-align: center;
}

.person img,
.person .ph {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  margin: 0 auto 14px;
}

.person img {
  object-fit: cover;
  background: #f2f6f8;
}

.person .ph {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #d7e6ee, #f4f8fa);
  color: var(--teal);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.person .name {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.person .role {
  margin: 0 0 4px;
  color: var(--role);
  font-size: 0.92rem;
  font-weight: 600;
}

.person .meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 18px;
  background: #fff;
}

.card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--teal);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card a {
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

