.statement-split-section{
    background-color: var(--surface-brand);
}

.statement-split{
    display: flex;
    align-items: start;
    gap: var(--sp-lg);
    justify-content: center;
    align-items: center;
    max-width: var(--br-xl);
    margin: 0 auto;
}

.statement-split .statement-split-detail:has(.statement-description) {
    display: flex;
    gap: var(--sp-lg);
    align-items: start;
}

.statement-split .statement-split-detail:has(.statement-description) .statement-title .text {
    text-align: start;
}

.statement-split-detail .statement-title .text{
    text-align: center;
}

.statement-split-detail .statement-title .text,
.statement-split-detail .statement-description .text{
    color: var(--base-white);
}

@media (max-width: 991px){
    .statement-split .statement-split-detail:has(.statement-description) {
        display: flex;
        gap: var(--sp-md);
        align-items: start;
        flex-direction: column;
    }
    .statement-split .statement-split-detail:has(.statement-description) .statement-title .text,
    .statement-split .statement-split-detail:has(.statement-description) .statement-description .text{
        text-align: center;
    }
}