.tc-page {
  width: 100%;
}

.tc-section {
  border-bottom: 1px solid var(--color-border);
}

.tc-alt {
  background: var(--color-surface-dark);
}

.tc-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.tc-narrow {
  max-width: 720px;
}

.tc-medium {
  max-width: 760px;
}

.tc-header h1 {
  margin-bottom: var(--space-2);
}

.tc-definitions {
  padding-left: var(--space-3);
}

.tc-definitions li {
  margin-bottom: var(--space-1);
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .tc-narrow,
  .tc-medium {
    max-width: 100%;
  }
}