div.spm-cta-group {
    background-color: var(--wp--custom--color--neutral-100);
    padding: 30px 0;
}

div.spm-cta-group .spm-cta-group__header {
    margin-bottom: 25px;
}

div.spm-cta-group .spm-cta-group__heading {
    margin-bottom: 0;
}

div.spm-cta-group .spm-cta-group__heading+.spm-cta-group__description {
    margin-top: 10px;
}

div.spm-cta-group .spm-cta-group__description {
    font-size: var(--wp--preset--font-size--medium);
}

div.spm-cta-group .spm-cta-group__row {
    margin-bottom: -25px;
}

div.spm-cta-group .spm-cta-group__row>* {
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    div.spm-cta-group {
        padding: 50px 0;
    }

    div.spm-cta-group .spm-cta-group__heading+.spm-cta-group__description {
        margin-top: 15px;
    }

    div.spm-cta-group .spm-cta-group__row {
        margin-bottom: -30px;
    }

    div.spm-cta-group .spm-cta-group__row>* {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    div.spm-cta-group .spm-cta-group__row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    /* Default: 1 item, 3 items or 5+ items */
    div.spm-cta-group .spm-cta-group__row>* {
        flex: 0 1 33.3333%;
        padding: 0 15px;
    }

    /* Special case: exactly 2 items */
    div.spm-cta-group .spm-cta-group__row:has(> :nth-child(2):last-child)>* {
        flex: 0 1 50%;
    }

    /* Special case: exactly 4 items */
    div.spm-cta-group .spm-cta-group__row:has(> :nth-child(4):last-child)>* {
        flex: 0 1 25%;
    }
}