/** Shopify CDN: Minification failed

Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 23:10 Expected identifier but found whitespace
Line 23:12 Unexpected "{"
Line 23:21 Expected ":"
Line 23:51 Expected ":"
Line 29:12 Expected identifier but found whitespace
Line 29:14 Unexpected "{"
Line 29:23 Expected ":"
... and 17 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:instagram-gallery (INDEX:30) */
.section-instagram-gallery {
  background-color: {{ section.settings.section_background }};
  padding: {{ section.settings.section_padding }}px 0;
  width: 100%;
}

.instagram-gallery {
  width: 100%;
  max-width: {{ section.settings.container_width | default: 1200 }}px;
  margin: 0 auto;
}

.instagram-gallery__container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.snapwidget-widget {
  max-width: 100%;
  height: {{ section.settings.widget_height }}px !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .snapwidget-widget {
    height: {{ section.settings.widget_height | times: 0.7 | round }}px !important;
  }
  
  .section-instagram-gallery {
    padding: {{ section.settings.section_padding | times: 0.6 | round }}px 0;
  }
}

@media screen and (max-width: 480px) {
  .snapwidget-widget {
    height: {{ section.settings.widget_height | times: 0.5 | round }}px !important;
  }
}
/* END_SECTION:instagram-gallery */