/** Shopify CDN: Minification failed

Line 21:16 Unexpected "{"
Line 21:25 Expected ":"
Line 21:32 Unexpected "{"
Line 27:13 Expected identifier but found whitespace
Line 27:15 Unexpected "{"
Line 27:24 Expected ":"
Line 27:49 Expected ":"
Line 28:16 Expected identifier but found whitespace
Line 28:18 Unexpected "{"
Line 28:27 Expected ":"
... and 1 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:section-column-about (INDEX:47) */
#AboutColumns--{{ section.id }} {
  display: block;
  position: relative;
}

.about-columns__wrapper {
  margin-top: {{ section.settings.margin_top }}px;
  margin-bottom: {{ section.settings.margin_bottom }}px;
}

.about-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-column__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1.3;
}

@media screen and (max-width: 749px) {
  .about-columns__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .about-column__image {
    aspect-ratio: 1 / 1.3;
  }
}
/* END_SECTION:section-column-about */