/* Targeted gallery repair: keep the original masonry-style layout, but stop later CMS-injected images from becoming tiny/warped. */
.gallery:not(.fixed-gallery) figure:nth-child(n+7){
  grid-column:span 4;
  min-height:280px;
}

.gallery:not(.fixed-gallery) figure:nth-child(n+7) img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  max-width:none;
  transform:none;
}

.gallery:not(.fixed-gallery) figure:nth-child(n+7) figcaption{
  display:block;
  white-space:normal;
  line-height:1.35;
  text-align:center;
}

@media(max-width:960px){
  .gallery:not(.fixed-gallery) figure:nth-child(n+7){
    grid-column:span 12;
    min-height:270px;
  }
}
