/** Shopify CDN: Minification failed

Line 70:0 Expected "}" to go with "{"

**/
/* RTE image gallery: spacing + border + shadow */
.rte.scroll-trigger.animate--slide-in {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;                 /* <-- space between images */
  align-items: start;
}

/* Make each image look like a “card” */
.rte.scroll-trigger.animate--slide-in > img {
  width: 100%;
  height: auto;
  display: block;

  border: 2px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  background: #fff;
  padding: 10px;             /* <-- gives border breathing room */
}

/* Mobile tweak */
@media (max-width: 749px) {
  .rte.scroll-trigger.animate--slide-in {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}


/* =========================
   GALLERY (desktop only)
   Section: shopify-section-template--20911897706729__main
   ========================= */
@media screen and (min-width: 750px) {
  /* Background of the whole Gallery section */
  #shopify-section-template--20911897706729__main {
    background: #0c6ceb; /* change this */
  }

  /* Make the content area sit nicely on the background */
  #shopify-section-template--20911897706729__main .page-width {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  /* Make images lay out like a clean grid with spacing */
  #shopify-section-template--20911897706729__main .rte {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;                /* space between pictures */
    justify-content: center;  /* center the row */
    margin-top: 18px;
  }










