.slider {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
}

.slider__wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.slider__slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
}

.slider__slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    z-index: 10;
}

.slider__btn--prev {
    left: 10px;
}

.slider__btn--next {
    right: 10px;
}

@media (max-width: 768px) {
    .slider__slide img {
        max-height: 300px;
    }
}