.event-detail-section-gallery__list {
  display: flex;
  gap: 5px;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 40px solid #7d2322;
  padding: 20px 10px 0 10px;
}

.event-detail-section-gallery__item {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-width: 200px;
}
.event-detail-section-gallery__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 300ms ease-in-out;
}
.event-detail-section-gallery__item-image:hover {
  transform: scale(1.1);
}

.event-detail-section-gallery__title {
  font-size: 30px;
  color: white;
  font-family: "Oswald", "sans-serif";
  margin-bottom: 20px;
  font-weight: 500;
}

.gslide-image img.zoomable {
  object-fit: contain;
  width: 80%;
}

@media (min-width: 1024px) {
  .event-detail-section-gallery__list {
    border-top: none;
    border-left: 40px solid #7d2322;
    padding: 20px 0 20px 20px;
  }
}
