/** Shopify CDN: Minification failed

Line 19:6 Expected identifier but found whitespace
Line 19:8 Unexpected "{"
Line 19:17 Expected ":"
Line 19:43 Expected ":"
Line 27:8 Expected identifier but found whitespace
Line 27:10 Unexpected "{"
Line 27:19 Expected ":"
Line 27:44 Expected ":"

**/


/* CSS from section stylesheet tags */
.featured-banner ul {
  display: grid;
  grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr);
  gap: {{ section.settings.gap_desktop }}px;
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 749px) {
  .featured-banner ul {
    grid-template-columns: repeat({{ section.settings.columns_mobile }}, 1fr);
    gap: {{ section.settings.gap_mobile }}px;
  }
}
.featured-banner img {
  width: 100%;
  height: auto;
  display: block;
}