.fsb-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

.fsb-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--fsb-transition, 1000ms) ease-in-out;
}

.fsb-slider img:first-child {
    opacity: 1;
}

.fsb-slider img.active {
    opacity: 1;
}

.fsb-slider .fsb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    background: rgba(0,0,0,0.55);
    color: #fff !important;
    font-size: 32px;
    font-weight: bold;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    pointer-events: auto;
}

.fsb-slider .fsb-arrow:hover {
    background: rgba(0,0,0,0.8);
}

.fsb-slider .fsb-prev {
    left: 10px;
}

.fsb-slider .fsb-next {
    right: 10px;
}
