/* Church Night static-archive fixes.
   Squarespace galleries relied on JavaScript (stripped from this archive)
   to lay out slides and fade them in. Without that JS the base theme leaves
   every .slide at opacity:0 in a collapsed, JS-positioned strip, so gallery
   thumbnails never appear. These rules restore a static, JS-free grid. */

.sqs-gallery-block-grid .sqs-gallery {
  margin: 0;
  white-space: normal;
  font-size: 0;
  overflow: visible;
}

.sqs-gallery-block-grid .slide {
  opacity: 1 !important;
  float: left;
  width: 33.3333%;
  height: auto !important;
  box-sizing: border-box;
  padding: 4px;
}

.sqs-gallery-block-grid .slide .margin-wrapper,
.sqs-gallery-block-grid .slide a.image-slide-anchor,
.sqs-gallery-block-grid .slide .content-wrapper {
  position: static !important;
  display: block;
  height: auto !important;
  padding-bottom: 0 !important;
}

.sqs-gallery-block-grid .slide img.thumb-image {
  opacity: 1 !important;
  position: static !important;
  width: 100% !important;
  height: auto !important;
  display: block;
}

@media (max-width: 640px) {
  .sqs-gallery-block-grid .slide { width: 50%; }
}
