/* 
* OJANCANO CORE - Utilities
* Helpers, Lists, Flexbox
*/

.text-center {
    text-align: center;
}

.text-light {
    color: var(--color-text-light);
}

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

.mb-md {
    margin-bottom: var(--space-md);
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}


/* List Utilities */
.list-check,
.list-bullet {
    list-style: none;
    padding: 0;
}

.list-check__item,
.list-bullet__item {
    margin-bottom: 0.5rem;
}

.list-check__item::before {
    content: "✅ ";
    margin-right: 0.5rem;
}

.list-bullet__item {
    padding-left: 1.5rem;
    position: relative;
}

.list-bullet__item::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}