/* ═══ Leadership Page — horizontal profile layout ═══ */

.ld-section {
  background: #f5f8fc;
}

.ld-container {
  max-width: 1200px;
}

.ld-profile {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid #e0e0e0;
}

.ld-profile:last-child {
  border-bottom: none;
}

/* ── Left: photo + name + title ── */
.ld-profile-left {
  flex-shrink: 0;
  width: 300px;
  text-align: center;
}

.ld-profile-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  display: block;
}

.ld-profile-name {
  font-size: 22px;
  font-weight: 700;
  color: #212121;
  margin: 16px 0 4px;
}

.ld-profile-position {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* ── Right: bio ── */
.ld-profile-bio {
  flex: 1;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}

.ld-profile-bio p {
  margin: 0 0 12px;
}

.ld-profile-bio p:last-child {
  margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ld-profile {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .ld-profile-left {
    width: 200px;
  }

  .ld-profile-bio {
    text-align: left;
  }
}
