.ati-slider {
    position: relative;
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
    gap: 10px;
    overflow: hidden;
}
.ati-slides {
    position: relative;
    display: flex;
    overflow: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 10px;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
    user-select: none;
    position:relative;
    height: 100%;
    max-height: 100%;
}
.ati-slides::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
.ati-slide {
    position: relative;
    flex-shrink: 0;
    width: -webkit-fill-available;
    height: auto;
}
.ati-slide-overlay {
    position: absolute;
    display: flex;
    width: -webkit-fill-available;
    text-align: center;
    bottom: 10px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.ati-slide-overlay > * {
    color: #fff;
    padding: var(--ati-s-padd);
    text-shadow: 0 0 10px #000;
}
.ati-slide-title {
    font-size: 1.8rem;
}
.ati-slide-btn:hover {
    background: #00bcd41a;
    border: #00bcd42b 1px solid;
}
.ati-slide-img {
    width: -webkit-fill-available;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slider-prev,
.slider-next {
    position: absolute;
    cursor: pointer;
    background: #00000050;
    border: none;
    color: #b10000;
    font-size: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    z-index: 1;
}
.slider-prev {
    right: 15px;
}
.slider-next {
    left: 15px;
}
.slider-prev:hover,
.slider-next:hover {
    background: #0303031c;
}
@media screen and (max-width: 1064px) {
    .ati-slide-title {
        font-size: 1rem;
    }
    .ati-slide-btn {
        font-size: .8rem;
    }
}