:root {
  --about-navy: #0A214F;
  --about-orange: #F27D00;
  --about-muted: #5E6878;
  --about-line: #DFE4EA;
  --about-soft: #FAFBFC;
}

.about-hero-title em,
.about-editorial-heading em,
.leadership-showcase-heading em {
  color: var(--about-orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
}

.about-hero-title em {
  display: block;
}

.about-editorial-content {
  width: min(1320px, calc(100% - 40px));
}

.about-editorial-section {
  padding: 76px 0 80px;
}

.about-editorial-kicker,
.leadership-showcase-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
  color: var(--about-navy);
  font: 800 11px/1.3 Arial, Helvetica, sans-serif;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.about-editorial-kicker::before,
.leadership-showcase-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  flex: none;
  background: var(--about-orange);
}

.about-editorial-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 7vw;
}

.about-editorial-heading,
.leadership-showcase .leadership-showcase-heading {
  margin: 0;
  color: var(--about-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.about-editorial-heading em {
  display: block;
}

.about-editorial-intro {
  max-width: 610px;
  margin: 0 0 5px;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 62px;
}

.about-purpose-card {
  position: relative;
  min-height: 224px;
  padding: 38px 40px 36px;
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 22px;
  background: #fff;
}

.about-purpose-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--about-orange);
}

.about-purpose-card > span {
  color: var(--about-orange);
  font: 800 10px/1.3 Arial, Helvetica, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-purpose-card h3 {
  margin: 23px 0 14px;
  color: var(--about-navy);
  font: 700 23px/1.2 Arial, Helvetica, sans-serif;
}

.about-purpose-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.72;
}

.leadership-showcase.section,
.leadership-showcase {
  width: min(1320px, calc(100% - 40px));
  max-width: 1320px;
  margin: 0 auto;
  padding: 84px 0 104px;
  border-top: 1px solid var(--about-line);
  background: #fff;
  color: var(--about-navy);
  font-family: Arial, Helvetica, sans-serif;
}

.leadership-showcase .leadership-showcase-heading {
  margin-bottom: 38px;
}

.leadership-showcase .leadership-showcase-heading em {
  white-space: nowrap;
}

.about-editorial-content .leadership-showcase {
  width: 100%;
  max-width: none;
}

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

.leadership-showcase-card {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 22px;
  background: #fff;
}

.leadership-showcase-photo {
  min-height: 330px;
  overflow: hidden;
  background: #eef1f5;
}

.leadership-showcase-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center 24%;
}

.leadership-showcase-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 38px 34px 27px;
}

.leadership-showcase-copy > span {
  color: var(--about-orange);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.leadership-showcase-copy h3 {
  margin: 24px 0 16px;
  color: var(--about-navy);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.15;
}

.leadership-showcase-copy p {
  margin: 0;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.72;
}

.leadership-showcase-copy small {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--about-line);
  color: #687184;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .leadership-showcase-card {
    grid-template-columns: 168px minmax(0, 1fr);
  }

  .leadership-showcase-copy {
    padding: 32px 25px 25px;
  }
}

@media (max-width: 850px) {
  .about-editorial-head,
  .about-purpose-grid,
  .leadership-showcase-grid {
    grid-template-columns: 1fr;
  }

  .about-editorial-head {
    gap: 28px;
  }

  .leadership-showcase .leadership-showcase-heading em {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .about-editorial-content,
  .leadership-showcase.section,
  .leadership-showcase {
    width: min(100% - 28px, 1320px);
  }

  .about-editorial-section,
  .leadership-showcase.section,
  .leadership-showcase {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .about-editorial-heading,
  .leadership-showcase .leadership-showcase-heading {
    font-size: 42px;
  }

  .about-purpose-grid {
    margin-top: 46px;
  }

  .about-purpose-card {
    padding: 32px 26px;
  }

  .leadership-showcase-card {
    grid-template-columns: 1fr;
  }

  .leadership-showcase-photo,
  .leadership-showcase-photo img {
    height: 390px;
    min-height: 390px;
  }

  .leadership-showcase-copy {
    min-height: 285px;
  }
}
