/* Utilities. Kept deliberately small. If a utility is used more than a few
   times it probably wants to be a component. */

.u-center     { text-align: center; }
.u-measure    { max-width: var(--measure); }
.u-mt-0       { margin-top: 0; }
.u-mt-4       { margin-top: var(--s-4); }
.u-mt-6       { margin-top: var(--s-6); }
.u-mb-4       { margin-bottom: var(--s-4); }
.u-mb-6       { margin-bottom: var(--s-6); }
.u-soft       { color: var(--ink-soft); }
.u-faint      { color: var(--ink-faint); }
.u-flow > * + * { margin-top: var(--s-4); }
.u-hide       { display: none !important; }
.u-no-scroll  { overflow: hidden; }
