/**
 * The slideshow widget style
 */

.slideshow {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 20px;
}

.slideshow-images {
    display: flex;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.slideshow-images img, .slideshow-images > picture {
    width: 100%;
    height: 260px;
    object-fit: cover;
    flex-shrink: 0;
}

.slideshow-images > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.slideshow-nav button {
    width: 24px;
    height: 10px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    margin: 0 2px;
}

.slideshow-nav button.active {
    background: white;
}