.page-cta{
    background-color: var(--color-primary-4);
    overflow: hidden;
}
.page-cta-outer-container{
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    >.container{
        display: flex;
        justify-content: end;
        align-items: center;
    }
    >.circle-1,
    >.circle-2{
        position: absolute;
        z-index: -1;
        border-radius: 50%;
        aspect-ratio: 1;
    }
    >.circle-1{
        top: -100px;
        left: -50px;
        width: 200px;
        background-color: var(--color-primary-3);
    }
    >.circle-2{
        bottom: -474px;
        right: 0px;
        width: 700px;
        background-color: color-mix(in oklab, white 50%, transparent);
    }
}

.page-cta-content{
    >h3,>p,>a{
        color: white;
    }
    >p{
        margin-top: 24px;
        margin-bottom: 40px;
    }
}
.page-cta-img{
    flex-shrink: 0;
    width: 100%;
    max-width: 486px;
    >img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }
}

@media screen and (width < 1024px) {
    .page-cta-outer-container > .container{
        padding-top: 80px;
        flex-direction: column;
        gap: 40px;
    }
    .page-cta-content{
        >h3,>p,>a{
            text-align: center;
        }
        >a{
            margin: 0 auto;
        }
    }
}
@media screen and (width < 768px) {
    .page-cta-content{
        >p{
            margin-top: 12px;
            margin-bottom: 24px;
        }
    }
}
@media screen and (width < 576px) {
    .page-cta-outer-container > .container{
        padding-top: 60px;
    }
}