/* Basic styling for the gallery sliders & captions */
.gp-gallery-top-slider,
.gp-gallery-thumb-slider {
    margin-top: 20px;
}
.gp-gallery-slide,
.gp-gallery-thumb {
    position: relative;
    text-align: center;
}
.gp-gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
}
.gp-gallery-thumb img {
    width: 100px;
    height: auto;
    display: block;
    cursor: pointer;
}
.gp-gallery-caption {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.4);
    color: #fff;
    padding: 5px;
    font-size: 14px;
    text-align: center;
}
.slick-dots li button:before {
    color: #000;
}

\\/* gp-gallery.css */
.gp-gallery-grid {
  margin-top: 20px;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.gp-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gp-gallery-item:hover img {
  transform: scale(1.02);
}
