.cta-with-image {
    display: flex;
    align-items: stretch;
}

.cta-with-image .cta__content {
    flex: 50%;
    padding: 50px 75px 50px 100px;
}

.cta-with-image .content__title {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 10px;
}

.cta-with-image .content__description {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 25px;
}

.cta-with-image .content__button-links {
    display: flex;
    gap: 25px;
}

.cta-with-image .button-link {
    display: flex;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 135%;
}

.cta-with-image .button-link a {
    display: flex;
    gap: 10px;
    box-sizing: border-box;
    padding: 15px 25px;
    border-radius: 50px;
    background: transparent;
    font-size: 15px;
    align-items: center;
    text-decoration: none !important; /* Override astra theme link styling */
    cursor: pointer;
}

.cta-with-image .cta__image {
    flex: 50%;
}

.cta-with-image .cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media only screen and (max-width: 1200px) {
    .cta-with-image .cta__content {
        padding: 25px;
    }

    .cta-with-image .content__title {
        font-size: 25px;
        line-height: 130%;
    }
}

@media only screen and (max-width: 768px) {
    .cta-with-image {
        flex-direction: column;
    }

    .cta-with-image .cta__content {
        flex: 100%;
    }    

    .cta-with-image .content__button-links {
        flex-direction: column;
        gap: 15px;
    }

    .cta-with-image .cta__image {
        width: 100%;
    }

    .cta-with-image .cta__image img {
        height: 345px;
    }
}
