/* ============================================================
   Lead-e component: eyebrow label + short serif lead with a CSS
   drop cap on the first paragraph's first letter.
   ============================================================ */

.lead-e {
  padding: 7.5rem var(--pad-x);
  background: var(--paper);
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}
.lead-e__inner {
  max-width: 48.75rem;
  margin: 0 auto;
}
.lead-e__label {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lead-e__body {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.45;
  font-weight: 400;
  color: #1a1a1a;
}
.lead-e__body p {
  margin-bottom: 1.3em;
  text-wrap: pretty;
}
.lead-e__body p:last-child {
  margin-bottom: 0;
}
.lead-e__body strong {
  font-weight: 600;
  color: var(--black);
}
.lead-e__body p:first-child::first-letter {
  font-family: var(--font-serif);
  font-weight: 500;
  float: left;
  font-size: clamp(5.625rem, 10vw, 9.25rem);
  line-height: 0.85;
  padding: 0.625rem 1.125rem 0 0;
  color: var(--blue);
}
