.gallery-slider {
    margin: 40px 0;
    position: relative;
}

.swiper--auto-w {
    width: 100%;
    overflow: hidden;
}

.swiper-slide--auto-w {
    width: auto;
    height: 500px;
    transition: all 0.3s ease;
}

.swiper-slide--auto-w:hover {
    opacity: 0.9;
}

.swiper-slide__image {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}

.swiper-controls-out {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.swiper__button {
    display: flex;
    gap: 20px;
}

.swiper-button {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-button:hover {
    background: #e5e5e5;
}

.swiper-button img {
    width: 15px;
    height: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .swiper-slide--auto-w {
        height: 250px;
    }
}