.aum-rolling-images-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.aum-rolling-images-container.has-mask::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to right, var(--aum-rolling-mask-color, #ffffff) 0%, transparent 100%);
}

.aum-rolling-images-container.has-mask::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to left, var(--aum-rolling-mask-color, #ffffff) 0%, transparent 100%);
}

.aum-rolling-images-track {
    display: flex;
    align-items: center;
    will-change: transform;
    height: 100%;
    gap: var(--aum-rolling-gap, 20px);
}

.aum-rolling-image-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
}

.aum-rolling-image-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.aum-rolling-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.aum-rolling-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.aum-rolling-images-container.has-zoom .aum-rolling-image-item:hover img {
    transform: scale(var(--zoom-level, 1.1));
}

@media (max-width: 768px) {
    .aum-rolling-images-container {
        --zoom-level: calc(var(--zoom-level, 1.1) - 0.1);
    }
}