/**
 * The handpicked row.
 *
 * Four across on desktop, and only the first two on phones. Four products this
 * high up on a phone would push the rest of the page a full screen down, so the
 * row stays a row instead of becoming a stack.
 */

/* The .product-small in the selector is there for weight, not for filtering:
   themes and page styles set a display on .col, and hiding has to outrank it. */

@media (max-width: 549px) {
	.cl-popular-row .row > .col.product-small:nth-child(n + 3) {
		display: none;
	}
}
