.about-copy {
  max-width: 1100px;
  display: grid;
  gap: 16px;
  font-size: calc(20px * var(--font-scale, 1));
}

.about-copy p,
.highlight-item p,
.insurance-note,
.section-lede {
  margin: 0;
}

.about-section,
.affiliations-wrap {
  margin-top: 56px;
}

.highlight-list {
  display: grid;
  gap: 18px;
  max-width: 1080px;
}

.highlight-item {
  border-left: 5px solid var(--color-blue);
  background: #f8fbfe;
  padding: 20px 24px;
}

/* Only the entries carrying photos become two columns. A highlight with nothing
   to show keeps the full measure rather than reserving an empty gutter, which is
   what lets photographed and text-only entries sit in the same list. */
.highlight-item--media {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  align-items: start;
  gap: 26px;
}

/* One or two photos, stacked. Side by side they would each be half of an already
   narrow column, too small to read a face in. */
.highlight-media {
  display: grid;
  gap: 14px;
}

.highlight-figure {
  margin: 0;
}

.highlight-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #eef4f9;
}

.highlight-figure figcaption {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: calc(15px * var(--font-scale, 1));
  line-height: 1.35;
}

.highlight-item h3 {
  margin: 0 0 10px;
  color: var(--color-blue-dark);
  font-size: calc(26px * var(--font-scale, 1));
}

.highlight-item blockquote {
  margin: 14px 0 0;
  padding-left: 18px;
  border-left: 3px solid #c3d3df;
  color: var(--color-muted);
  font-size: calc(18px * var(--font-scale, 1));
}

/* One profile, so it reads as a portrait beside a bio rather than a list entry.
   Same blue rule and paper as the highlights so the two sections sit together. */
.leadership-card {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  max-width: 1080px;
  border-left: 5px solid var(--color-blue);
  background: #f8fbfe;
  padding: 22px 26px;
}

.leadership-figure {
  margin: 0;
}

.leadership-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #eef4f9;
}

.leadership-body {
  display: grid;
  gap: 12px;
  font-size: calc(19px * var(--font-scale, 1));
}

.leadership-body p {
  margin: 0;
}

.leadership-name {
  margin: 0;
  color: var(--color-blue-dark);
  font-size: calc(30px * var(--font-scale, 1));
  line-height: 1.15;
}

.leadership-title {
  margin: -6px 0 4px;
  color: var(--color-red);
  font-weight: 700;
  font-size: calc(18px * var(--font-scale, 1));
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.insurance-list {
  margin: 18px 0;
  padding-left: 28px;
  color: var(--color-red);
  font-size: calc(22px * var(--font-scale, 1));
  font-weight: 700;
  columns: 2;
  max-width: 760px;
}

.insurance-list li {
  margin-bottom: 8px;
}

.insurance-note {
  max-width: 900px;
  color: var(--color-muted);
  font-size: calc(18px * var(--font-scale, 1));
}

.affiliations-note {
  margin: 0 0 12px;
  font-size: calc(20px * var(--font-scale, 1));
}

.affiliations-micro {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: calc(16px * var(--font-scale, 1));
}

.affiliations-list {
  margin: 0;
  padding-left: 34px;
  color: var(--color-red);
  font-size: calc(24px * var(--font-scale, 1));
  font-weight: 700;
  display: grid;
  gap: 10px;
}

@media (max-width: 860px) {
  /* Photos move above the text and stop short of full width, so a portrait does
     not become the tallest thing on the page before the story it belongs to. */
  .highlight-item--media {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .highlight-media {
    grid-template-columns: repeat(auto-fit, minmax(140px, 220px));
    justify-content: start;
  }

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

  .leadership-figure {
    max-width: 220px;
  }
}

@media (max-width: 720px) {
  .insurance-list {
    columns: 1;
  }

  .highlight-item,
  .leadership-card {
    padding: 18px;
  }
}
