/* Kontener główny – maksymalna wysokość 700px, układ w kolumnie */
.gallery-block {
  max-height: 700px;
  height: 700px;               /* wymusza dokładnie 700px, a max-height zabezpiecza, gdyby nadpisać height */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gallery-block * {
    -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  box-sizing: border-box;
}

/* Duży slider – 75% wysokości kontenera */
.gallery-block .gallery-main {
  flex: 0 0 80%;
  position: relative;
  width: 100%;
}

/* Thumbnail slider – 25% wysokości kontenera */
.gallery-block .gallery-thumbs {
  flex: 0 0 20%;
  position: relative;
  width: 100%;
  padding-top: 16px;
}

.gallery-block .gallery-thumbs .swiper-wrapper {
	justify-content: center;
}

/* Każdy slide obu swiperów wypełnia 100% wysokości swojego kontenera */
.gallery-block .gallery-main .swiper-slide,
.gallery-block .gallery-thumbs .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.gallery-block .gallery-thumbs .swiper-slide {
  height: 100%;           /* dziedziczy 25% z kontenera .gallery-thumbs */
  width: auto;
  aspect-ratio: 9 / 8;    /* width = height * (3/4) */
  flex-shrink: 0;         /* zapobiega kurczeniu się */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.7;
}

.gallery-block .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

/* Obrazy i iframe w dużym sliderze */
.gallery-block .gallery-main img,
.gallery-block .gallery-main iframe {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.gallery-block .gallery-main .video-wrapper{
    width: 100%;
}

.gallery-block .gallery-main iframe{
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 16 / 9;
}


/* Miniaturki w thumbs: wypełniają cały slide */
.gallery-block .gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Styl napisu “Video” w miniaturkach */
.gallery-block .video-thumb {
  width: 64px;
  height: 64px;
}

/* navigation buttons */
.gallery-block .gallery-main .swiper-button-prev-gallery,
.gallery-block .gallery-main .swiper-button-next-gallery {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.gallery-block .gallery-main .swiper-button-prev-gallery.swiper-button-disabled,
.gallery-block .gallery-main .swiper-button-next-gallery.swiper-button-disabled{
    opacity: 0.3;
}

.gallery-block .gallery-main .swiper-button-prev-gallery {
  left: 24px;
}

.gallery-block .gallery-main .swiper-button-next-gallery {
  right: 24px;
}

@media (max-width: 781px) {
    .gallery-block{
        height: 600px;
    }

  .wp-block-group.has-global-padding .gallery-block {
    padding-left: 0;
    padding-right: 0;
  }
  .gallery-block .gallery-main{
    width: 100%;
  }
  
}
