/* Local Hero Overflow Fix
   Prevents large local SEO hero headlines from spilling outside their card. */

.local-hero-title,
[data-local-hero] h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.local-hero-copy,
[data-local-hero] p {
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (min-width: 1024px) {
  .local-hero-title,
  [data-local-hero] h1 {
    font-size: clamp(3rem, 4.8vw, 5.35rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.075em !important;
  }
}

@media (max-width: 1023px) {
  .local-hero-title,
  [data-local-hero] h1 {
    font-size: clamp(2.75rem, 10vw, 5rem) !important;
    line-height: 0.9 !important;
  }
}

@media (max-width: 480px) {
  .local-hero-title,
  [data-local-hero] h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.065em !important;
  }
}
