.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 24px;
}

@media (min-width: 768px) and (max-width: 1247px) {
    .cta-buttons {
        flex-direction: row;
    }

    .cta-buttons > * {
        flex: 1;
    }
}

.two-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1248px) {
    .two-column {
        flex-direction: row;
        gap: 80px;
    }

    .two-column .content__left {
        flex: 0 0 33%;
    }

    .two-column .content__right {
        flex: 0 0 59%;
    }
}
