/* ============================================================
   Editorial utilities — shared heading system for Team,
   Contact, and any future section that should blend with
   Platforms (.platforms-v2) and Credentials (.credentials-v2).
   Scoped under .ed-head.
   ============================================================ */

.ed-head {
  --eh-ink:       #0f1119;
  --eh-ink-2:     #3a4050;
  --eh-ink-3:     #6b7280;
  --eh-ink-4:     #9ca3af;
  --eh-line-3:    rgba(15, 17, 25, 0.22);
  --eh-blue:      #2563EB;
  --eh-font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --eh-font-serif:"Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --eh-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
  font-family: var(--eh-font-sans);
  text-align: left;
}
@media (max-width: 820px) {
  .ed-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 32px; }
}

.ed-head .eyebrow {
  font-family: var(--eh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eh-ink-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.ed-head .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--eh-line-3);
}
.ed-head .eyebrow .num { color: var(--eh-ink-2); }

.ed-head .display {
  font-family: var(--eh-font-serif);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.02;
  color: var(--eh-ink);
  margin: 0;
  max-width: 22ch;
  font-size: clamp(30px, 3.6vw, 52px);
}
.ed-head .display em {
  font-style: italic;
  color: var(--eh-blue);
  font-weight: 400;
}

.ed-head .lede {
  color: var(--eh-ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
  font-family: var(--eh-font-serif);
  font-weight: 400;
  font-style: italic;
  margin: 0;
}
