.container {
  width: min(var(--container-max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--muted {
  background: var(--bg-muted);
}

.section__lede {
  margin: 10px 0 24px;
  color: var(--text-muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
