/* ==========================================================================
   OBJECTS · MEASURE — constrains text to a comfortable line length. The single
   most important typographic object: prose that respects the measure reads as
   edited, prose that runs full-width reads as a webpage.
   ========================================================================== */

.o-measure {
  max-width: var(--measure);
}

.o-measure--narrow { max-width: var(--measure-narrow); }
.o-measure--wide   { max-width: var(--measure-wide); }

/* Centre a measured column in a wider container */
.o-measure--center { margin-inline: auto; }
