/* Enforce 4×2 on the chosen grid */
.cmsw-shop-preferred,
.cmsw-grid-target{
  display: grid !important;
  gap: 20px !important;
  grid-template-columns: repeat(4, minmax(0,1fr)) !important;
}
/* Hide beyond the first 8 items */
.cmsw-grid-target > *:nth-child(n+9){ display:none !important; }

@media (max-width: 1100px){
  .cmsw-shop-preferred, .cmsw-grid-target{ grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
}
@media (max-width: 900px){
  .cmsw-shop-preferred, .cmsw-grid-target{ grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
@media (max-width: 520px){
  .cmsw-shop-preferred, .cmsw-grid-target{ grid-template-columns: 1fr !important; }
}