/* /assets/css/utilities.css */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--c-gray-500); }
.text-brand { color: var(--c-brand); }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }

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

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

.bg-dark {
    background-color: var(--c-black);
    color: var(--c-white);
}

.bg-gray {
    background-color: var(--c-gray-100);
}

.border-top { border-top: var(--border-thin); }
.border-bottom { border-bottom: var(--border-thin); }
.border-heavy { border-top: var(--border-thick); }
