/* Mobile down-scale: render everything at 80% below the theme's own 767px
   breakpoint (the same one aixor/responsive.css switches on).

   ponytail: one `zoom` rule instead of rewriting font sizes and spacing across
   61 verbatim WP stylesheets. The theme sizes almost everything in px, so
   scaling the root font size would have missed most of it, and `transform:
   scale()` would have left the layout box at full size. `zoom` scales the used
   values, so the layout reflows to match and viewport units come with it.

   Loaded last in layout.tsx. Nothing else in the cascade declares `zoom`, so
   this needs no specificity fight. Change the one number to retune. */
@media (max-width: 767px) {
  body {
    zoom: 0.8;
  }
}
