﻿.image-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.slide-title {
    color: #333;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.slide-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.swiper {
    width: 100%;
    height: 500px;
}

.swiper-button-next, .swiper-button-prev {
    color: #333;
    background: rgba(255,255,255,0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
    }

.swiper-pagination-bullet-active {
    background: #333;
}

@media (max-width: 768px) {
    .slide-image {
        height: 300px;
    }

    .swiper {
        height: 400px;
    }

    .slide-title {
        font-size: 1.1rem;
    }
}
