/** Shopify CDN: Minification failed

Line 34:17 Expected identifier but found whitespace
Line 34:19 Unexpected "{"
Line 34:28 Expected ":"

**/


/* CSS from section stylesheet tags */
.mox-cards-grid {
  width: 100%;
  }

  .mox-cards-grid.layout-grid .mox-cards-container {
  display: grid;
  grid-template-columns: 1fr; /* Mobile */
  }

  @media (min-width: 768px) {
  .mox-cards-grid.layout-grid .mox-cards-container {
  grid-template-columns: repeat(2, 1fr); /* Tablet */
  }
  }

  @media (min-width: 1024px) {
  .mox-cards-grid.layout-grid .mox-cards-container {
  grid-template-columns: repeat(var(--desktop-cols, 3), 1fr);
  }
  }

  /* Ajuste para el número de columnas dinámico en desktop */
  .mox-cards-container {
  --desktop-cols: {{ section.settings.columns }};
  }

  .mox-cards-grid.layout-row .mox-cards-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  }

  .mox-cards-grid.layout-row .mox-card-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 250px; /* Ajusta según tu diseño */
  }

  .mox-card-item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  }