.products {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1050px;
  margin-inline: auto;
  gap: 28px;
}

.photo {
  height: 520px;
  background: #fff;
}

.photo img {
  object-fit: contain;
  background: #fff;
}

@media (max-width: 820px) {
  .products {
    grid-template-columns: 1fr;
  }

  .photo {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
