@layer utilities {
  [hidden] { display: none; }

  .wrap {
    width: min(100% - 3rem, 67.5rem);
    margin-inline: auto;
  }

  .stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .stack-xs { gap: 0.375rem; }
  .stack-sm { gap: 0.625rem; }
  .stack-lg { gap: 1.5rem; }
  .stack-xl { gap: 2.25rem; }

  .cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }

  .cluster-between { justify-content: space-between; }
  .cluster-center { justify-content: center; }

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .text-sm { font-size: 0.875rem; }
  .text-xs { font-size: 0.75rem; }
  .text-muted { color: var(--text-muted); }
  .text-faint { color: var(--text-faint); }
  .text-center { text-align: center; }
  .full-width { width: 100%; }
  .push-right { margin-left: auto; }

  .visually-hidden {
    position: absolute;
    width: 0.0625rem;
    height: 0.0625rem;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 42rem) {
    .wrap {
      width: min(100% - 2rem, 67.5rem);
    }

    .grid-2,
    .grid-3 {
      grid-template-columns: minmax(0, 1fr);
    }
  }
}
