/* Additional utility classes scaffold. */

.hw-text-center { text-align: center; }
.hw-text-left { text-align: left; }
.hw-text-right { text-align: right; }
.hw-text-primary { color: var(--hw-color-primary); }
.hw-text-muted { color: var(--hw-color-muted); }

.hw-mb-0 { margin-bottom: 0 !important; }
.hw-mb-sm { margin-bottom: var(--hw-space-sm) !important; }
.hw-mb-md { margin-bottom: var(--hw-space-md) !important; }
.hw-mb-lg { margin-bottom: var(--hw-space-lg) !important; }

.hw-py-xl {
    padding-top: var(--hw-space-2xl);
    padding-bottom: var(--hw-space-2xl);
}

.hw-bg-primary { background-color: var(--hw-color-primary); color: #fff; }
.hw-bg-surface { background-color: var(--hw-color-surface); }
.hw-border {
    border: 1px solid var(--hw-color-border);
}

.hw-list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hw-form-full {
    grid-column: 1 / -1;
}
