.slaider-content {
    max-width: 1382px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
    box-sizing: border-box;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 1; /* Сохраняем пропорции 2:1 для всех слайдов */
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 12px 15px;
    text-align: center;
    font-size: 14px;
}

/* Навигационные точки */
.slick-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.slick-dots li {
    display: inline-block;
    margin: 0 4px;
}

.slick-dots li button {
    background: rgba(255,255,255,0.5);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    text-indent: -9999px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background: #fff;
    width: 12px;
    height: 12px;
}

/* Стрелки навигации */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
    background: rgba(0,0,0,0.8);
}

.slick-prev:before, .slick-next:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.slick-prev {
    left: 15px;
}

.slick-prev:before {
    border-width: 8px 12px 8px 0;
    border-color: transparent white transparent transparent;
    margin-left: -2px;
}

.slick-next {
    right: 15px;
}

.slick-next:before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent white;
    margin-left: 2px;
}
.post-content{
    max-width: 1352px;
    margin: 0 auto 20px;
}

/* Адаптация для планшетов (768px - 1024px) */
@media (max-width: 1024px) {
    
    .slick-prev, .slick-next {
        width: 32px;
        height: 32px;
    }
    
    .slick-prev {
        left: 10px;
    }
    
    .slick-next {
        right: 10px;
    }
    
    .slide-caption {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Адаптация для мобильных (480px - 767px) */
@media (max-width: 767px) {

    .slick-prev, .slick-next {
        width: 28px;
        height: 28px;
    }
    
    .slide-caption {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .slick-dots li button {
        width: 8px;
        height: 8px;
    }
    
    .slick-dots li.slick-active button {
        width: 10px;
        height: 10px;
    }
}

/* Адаптация для маленьких мобильных (320px - 479px) */
@media (max-width: 479px) {
    .slaider-content{
        padding: 0;
    }
    .slick-prev, .slick-next {
        width: 24px;
        height: 24px;
        display: none; /* Скрываем стрелки на очень маленьких экранах */
    }
    
    .slide-caption {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .slick-dots {
        bottom: 10px;
    }
    
    .slick-dots li {
        margin: 0 3px;
    }
}