/* Gallery page image structure overrides */

/*--------------------------------------------------------------
# Gallery 4 Section
--------------------------------------------------------------*/
.gallery-4 { ... }
.gallery-4 .venue-gallery { ... }
.gallery-4 .venue-item { ... }

/*--------------------------------------------------------------
# Gallery 5 Section
--------------------------------------------------------------*/
...
.venue-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #fff;
}

.venue-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.venue-gallery:hover img {
  transform: scale(1.05);
}

.venue-map {
  min-height: 300px;
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

/* Space between the map/text row and the first image-card row */
.venue-gallery-container {
  margin-top: 1rem;
}

.venue-info {
  background-color: #9fc5e8;
  padding: 60px 0;
  min-height: 300px;
  position: relative;
}
