/* =========================================
   UTILITIES
   ========================================= */

/* Display Helpers */
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flex Helpers */
.flex-column { flex-direction: column; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.center { align-items: center; justify-content: center; }

/* Text Alignment */
.text-center { text-align: center; }

/* Spacing Helpers */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* Width Helpers */
.w-full { width: 100%; }

/* Accessibility Helpers */
.visually-hidden, .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
