.moving-gallery-container-c57b258c {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
}

.moving-gallery-track-c57b258c {
    display: flex;
    width: max-content;
    gap: var(--marquee-gap, 20px);
    --marquee-speed: 20s;
    --marquee-gap: 20px;
}

.moving-gallery-group-c57b258c {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--marquee-gap, 20px);
    min-width: 100%;
}

.moving-gallery-item-c57b258c {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lightbox cursor indicator */
.moving-gallery-container-c57b258c[data-click-action="lightbox"] .moving-gallery-item-c57b258c {
    cursor: zoom-in;
}

.moving-gallery-img-c57b258c {
    object-fit: cover;
    display: block;
    max-width: none;
    height: 180px;
    width: auto;
}

/* Animations */
.moving-gallery-track-c57b258c.direction-left .moving-gallery-group-c57b258c {
    animation: moving_gallery_scroll_left_c57b258c var(--marquee-speed) linear infinite;
}

.moving-gallery-track-c57b258c.direction-right .moving-gallery-group-c57b258c {
    animation: moving_gallery_scroll_right_c57b258c var(--marquee-speed) linear infinite;
}

/* Pause on Hover */
.moving-gallery-container-c57b258c.pause-on-hover:hover .moving-gallery-group-c57b258c {
    animation-play-state: paused;
}

@keyframes moving_gallery_scroll_left_c57b258c {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - var(--marquee-gap)));
    }
}

@keyframes moving_gallery_scroll_right_c57b258c {
    0% {
        transform: translateX(calc(-100% - var(--marquee-gap)));
    }
    100% {
        transform: translateX(0);
    }
}

/* Lightbox overlay elements */
.moving-gallery-lightbox-overlay-c57b258c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.moving-gallery-lightbox-overlay-c57b258c.active {
    opacity: 1;
}

.moving-gallery-lightbox-img-c57b258c {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.moving-gallery-lightbox-overlay-c57b258c.active .moving-gallery-lightbox-img-c57b258c {
    transform: scale(1);
}

.moving-gallery-lightbox-close-c57b258c {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 35px;
    line-height: 1;
    cursor: pointer;
    font-family: sans-serif;
    user-select: none;
    background: none;
    border: none;
    padding: 10px;
}
