.wbss-slider {
    position: relative;
    width: 100%;
    max-width: 1110px; /* 3 slides × (290px + 40px left + 40px right margin) */
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 15px;
}

.wbss-slider-container {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    justify-content: flex-start;
    will-change: transform;
}

.wbss-slide-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wbss-slide {
    flex: 0 0 290px;
    position: relative;
    width: 290px;
    height: 185px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    margin-left: 40px;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    visibility: visible;
}


.wbss-slide:last-child {
    margin-right: 0;
}

.wbss-slide img {
    max-width: 290px;
    max-height: 185px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.wbss-slide.wbss-bordered {
    border: 10px solid;
    border-top-color: var(--dark-color);
    border-left-color: var(--dark-color);
    border-right-color: var(--light-color);
    border-bottom-color: var(--light-color);
    box-sizing: border-box;
    box-shadow: 0 0 0 1px #000;
}

.wbss-slide.wbss-bordered::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid #000;
    pointer-events: none;
}

.wbss-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 2;
}

.wbss-prev,
.wbss-next,
.wbss-pause {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 14px;
    transition: background 0.3s, opacity 0.3s;
}

.wbss-pause {
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1;
    opacity: 0;
}

.wbss-slider:hover .wbss-pause,
.wbss-pause:focus-visible {
    opacity: 1;
}

.wbss-prev:hover,
.wbss-next:hover,
.wbss-pause:hover {
    background: rgba(0, 0, 0, 0.8);
}

.wbss-prev:focus-visible,
.wbss-next:focus-visible,
.wbss-pause:focus-visible {
    outline: 3px solid #333;
    outline-offset: 2px;
}

.wbss-slider-bullets {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.wbss-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.6);
    padding: 0;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.6);
}

.wbss-bullet.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(0, 0, 0, 0.6);
}

.wbss-bullet:focus-visible {
    outline: 3px solid #333;
    outline-offset: 2px;
}

/* Visually hidden live region for AT announcements */
.wbss-live-region {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
} 