/* ============================================
   Three Column Grid Layout
   ============================================ */

.layout--3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 640px) {
  .layout--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .layout--3col {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
  }
}