/* LEADERSHIP */
.leadership {
  background: var(--bg-light);
}
.leadership-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.leadership blockquote {
  margin: 3rem 0 0;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--black);
  line-height: 1.45;
  font-style: normal;
}
.leadership-role {
  margin-top: 2.5rem;
  font-weight: 700;
  font-size: var(--fs-heading);
  line-height: 1.4667;
  letter-spacing: 0;
  color: var(--orange-soft);
}
.leadership-name {
  font-size: var(--fs-body);
  line-height: 1.4667;
  font-weight: 500;
  margin-top: 0.35rem;
}
.leadership-credentials {
  margin-top: 1rem;
}
.leadership-credentials li {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--black);
  line-height: 1.444;
  padding-left: 14px;
  position: relative;
}
.leadership-credentials li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
}
.leadership-links {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-gray);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (min-width: 1101px) {
  /* LEADERSHIP - more breathing room between internal elements on desktop */
  .leadership blockquote {
    margin-top: 1.5rem;
  }
  .leadership-role {
    margin-top: 4.5rem;
  }
  .leadership-credentials {
    margin-top: 2rem;
  }
  .leadership-links {
    margin-top: 2.5rem;
  }
}
.leadership-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.leadership-links svg,
.leadership-links img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.leadership-photo {
  position: relative;
}
.leadership-photo img {
  width: 100%;
}
.break-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .leadership-photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .leadership-role {
    margin-top: 1.75rem;
  }
}

@media (max-width: 760px) {
  /* LEADERSHIP - single column, aligned with header logo */
  .leadership-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .leadership-text {
    text-align: left;
  }
  .leadership .section-title {
    text-align: center;
  }
  .leadership blockquote {
    text-align: center;
    margin-top: 1.5rem;
  }
  .break-mobile {
    display: block;
  }
  .leadership-role {
    margin-top: 1.5rem;
  }
  .leadership-name {
    margin-top: 0.15rem;
  }
  .leadership-credentials {
    margin-top: 0.75rem;
  }
  .leadership-links {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .leadership-photo {
    max-width: 260px;
    margin: 24px auto 0;
  }
}
