/* BLOCK: CTA Section */

.block-cta-section .cta-wrapper {
    display: flex;
    gap: 3.75rem;
}

.block-cta-section .cta-wrapper img {
    flex-basis: 50%;
    width: 50%;
    object-fit: cover;
}

.block-cta-section .main-content {
    flex-basis: 50%;
    flex-grow: 1;
    padding: 6rem 5rem 6rem 0;
}

.block-cta-section .text-content p {
    max-width: 24.8125rem;
}

.block-cta-section .cta-buttons:not(:first-child) {
    margin-top: 3.75rem;
}

@media screen and (width <= 620px) {
    .block-cta-section .cta-wrapper {
        flex-direction: column;
        gap: 0;
    }
    .block-cta-section .cta-wrapper img {
        width: 100%;
        aspect-ratio: 1.425;
    }
    .block-cta-section .main-content {
        flex-basis: unset;
        padding: 2.5rem 1.5rem;
    }
    .block-cta-section .cta-buttons:not(:first-child) {
        margin-top: 2.5rem;
    }
}