.slm-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}
.slm-card{
border-radius:15px;
padding:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
background:#fff;
}
.slm-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:12px;
}
@media(max-width:768px){
.slm-grid{
grid-template-columns:repeat(2,1fr);
}
}
