﻿
/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero-swiper {
    width: 100%;
    height: 70vh;
}

    .hero-swiper .swiper-slide {
        background-size: cover;
        background-position: center;
        position: relative;
    }

        .hero-swiper .swiper-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.10);
            pointer-events: none;
        }

    .hero-swiper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 310px;
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100% );
        z-index: 10000;
        pointer-events: none;
    }

    .hero-swiper .swiper-pagination {
        bottom: 28px;
        left: 40px;
        width: auto;
        text-align: left;
    }

    .hero-swiper .swiper-pagination-bullet {
        width: 32px;
        height: 2px;
        border-radius: 2px;
        background: rgba(255,255,255,0.35);
        opacity: 1;
        transition: all 0.3s;
        margin: 0 4px !important;
    }

    .hero-swiper .swiper-pagination-bullet-active {
        background: #fff;
        width: 56px;
    }

@media (max-width: 991px) {
    .hero-swiper {
        height: 60vh;
    }

        .hero-swiper .swiper-pagination {
            left: 20px;
            bottom: 16px;
        }
}

@media (max-width: 576px) {
    .hero-swiper {
        height: 45vh;
    }
}
