/** Shopify CDN: Minification failed

Line 14:8 Unexpected "{"
Line 14:17 Expected ":"
Line 23:10 Unexpected "{"
Line 23:19 Expected ":"
Line 30:8 Unexpected "{"
Line 30:17 Expected ":"
Line 35:8 Unexpected "{"
Line 35:17 Expected ":"

**/

  .rv--{{ section.id }} .rv__grid {
    display: grid;
    gap: 16px;
     margin: 20px 0 50px;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* mobile: 2 */
   
  }
  .rv__grid {width:100%;}
  @media screen and (min-width: 990px) {
    .rv--{{ section.id }} .rv__grid {
      grid-template-columns: repeat(6, minmax(0, 1fr)); /* desktop: 6 */
    }

  }
 /* Mobile: single 2 row, 4 items only */
@media screen and (max-width: 989px) {
  .rv--{{ section.id }} .rv__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rv--{{ section.id }} .rv__grid > *:nth-child(n+5) {
    display: none !important;
  }
}

