/*
 * WordPress core's own image rule, reproduced.
 *
 * This is not Physique Pro's and it is not this rebuild's. WordPress emits it
 * on every page, and on the live site Autoptimize concatenates it into the same
 * cache bundle as everything else — where it has no filename, so a vendoring
 * pass that copies the theme's stylesheets one by one drops it without noticing.
 *
 * Physique Pro depends on it. The theme sets `.footer-logo img { width: auto }`
 * and leaves the front page's about-logo unconstrained, so with no max-width
 * both render at their intrinsic size and overflow: measured against the live
 * site, the footer came out 1002px tall instead of 645, and the about section
 * 594px instead of 285.
 *
 * It is a separate file rather than a line in static.css so it can load in the
 * position the live bundle has it — after nivo-slider.css and before
 * default.css. See the stylesheet block in _includes/layouts/base.njk.
 */

img {
  max-width: 100%;
}
