.sportv-gallery-container  {
  display: grid;
  grid-row-gap: 4px;
  grid-column-gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.sportv-gallery-container > div > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .sportv-gallery-container  {
    grid-template-columns: repeat(2, 1fr);
  }

  .sportv-gallery-container > div > img {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .sportv-gallery-container  {
    grid-template-columns: repeat(1, 1fr);
  }
}