/* Стили только для второго слайдера */
.slider-two-container {
    /* max-width: 1200px; */
    margin: 40px auto;
    padding: 0 15px;
}

.slider-two-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider-two {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 500px;
}

.slide-two {
    min-width: 100%;
    height: 100%;
}

.slide-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-two-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.7);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-two-btn:hover {
    background-color: #fff;
}

.slider-two-prev {
    left: 25px;
}

.slider-two-next {
    right: 25px;
}

.slider-two-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot-two {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot-two.active {
    background-color: #fff;
}

/* Адаптив */
@media (max-width: 768px) {
    .slider-two {
        height: 400px;
    }

    .slider-two-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .slider-two {
        height: 300px;
    }

    .slider-two-dots {
        bottom: 15px;
    }

    .dot-two {
        width: 10px;
        height: 10px;
    }
}