.grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
