/* ======================================
   HERO POST SLIDER WRAPPER
====================================== */
.hero-post-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

/* ======================================
   SLIDE
====================================== */
.hero-post-slider .swiper-slide {
    height: 540px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* ======================================
   GRADIENT OVERLAY
====================================== */
.hero-post-slider .hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.65) 35%,
        rgba(0, 0, 0, 0.35) 60%,
        rgba(0, 0, 0, 0.10) 80%,
        rgba(0, 0, 0, 0.00) 100%
    );
    display: flex;
    align-items: center;
}

/* ======================================
   CONTENT AREA
====================================== */
.hero-post-slider .hero-content {
    max-width: 620px;
    padding-left: 90px;
    padding-right: 30px;
    color: #ffffff;
}

.hero-post-slider .hero-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-post-slider .hero-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.95;
}

/* ======================================
   READ MORE BUTTON
====================================== */
.hero-post-slider .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f7941d;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-post-slider .hero-btn:hover {
    background: #d97706;
    transform: translateX(3px);
}

/* ======================================
   NAVIGATION ARROWS
====================================== */
.hero-post-slider .swiper-button-prev,
.hero-post-slider .swiper-button-next {
    color: #ffffff;
    width: 44px;
    height: 44px;
}

.hero-post-slider .swiper-button-prev {
    left: 25px;
}

.hero-post-slider .swiper-button-next {
    right: 25px;
}

.hero-post-slider .swiper-button-prev::after,
.hero-post-slider .swiper-button-next::after {
    font-size: 22px;
    font-weight: bold;
}

 

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
    .hero-post-slider .swiper-slide {
        height: 460px;
    }

    .hero-post-slider .hero-content {
        padding-left: 50px;
    }

    .hero-post-slider .hero-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .hero-post-slider .swiper-slide {
        height: 380px;
    }

    .hero-post-slider .hero-content {
        padding: 0 25px;
    }

    .hero-post-slider .hero-title {
        font-size: 24px;
    }

    .hero-post-slider .hero-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-post-slider .swiper-slide {
        height: 320px;
    }

    .hero-post-slider .hero-title {
        font-size: 20px;
    }

    .hero-post-slider .hero-text {
        display: none;
    }
}
