/* Lobeca Plugin Styles */

/* Styles for the three images */
.lobeca-images {
  display: flex;
  justify-content: space-between;
}

.lobeca-image {
  width: 30%;
  cursor: pointer;
}

/* Lightbox styles */
.lobeca-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lobeca-lightbox-image {
  max-width: 90%;
  max-height: 90%;
}

.lobeca-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}


.lobeca-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  /* position top center*/
  object-position: 50% 0;
}