
/* SERVICE CARD IMAGE DEFINITIVE FIX */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.service-card{
  overflow:hidden;
}

.service-card img{
  width:100%;
  height:185px;
  object-fit:cover;
  display:block;
  border-radius:16px;
  margin-bottom:20px;
  background:#f7f1e8;
}

@media(max-width:720px){
  .service-card img{
    height:165px;
  }
}
