/* Media gallery layout fix */

.photoswipe-gallery.field-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.photoswipe-gallery.field-items > .field-item {
  width: calc(33.333% - 11px);
  margin: 0;
  display: block;
}

.photoswipe-gallery.field-items > .field-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* tablet */
@media (max-width: 991px) {
  .photoswipe-gallery.field-items > .field-item {
    width: calc(50% - 8px);
  }
}

/* mobil */
@media (max-width: 575px) {
  .photoswipe-gallery.field-items > .field-item {
    width: 100%;
  }
}


/* videó nagyitás*/


.media-oembed-content {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.media-oembed-content iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
}

/* videó nagyitás vége*/


