/* ─── Nexa Divider ────────────────────────────────────────────────────────── */

.nexa-divider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.nexa-divider__left,
.nexa-divider__right {
    height: 100%;
}

@media ( max-width: 768px ) {
    .nexa-divider {
        grid-template-columns: 1fr;
    }

    .nexa-divider__left,
    .nexa-divider__right {
        height: 100%;
    }
}
