/* Laptop/Desktop (more than or equal to 1024px) */
@media (min-width: 1024px) {
  .container { max-width: 1100px; }
  .grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}