/* BLOCK: CTA Section */


.block-cta-section .content-wrapper .cta-wrapper {
    display: flex;
    position: relative;
    background-color: var(--c-text-dark);
    border-radius: var(--radius-40);
    padding: 3.75rem;
    overflow: hidden;
}

.block-cta-section .cta-wrapper .cta__left {
    display: flex;
    flex-direction: column;
}

.block-cta-section .cta-wrapper .cta__left {
    gap: 6.875rem;
    flex-basis: 50%;
}

.block-cta-section .cta-wrapper .cta__left:last-child {
    gap: 3.125rem;
    flex-basis: 100%;
}

.block-cta-section .cta-wrapper .text_content > * {
    margin: 0;
}

.block-cta-section .cta-wrapper .text_content > :not(:last-child) {
    margin-bottom: 2.5rem;
}

.block-cta-section .cta-wrapper .text_content > :is(h1, h2, h3, .h1, .h2, .h3) {
    margin-bottom: 3.125rem;
}

.block-cta-section .cta-wrapper .cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.block-cta-section .cta-wrapper .cta__right .gradient-circle {
    /* transform: scale(0.5); */
    bottom: 0;
    right: 0;
    width: 58.72%;
    height: auto;
    position: absolute;
    transform: translate(34%, 50%);
    overflow: visible;
}

.block-cta-section ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-direction: column;
    margin-left: -1.5rem !important;
}

.block-cta-section ol {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-direction: column;
    margin-left: -1.5rem !important;
}

@media screen and (width <= 920px) {
    .block-cta-section .content-wrapper .cta-wrapper {
        padding: 2.5rem;
    }
    .block-cta-section .cta-wrapper .cta__left {
        gap: 5rem;
    }
    .block-cta-section .cta-wrapper .text_content > :not(:last-child) {
        margin-bottom: 1.5rem;
    }
    .block-cta-section .cta-wrapper .text_content > :is(h1, h2, h3, .h1, .h2, .h3) {
        margin-bottom: 1.875rem;
    }
}

@media screen and (width <= 620px) {
    .block-cta-section .content-wrapper .cta-wrapper {
        flex-direction: column;
        padding-inline: 1.5rem;
        border-radius: 1.5rem;
    }
    .block-cta-section .cta-wrapper .cta__left {
        gap: 2.5rem;
        flex-basis: unset;
    }
    .block-cta-section .cta-wrapper .cta__left:last-child {
        gap: 1.875rem;
        flex-basis: unset;
    }
    .block-cta-section .cta-wrapper .cta__left:not(:last-child) .text_content {
        text-align: center;
    }
    .block-cta-section .cta-wrapper .cta-buttons {
        flex-direction: column;
        gap: 0.9375rem;
        align-items: stretch;
        min-width: min(100vw - 3rem, 12.5rem);
        margin-inline: auto;
    }
    .block-cta-section .cta-wrapper .cta__left:last-child .cta-buttons {
        width: 100%;
    }
    .block-cta-section .cta-wrapper .cta__right .gradient-circle {
        position: static;
        height: 14.875rem;
        width: auto;
        transform: scale(1.9) translate(5%, 10%);
        transform-origin: top left;
    }
}