/* GRID */
.bano-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.bano-gallery__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
}

.bano-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bano-gallery__more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LIGHTBOX */
.bano-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #fff;
  z-index: 9999;
}

.bano-lightbox::backdrop {
  background: rgba(0,0,0,0.5);
}

.bano-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* SWIPER */
.bano-swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 24px;
}

/* CLOSE */
.bano-lightbox__close,
.bano-lightbox__prev,
.bano-lightbox__next {
  position: absolute;
  z-index: 30;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #111;
}

.bano-lightbox__close {
  top: 24px;
  right: 24px;
  font-size: 28px;
}

/* VIEWPORT */
.bano-lightbox__viewport {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* IMAGE */
.bano-lightbox__track img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
}

/* NAV */
.bano-lightbox__prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}

.bano-lightbox__next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}

.bano-lightbox__top {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 30;
}

.bano-lightbox__prev.is-disabled,
.bano-lightbox__next.is-disabled {
  opacity: 0.2;
  transform: scale(0.95);
  pointer-events: none;
  cursor: default;
}

/* CAPTION */
.bano-lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  text-align: center;
}

@media (max-width: 743px) {
  .swiper-slide img {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .bano-lightbox__prev,
  .bano-lightbox__next {
    display: none;
  }
}

.bano-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.bano-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  border: none;
}

.bano-dot.is-active {
  background: #000;
}

@media (max-width: 743px) {
  .bano-gallery__dots {
    display: flex;
  }
}
