/**
 * Responsive Slider Gallery - Frontend Fixes
 * Fix YouTube thumbnail cropping issue
 */

/* Fix YouTube and video thumbnails - prevent cropping */
.fotorama__img {
    object-fit: contain !important;
    background: #000;
}

/* Ensure proper aspect ratio for video thumbnails */
.fotorama__stage__frame[data-video="true"] .fotorama__img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
}

/* End of common fixes */

