/* ===== WellHope Card Slider ===== */
.btn-read-more {
    display: none !important;
}

.de-slider-wrapper {
    position: relative;
    padding: 0 58px;
}

.de-slider-overflow {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.de-slider-overflow:active {
    cursor: grabbing;
}

.de-slider-track {
    display: flex;
    will-change: transform;
}

.de-slider-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}

.de-slide-inner {
    background: rgba(32, 32, 32, 0.82);
    border-radius: 10px;
    padding: 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: background 0.3s ease;
}

.de-slide-inner:hover {
    background: rgba(32, 32, 32, 0.96);
}

.de-slide-inner h4 {
    margin-bottom: 14px;
}

.de-slide-inner p {
    flex: 1;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    padding: 7px 22px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-read-more:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    text-decoration: none;
}

/* Nav Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #56ab2f, #a8e063);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background 0.3s, box-shadow 0.3s;
    outline: none;
    padding: 0;
    box-shadow: 0 4px 15px rgba(86, 171, 47, 0.4);
}

.slider-nav:hover {
    background: linear-gradient(135deg, #43a028, #8ecf4e);
    box-shadow: 0 6px 20px rgba(86, 171, 47, 0.65);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .de-slider-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .de-slider-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .de-slider-wrapper {
        padding: 0 42px;
    }
}