/* Force course list images to be 1:1 square */
.edukul-courses-grid-item .edukul-courses-img-wrap {
  aspect-ratio: 1 / 1;
  height: auto;
}

.edukul-courses-grid-item .edukul-courses-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes the image crop to fit */
}