.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin: 38px 0;
}

.screenshot-grid figure {
  margin: 0;
}

.screenshot-grid img {
  width: 100%;
  height: 680px;
  object-fit: contain;
  background: #fff;
}

.article figure.infographic img {
  max-height: none;
  height: auto;
}

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

  .screenshot-grid img {
    height: auto;
    max-height: 850px;
  }
}
