.cta-box {
    background: var(--isabelline);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px 24px;
    margin-top: 36px;
    padding: 22px 20px;
    width: 100%;
    box-sizing: border-box;
}

.cta-box .text {
    font-weight: 400;
    flex: 1 1 220px;
    margin: 0;
    min-width: 200px;
    line-height: 1.45;
}

.cta-box-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    flex-shrink: 0;
    min-width: min(260px, 100%);
}

.cta-box-actions .button {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    min-width: unset;
    text-decoration: none;
    white-space: normal;
    text-align: center;
}

@media (max-width: 700px) {
    .cta-box {
        flex-direction: column;
        align-items: stretch;
        margin-top: 36px;
        text-align: center;
        width: calc(100% - 40px);
    }

    .cta-box .text {
        margin-bottom: 0;
    }

    .cta-box-actions {
        width: 100%;
        min-width: unset;
    }
}
