/* Utilities */
.flex { display:flex; }
.inline-flex { display:inline-flex; }
.wrap { flex-wrap:wrap; }
.items-center { align-items:center; }
.justify-center { justify-content:center; }
.gap-sm { gap:.5rem; }
.gap-md { gap:1rem; }
.gap-lg { gap:1.5rem; }
.gap-xl { gap:2rem; }
.text-center { text-align:center; }
.mt-0 { margin-top:0; }
.mt-sm { margin-top:.5rem; }
.mt-md { margin-top:1rem; }
.mt-lg { margin-top:1.6rem; }
.mb-0 { margin-bottom:0; }
.mb-sm { margin-bottom:.5rem; }
.mb-md { margin-bottom:1rem; }
.mb-lg { margin-bottom:1.6rem; }
.ratio-1x1 { aspect-ratio:1/1; }
.ratio-3x2 { aspect-ratio:3/2; }