/** Shopify CDN: Minification failed

Line 48:20 Unexpected "{"
Line 48:29 Expected ":"
Line 48:36 Unexpected "{"
Line 64:20 Unexpected "{"
Line 64:29 Expected ":"
Line 64:36 Unexpected "{"

**/
.counters-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: 2rem;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
  padding-bottom: 0;
}

.counter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.counter-number {
  font-size: var(--counter-size);
  font-weight: 700;
  line-height: 1;
}

.counter-title {
  font-size: var(--title-size);
  font-weight: 700;
}

.counter-desc {
  font-weight: 100;
  font-size: var(--desc-size);
  line-height: 1.5;
}

/* Tablet (2 columns) */
@media screen and (max-width: 989px) {
  #shopify-section-{{ section.id }} {
    --grid-cols: 2;
    --counter-size: 48px;
    --title-size: 20px;
    --desc-size: 15px;
  }
  .counters-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  grid-template-columns: repeat(2, 1fr);

  }
}

/* Mobile (1 column) */
@media screen and (max-width: 479px) {
  #shopify-section-{{ section.id }} {
    /* --grid-cols: 1; */
    --counter-size: 40px;
    --title-size: 18px;
    --desc-size: 14px;
  }
  
  .counters-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  /* grid-template-columns: repeat(2, 1fr); */

  }
}