/* QA patch by claude-opus-5, CSS-only, reviewed against design-contract v1 */
/* Hero eyebrow: keep the uppercase kicker inside the content gutter at narrow
   widths. The 0.09em tracking pushes the line past the container at 390px and
   would overflow at 320px. Wrap it and ease the tracking below 480px. */
@media (max-width: 480px) {
  .hero-lead .eyebrow,
  .hero .eyebrow {
    max-width: 100%;
    letter-spacing: .05em;
    white-space: normal;
    overflow-wrap: break-word;
  }
}
