.best-listings__list {
    margin-top: 24px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
  }

.best-listing {
  width: calc((100% - 50px) / 3);
  border-radius: 5px;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}
.best-listing__background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  transition: all 0.5s ease;
}
.best-listing__info {
  padding: 20px 8px;
  position: relative;
  z-index: 2;
}
.best-listing__title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 25px;
}
.best-listing:hover .best-listing__background {
  transform: scale(1.03);
}
.best-listing::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  top: 0px;
  left: 0px;
  height: 100%;
  background: linear-gradient(90deg, rgba(37, 39, 117, 0.5) 43.75%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (max-width: 991px) {
  .best-listings__list {
    justify-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .best-listing {
    width: calc((100% - 25px) / 2);
  }
}
@media (max-width: 600px) {
  .best-listings__list {
    justify-content: center;
  }
  .best-listing {
    width: 100%;
    max-width: 400px;
  }
}