/** Shopify CDN: Minification failed

Line 40:19 Expected identifier but found whitespace
Line 40:21 Unexpected "{"
Line 40:30 Expected ":"
Line 41:8 Expected identifier but found whitespace
Line 41:10 Unexpected "{"
Line 41:19 Expected ":"
Line 42:14 Expected identifier but found whitespace
Line 42:16 Unexpected "{"
Line 42:25 Expected ":"
Line 48:14 Expected identifier but found whitespace
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.instagram-embed-section {
  text-align: center;
}
.instagram-embed-title {
  margin-bottom: 24px;
}
.instagram-embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.instagram-embed-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.instagram-embed-item > * {
  width: 100% !important;
  height: 100% !important;
}
.instagram-feed-section {
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
  font-family: {{ section.settings.body_font.family }};
  padding: 60px 0;
  text-align: center;
}

.instagram-feed-title {
  font-family: {{ section.settings.heading_font.family }};
  margin-bottom: 24px;
}

.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  justify-items: center;
}

.instagram-feed-grid a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}