/* Cover Block Slideshow Styles - Image Source Changes */

/* Smooth transition for image source changes */
.mo-cover-slideshow img.wp-block-cover__image-background,
.mo-cover-slideshow img[class*="wp-block-cover"],
.mo-cover-slideshow .wp-block-cover img {
    transition: opacity 0.5s ease-in-out;
}

/* Object fit contain styles for frontend */
.wp-block-cover.has-object-fit-contain .wp-block-cover__image-background {
    object-fit: contain !important;
}

.wp-block-cover.has-object-fit-contain .wp-block-cover__video-background {
    object-fit: contain !important;
}

/* For slideshow images */
.wp-block-cover.has-object-fit-contain[data-slideshow-enabled="true"] .wp-block-cover__image-background {
    object-fit: contain !important;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    .mo-cover-slideshow img.wp-block-cover__image-background,
    .mo-cover-slideshow img[class*="wp-block-cover"],
    .mo-cover-slideshow .wp-block-cover img {
        /* Slightly faster transitions on mobile for better performance */
        transition: opacity 0.3s ease-in-out;
    }
}
