.hero-stats-slider {
    position: relative;
    width: 100%;
}

.hero-slider-swiper {
    width: 100%;
    overflow: hidden;
}

.hero-slider-swiper .swiper-slide {
    width: 100% !important;
    height: auto;
    box-sizing: border-box;
}

.hero-slide-inner {
    padding-bottom: 8px;
}

.hero-slide-img {
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    margin: 0 auto;
    display: block;
}

/* Quote slide: small thumbnail positioned absolutely at bottom-right */
.hero-slide-text ~ .hero-slide-img-wrap {
    position: absolute;
    bottom: 50px;
    right: -30px;
    transform: translateY(40%);
    z-index: 2;
    pointer-events: none;
}

.hero-slide-text ~ .hero-slide-img-wrap .hero-slide-img {
    width: 90px;
    display: block;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hero-slide-text ~ .hero-slide-img-wrap {
        right: -45px;
    }
}

@media (max-width: 767px) {
    .hero-slide-text ~ .hero-slide-img-wrap {
        bottom: -60px;
        right: 0;
        transform: none;
    }
}

/* Image-only slide: full-width display */
.hero-slide-img-full {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-slide-img-full .hero-slide-img {
    width: 100%;
    height: auto;
}

/* Dot pagination */
.hero-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    position: static;
    width: 100%;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 1;
    transition: background 0.3s ease;
    margin: 0;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: #ffce2d;
}
