/* Updates — extracted from MedichPlus style.css */

.mplus-update-image{
    width:100%;
    max-height:260px;
    object-fit:cover;
    border-radius:12px;
    margin:15px 0;
}

/* |-------------------------------------------------------------------------- | MedichPlus Premium Company Updates |-------------------------------------------------------------------------- */

.mplus-updates-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}


/* Card */

.mplus-update-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e7edf3;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: .35s ease;
}


.mplus-update-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}


/* Featured */

.mplus-update-card.featured {
    border: 2px solid #0aa88f;
}


/* Image */

.mplus-update-image-wrapper {

    height:230px;
    overflow:hidden;

}


.mplus-update-image {

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;

}


.mplus-update-card:hover .mplus-update-image {

    transform:scale(1.08);

}


/* Content */

.mplus-update-content {

    padding:25px;

}


.mplus-update-content h3 {

    font-size:22px;
    margin:12px 0;
    color:#123;

}


.mplus-update-content small {

    color:#64748b;

}


.mplus-update-summary {

    margin-top:15px;
    color:#374151;
    line-height:1.7;

}


/* Read more */

.mplus-read-more,
.mplus-show-less {

    margin-top:15px;
    padding:10px 18px;
    border:none;
    border-radius:25px;
    cursor:pointer;
    font-weight:600;
    background:#0aa88f;
    color:white;
    transition:.3s ease;

}


.mplus-read-more:hover,
.mplus-show-less:hover {

    opacity:.85;

}


/* Full details */

.mplus-full-update {

    margin-top:15px;
    padding-top:15px;
    border-top:1px solid #e5e7eb;

    animation:mplusFade .3s ease;

}


@keyframes mplusFade {

    from {
        opacity:0;
        transform:translateY(-10px);
    }

    to {
        opacity:1;
        transform:translateY(0);
    }

}


/* Badges */

.mplus-update-badge,
.mplus-featured-badge {

    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;

}


.mplus-update-badge {

    background:#e0f2fe;
    color:#0369a1;

}


.mplus-featured-badge {

    background:#fff4cc;
    color:#9a6b00;

}


/* Mobile */

@media(max-width:600px){

    .mplus-updates-list {

        grid-template-columns:1fr;

    }


    .mplus-update-content {

        padding:18px;

    }


    .mplus-update-image-wrapper {

        height:200px;

    }

}
.mplus-featured-badge {
    display:inline-block;
    margin:15px 25px 0;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    background:#fff4cc;
    color:#9a6b00;
}


/* ==========================================