@import url("reset.css");
@import url("variables.css");
@import url("layout.css");
@import url("components.css");

/* Utilities */
.hide-on-mobile { display: none; }
@media (min-width: 780px) { .hide-on-mobile { display: initial; } .hide-on-desktop { display: none; } }
.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-4 { margin-top: var(--space-4); }
.mb-0 { margin-bottom: 0; }
.stack-sm > * + * { margin-top: var(--space-3); }
.stack-md > * + * { margin-top: var(--space-4); }
.stack-lg > * + * { margin-top: var(--space-5); }
.muted { color: var(--text-secondary-light); }
.muted-small { color: var(--text-muted-light); font-size: var(--font-xs); }
