.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-item {
  width: calc(45% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-item img {
  max-width: 100%;
  max-height: 60vh;
  display: block;
  border-radius: 8px;
}

.caption {
  max-width: 80%;
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  color: #0eeadf;
}

.image-grid > .image-item {
  margin: auto
}
