/* Ваш старый рабочий стиль с минимальными правками */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE  
 */

/* Остальные стили Owl Carousel остаются без изменений... */

/* Правильное позиционирование пагинации (точек) */
.rapidwp-posts-carousel .owl-dots {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    text-align: center !important;
    z-index: 10 !important;
    margin: 0 !important;
    top: auto !important;
}

/* Контейнер слайдера */
.rapidwp-posts-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 450px !important;
}

/* Каждый слайд */
.rapidwp-slide-item {
    position: relative;
    height: 450px !important;
    overflow: hidden;
}

/* Изображение в слайде */
.rapidwp-slide-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rapidwp-slide-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rapidwp-slide-item:hover .rapidwp-slide-thumbnail img {
    transform: scale(1.05);
}

/* Текстовый оверлей - правильное позиционирование */
.rapidwp-posts-carousel .rapidwp-slide-item .text-over {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgb(48 67 104) 50%, transparent 100%) !important;
    padding: 25px 30px !important;
    color: #fff !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    top: auto !important;
    border-radius: 8px 8px 0 0 !important;
}

/* Активная точка пагинации */
.rapidwp-posts-carousel .owl-theme .owl-dots .owl-dot.active span,
.rapidwp-posts-carousel .owl-theme .owl-dots .owl-dot:hover span,
.rapidwp-posts-carousel .owl-theme .owl-dots .owl-dot:focus span {
    background: #3498db !important; /* Голубой цвет для активной точки */
    transform: scale(1.2) !important;
}

