.mml-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin:40px 0;
}
.mml-card{
background:#fff;
padding:25px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
@media(max-width:767px){
.mml-grid{grid-template-columns:1fr;}
}
