.absites-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    line-height: 0;
}

.absites-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.absites-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.absites-slide-img {
    display: block;
    width: 100%;
    height: auto;
}

.absites-slide-img--mobile {
    display: none;
}

@media (max-width: 768px) {
    .absites-slide-img--desktop {
        display: none;
    }
    .absites-slide-img--mobile {
        display: block;
    }
}

.absites-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 10px;
    box-sizing: border-box;
}

.absites-slider-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}

.absites-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.absites-slider-arrow--prev {
    left: 12px;
}

.absites-slider-arrow--next {
    right: 12px;
}

.absites-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.absites-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.absites-slider-dots button.is-active {
    background: #fff;
    transform: scale(1.3);
}
