/* Mobile Safari enlarges pages when an editable control's computed text is below 16px. */
@media (max-width: 860px) {
  body input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]),
  body textarea:not(:disabled),
  body select:not(:disabled),
  body [contenteditable="true"],
  body [contenteditable="plaintext-only"] {
    font-size: 16px;
    line-height: 1.35;
  }
}
