.dbo-two-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  /* DO NOT set gap here — it will come dynamically from inline styles */
}

.dbo-two-image-grid > .dbo-cell,
.dbo-two-image-grid figure.dbo-cell {
  margin: 0;   /* removes browser’s default figure margin */
  padding: 0;
}

.dbo-two-image-grid .dbo-cell img {
  display: block;
  width: 100%;
  height: auto;
}
