/* Uniform image cap.

   Default: every image in body content caps at 600px wide.
   The cap is below any of our source PNGs that would otherwise render at
   their full 800-1300px width, and at-or-above all the smaller screenshots
   so they stay at native resolution (no upscale blur).

   Opt-out: tag an image with :class: bt-wide to get a larger cap (used for
   the two "hero" screenshots in user-guide.rst). */

.rst-content img {
    max-width: 600px;
    height: auto;
}

.rst-content img.bt-wide {
    max-width: 100%;
}
