/* BR TRIP GALLERY LAYOUT FIX V1
   The old gallery intentionally broke out of .article to ~1120px.
   That conflicts with the newer two-column subpage shell + contextual sidebar.
   Keep trip galleries inside the primary content column. */

html body.siteBody main.siteMainSubpage > .wrap.article > section[aria-label="Galeria zdjęć"]{
  position:static !important;
  left:auto !important;
  right:auto !important;
  width:100% !important;
  max-width:100% !important;
  margin:42px 0 0 !important;
  transform:none !important;
}

html body.siteBody main.siteMainSubpage > .wrap.article > section[aria-label="Galeria zdjęć"] > h2{
  margin:0 0 18px !important;
}

html body.siteBody main.siteMainSubpage > .wrap.article [data-lightbox-gallery]{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
}

html body.siteBody main.siteMainSubpage > .wrap.article [data-lightbox-gallery] > figure.card{
  min-width:0 !important;
  width:auto !important;
  max-width:100% !important;
}

@media(max-width:900px){
  html body.siteBody main.siteMainSubpage > .wrap.article [data-lightbox-gallery]{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
  }
}

@media(max-width:390px){
  html body.siteBody main.siteMainSubpage > .wrap.article [data-lightbox-gallery]{
    grid-template-columns:1fr !important;
  }
}
