.tfm-Container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-4);
}

@media (min-width: 640px) {
  .tfm-Container {
    padding: 0 var(--spacing-6);
  }
}

@media (min-width: 1024px) {
  .tfm-Container {
    padding: 0 var(--spacing-8);
  }
}

.tfm-Grid {
  display: grid;
  gap: var(--spacing-6);
}

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

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

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

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

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

.tfm-Flex {
  display: flex;
}

.tfm-Flex--center {
  align-items: center;
  justify-content: center;
}

.tfm-Flex--between {
  align-items: center;
  justify-content: space-between;
}

.tfm-Flex--col {
  flex-direction: column;
}

.tfm-Section__title {
  text-align: center;
  margin-bottom: var(--spacing-12);
  color: var(--color-foreground);
}

@media (min-width: 768px) {
  .tfm-Section__title {
    margin-bottom: var(--spacing-16);
  }
}
