/* Fix for image aspect ratio issues */
.cta-slider-container .slide {
    width: 100%;
    height: auto;
    aspect-ratio: 2.5 / 1; /* Match the actual aspect ratio of the images (500x200) */
}

.cta-slider-container .slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
