/* thesis-band block deltas (plan §5.2) — web-only type treatment. The band
 * (composed.html → paper-tint after the hero) supplies the full-bleed tint;
 * this centres the lockup. Matches V2: a centred eyebrow over an oversized
 * uppercase statement with the accent word in brand gold. */
@layer web {
  .block-thesis-band { text-align: center; }

  .thesis__eyebrow {
    justify-content: center;
    color: var(--sph-text-muted);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  /* The SDS eyebrow draws a leading rule via ::before; centred, balance it
     with a trailing rule so the dashes sit either side of the label. */
  .thesis__eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    display: inline-block;
  }

  .thesis__claim {
    font-family: var(--sph-font-display);
    font-weight: var(--sph-weight-extrabold);
    text-transform: uppercase;
    font-size: clamp(1.75rem, 5.5vw, 4rem);
    line-height: 1.04;
    letter-spacing: var(--sph-tracking-tight);
    color: var(--sph-text);
    margin: 0 auto;
    max-width: 20ch;
  }
  .thesis__claim .sph-accent { color: var(--sph-primary); }

  .thesis__cta { margin: clamp(1.5rem, 4vw, 2.25rem) 0 0; }
}
