/* Blossom Gallery Carousel */
.bggc {
  width: 100%;
  position: relative;
}

.bggc-swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}

.bggc-swiper .swiper-wrapper {
  box-sizing: border-box;
}

.bggc-slide {
  margin: 0;
  height: 100%;
}

.bggc-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
}

.bggc-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

/* When using fixed same-height with contain, avoid cropping */
.bggc.is-same-height-contain .bggc-img-wrap {
  display: grid;
  place-items: center;
}
.bggc.is-same-height-contain .bggc-img-wrap img{
  object-fit: contain !important;
  object-position: center center;
  width: 100% !important;
  height: 100% !important;
}

.bggc-caption {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.bggc-swiper .swiper-button-next,
.bggc-swiper .swiper-button-prev {
  color: #111;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bggc-swiper .swiper-button-next:after,
.bggc-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: 700;
}

.bggc-swiper-pagination {
  position: relative;
  margin-top: 16px;
  text-align: center;
}

.bggc-swiper .swiper-pagination-bullet {
  opacity: 0.35;
}

.bggc-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .bggc-swiper .swiper-button-next,
  .bggc-swiper .swiper-button-prev {
    width: 34px;
    height: 34px;
  }
}
