/* Fix the module container */
.image-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow: hidden;      /* prevents escaping */
}

/* Make images behave */
.image-row img {
  width: calc((100% - 40px) / 5);  /* 5 images with 4 gaps of 10px */
  height: auto;
  display: block;
}