/* Served verbatim from /public (NOT processed by Next's Lightning CSS minifier, which strips
   `text-size-adjust:100%`). Loaded via a normal <link> in layout.tsx, so it's allowed by a
   `style-src 'self'` CSP with no inline/nonce/hash needed.
   Purpose: stop iOS Safari auto-inflating text inside wide/scrolling elements (the comparison
   table's min-width band). `100%` keeps user zoom working (WCAG 1.4.4), unlike `none`. */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
