/* Ensure 20px border radius on all images inside Call to Action elements across all viewports */
.elementor-widget-call-to-action .elementor-cta__bg-wrapper,
.elementor-widget-call-to-action .elementor-cta__bg,
.elementor-widget-call-to-action .elementor-cta__img,
.elementor-widget-call-to-action .elementor-cta__img img,
.elementor-cta .elementor-cta__bg-wrapper,
.elementor-cta .elementor-cta__bg,
.elementor-cta img,
.cta-container img {
    border-radius: 20px !important;
    overflow: hidden !important;
}

/* Ensure top-right and bottom-right borders have 20px radius in mobile */
@media (max-width: 767px) {
    .elementor-widget-call-to-action .elementor-cta__bg-wrapper,
    .elementor-widget-call-to-action .elementor-cta__bg,
    .elementor-widget-call-to-action .elementor-cta__img,
    .elementor-widget-call-to-action .elementor-cta__img img,
    .elementor-cta .elementor-cta__bg-wrapper,
    .elementor-cta .elementor-cta__bg,
    .elementor-cta img,
    .cta-container img {
        border-top-right-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
        overflow: hidden !important;
    }
}
