/** Shopify CDN: Minification failed

Line 14:20 Unexpected "{"
Line 14:29 Expected ":"
Line 26:20 Unexpected "{"
Line 26:29 Expected ":"
Line 33:20 Unexpected "{"
Line 33:29 Expected ":"

**/
/* === Paragraph with logos — Mobile: EXACT 2 ROWS, auto-fit columns === */
@media (max-width: 767px){
  /* Cambiamos la tira a GRID en columnas, con 2 filas fijas */
  #shopify-section-{{ section.id }} ul.list-unstyled{
    display: grid !important;
    grid-auto-flow: column;                 /* llena por columnas */
    grid-template-rows: repeat(2, auto);    /* EXACTAMENTE 2 filas */
    gap: 16px 16px;                         /* row / column gap */
    align-items: center;
    justify-items: center;
    padding-left: 0;
    margin: 0;
  }

  /* Los <li> se centran en su celda */
  #shopify-section-{{ section.id }} ul.list-unstyled > li{
    display: grid;
    place-items: center;
    min-width: 0;                           /* evita overflow */
  }

  /* Los logos se escalan para “entrar” sin deformarse */
  #shopify-section-{{ section.id }} ul.list-unstyled img{
    max-width: 100%;
    height: auto;
    max-height: clamp(44px, 12vw, 72px);    /* tamaño responsive */
    object-fit: contain;
    display: block;
  }
}
