/* ACF Products Grid for Elementor - basic styles */
.apge-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr)); /* override by Elementor controls */
  gap:24px;
}
.apge-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  overflow:hidden;
}
.apge-card__image{
  width:100%;
  height:220px;
  overflow:hidden;
}
.apge-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.apge-card__title{ margin:14px 0 8px 0; }
.apge-card__desc{ line-height:1.6; }
.apge-card > .apge-card__title,
.apge-card > .apge-card__desc{ padding:0 16px 0 16px; }
.apge-card__desc:last-child{ padding-bottom:16px; }
