/** Shopify CDN: Minification failed

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

**/


/* CSS from section stylesheet tags */
#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;
  }
}