/* Sekcja rozciągnięta na całą szerokość ekranu */
.full-width-video-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #000; /* Czarne tło jako wypełnienie */
  overflow: hidden;
}

/* Kontener zachowujący proporcje 16:9 (Responsive Ratio) */
.video-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Proporcja 16:9 (9 / 16 = 0.5625) */
  height: 0;
  overflow: hidden;
}

/* Wypełnienie kontenera przez ramkę iFrame */
.video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.img-gllry {
  max-height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0.5rem;
}
.img-gllry img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
  border-radius: 0.5rem;
}
