.grid {
    display: grid;
}

.flex {
    display: flex;
}

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

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

.gap-sm {
    gap: 12px;
}

.gap-md {
    gap: 24px;
}

.gap-lg {
    gap: 40px;
}