@charset "UTF-8";
/* ---------------------------------------------------------------------------
   FIGURE — a block figure inside a reading measure. Never a float.
   Added 2026-08-20 with the Retreat Type page rebuild (nodes 20, 21, 22, 47).

   These pages previously used `.float-right-500` from components/images.scss.
   Measured in that render: each image sat at 292px inside a 731px reading
   measure and swung the line length between about 40 characters beside the
   image and 78 below it, four times per page — and desktop only, because
   images.scss already computes `float: none` below 800px. Most visitors were
   already seeing the block treatment; this makes it the only treatment.

   COMPETING RULE: critical.css:507's bare `img` (0,0,1) sets max-width: 100%,
   height: auto, display: block and auto inline margins. Both rules here are
   (0,1,0) and (0,1,1), so they win outright rather than by load order.
   --------------------------------------------------------------------------- */
.figure {
  margin-bottom: 2.313rem;
}

.figure img {
  width: 100%;
  height: auto;
}

/*# sourceMappingURL=figure.css.map */
