/* Hangar Group — Utility atomics */

.hg-text-center { text-align: center; }
.hg-text-left { text-align: left; }
.hg-text-right { text-align: right; }

.hg-mt-0 { margin-top: 0; }
.hg-mt-1 { margin-top: .5rem; }
.hg-mt-2 { margin-top: 1rem; }
.hg-mt-3 { margin-top: 1.5rem; }
.hg-mt-4 { margin-top: 2rem; }

.hg-mb-0 { margin-bottom: 0; }
.hg-mb-1 { margin-bottom: .5rem; }
.hg-mb-2 { margin-bottom: 1rem; }
.hg-mb-3 { margin-bottom: 1.5rem; }
.hg-mb-4 { margin-bottom: 2rem; }

.hg-flex { display: flex; }
.hg-flex-wrap { flex-wrap: wrap; }
.hg-items-center { align-items: center; }
.hg-justify-between { justify-content: space-between; }
.hg-justify-center { justify-content: center; }
.hg-gap-1 { gap: .5rem; }
.hg-gap-2 { gap: 1rem; }
.hg-gap-3 { gap: 1.5rem; }

.hg-hide-mobile { display: none; }
@media (min-width: 768px) { .hg-hide-mobile { display: initial; } }

.hg-hide-desktop { }
@media (min-width: 1024px) { .hg-hide-desktop { display: none; } }
