.mpg-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
}
@media(max-width:768px){
    .mpg-grid{grid-template-columns:repeat(2,1fr);}
}
.mpg-item{
    background:#fff;
    padding:15px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
.mpg-item img{
    width:100%;
    border-radius:60px 0px 60px 0px;
}
/* GRID LAYOUT */
.mpg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: start;
}

/* MOBILE 2 COLUMN */
@media (max-width: 768px) {
    .mpg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* GRID ITEM — NO BACKGROUND */
.mpg-item {
    text-align: center;
    padding: 0;                /* No background, no padding */
    background: none !important;
    box-shadow: none !important;
}

/* IMAGE STYLING */
.mpg-item img {
    width: 100%;
    height: auto;
    border-radius: 18px;       /* Smooth rounded corners */
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER ZOOM EFFECT */
.mpg-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.20);
}

/* TITLE */
.mpg-item h3 {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    color: white;            /* Deep clinic-style navy */
}

/* DESCRIPTION */
.mpg-item p {
    margin-top: 6px;
    font-size: 14px;
    color: white;
    line-height: 1.5;
}
