.cj-cta-buttons {
    --cj-cta-buttons-gap: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--cj-cta-buttons-gap);
    align-items: center;
}

.cj-cta-buttons--align-left {
    justify-content: flex-start;
}

.cj-cta-buttons--align-center {
    justify-content: center;
}

.cj-cta-buttons--align-right {
    justify-content: flex-end;
}

.cj-cta-buttons--align-stretch {
    align-items: stretch;
}

.cj-cta-buttons--align-stretch .cj-button {
    flex: 1 1 220px;
}

.cj-cta-buttons--layout-stack {
    flex-direction: column;
    align-items: flex-start;
}

.cj-cta-buttons--layout-stack.cj-cta-buttons--align-center {
    align-items: center;
}

.cj-cta-buttons--layout-stack.cj-cta-buttons--align-right {
    align-items: flex-end;
}

.cj-cta-buttons--layout-stack.cj-cta-buttons--align-stretch {
    align-items: stretch;
}

.cj-cta-buttons .cj-button {
    margin: 0;
}

@media (max-width: 560px) {
    .cj-cta-buttons {
        align-items: stretch;
    }

    .cj-cta-buttons .cj-button {
        width: 100%;
    }
}
