/*
 * Mobile heading correction:
 * Keep long title words intact and scale the title to the available width.
 */
@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(1.75rem, 10.3vw, 5.3rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}
