.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-xl);
  }
}

.section {
  padding-block: var(--space-2xl);
}

@media (max-width: 640px) {
  .section {
    padding-block: var(--space-xl);
  }
}

.section--tight {
  padding-block: var(--space-xl);
}

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

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

.section--dark {
  background: var(--itx-ink);
}

.section--grid-light {
  background-color: var(--itx-bg-light);
}

.section--grid-white {
  background-color: var(--itx-bg-white);
}

.section--grid-dark {
  background-color: var(--itx-ink);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

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

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

.split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse {
    direction: rtl;
  }
  .split--reverse > * {
    direction: ltr;
  }
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.text-accent {
  color: var(--itx-blue);
}

.is-dark .text-accent,
.section--grid-dark .text-accent {
  color: var(--itx-blue-light);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}
