.container {
  width: min(100% - 48px, var(--container-width));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-title {
  max-width: 940px;
  margin-bottom: 40px;
}

.section-title--center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title--light h2,
.section-title--light p {
  color: #ffffff;
}

.section-title h2 {
  color: var(--color-text-strong);
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title p {
  font-size: 20px;
  line-height: 1.4;
}

.two-columns {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 1.1fr 0.9fr;
}

.two-columns--wide {
  gap: 56px;
  grid-template-columns: 0.75fr 1.25fr;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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