/*
 * Match the desktop publishing scale used by the production site.
 * Keep mobile at its native scale so existing responsive breakpoints remain intact.
 */
@media screen and (min-width: 1024px) {
  html {
    zoom: 1;
  }
}

@media screen and (max-width: 1023px) {
  html {
    zoom: 1;
  }
}
