/* Both scroll axes stay native. Pinch and double-tap do not resize the page. */
@media (any-pointer: coarse) {
  html, body { touch-action: pan-x pan-y; }
  a, button, input, textarea, select, label, video, audio, [role="button"] {
    touch-action: manipulation;
  }
  /* A readable control size also prevents Safari from zooming on focus. */
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  textarea, select, [contenteditable="true"] {
    font-size: max(16px, 1rem) !important;
  }
}
