/* Mobile: reduce iOS double-tap zoom + input focus zoom
   - Keeps pinch zoom enabled (does NOT use user-scalable=no)
   - Prevents iOS input focus zoom by ensuring font-size >= 16px
*/

@media (max-width: 768px) {
  html,
  body {
    touch-action: manipulation;
  }

  a,
  button,
  input,
  select,
  textarea,
  [role='button'] {
    touch-action: manipulation;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

