.sl-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.sl-form-field {
    min-width: 0;
}

.sl-form-field-span-2 {
    grid-column: 1 / -1;
}

@media (max-width: 992px) {
    .sl-form-grid {
        grid-template-columns: 1fr;
    }
}

