.oge-gallery-slider {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 20px 0 50px; /* space for pagination */
}

.oge-gallery-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.oge-gallery-slider img {
  width: 100%;
  height: 350px;          /* 🔥 fixed uniform height */
  object-fit: cover;      /* crop & fill to fit nicely */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.oge-gallery-slider img:hover {
  transform: scale(1.03);
}

/* Pagination */
.oge-gallery-slider .swiper-pagination {
  position: relative;
  margin-top: 25px;
  text-align: center;
}

.oge-gallery-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #000;
  opacity: 0.3;
  margin: 0 5px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.oge-gallery-slider .swiper-pagination-bullet-active {
  background: #e63946;
  opacity: 1;
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .oge-gallery-slider img {
    height: 250px; /* smaller height for tablets */
  }
}
@media (max-width: 480px) {
  .oge-gallery-slider img {
    height: 180px; /* smaller height for mobile */
  }
}
