/* Mobile typography correction — keep metric words intact. */
@media (max-width: 800px) {
  .world-metric strong {
    display: block;
    max-width: 100%;
    font-size: clamp(2.15rem, 10.5vw, 3rem) !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
    white-space: nowrap;
  }
}

@media (max-width: 350px) {
  .world-metric strong {
    font-size: clamp(2rem, 10vw, 2.2rem) !important;
  }
}
