.collage-section {
  position: relative;
  overflow: hidden; /* Hide overflow to accommodate aspect ratio fluidity */
}

.collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-wrapper {
  overflow: hidden; /* Hide overflow to accommodate aspect ratio fluidity */
  margin-bottom: -4px; /* Remove default bottom margin to eliminate space between rows */
}

.image-wrapper img {
  width: 100%; /* Ensure the images take up the full width of their container */
  height: auto; /* Maintain aspect ratio */
}