h1, h2, h3, h4, h5, h6 {
  --typography-spacing-vertical: 1rem;
}

:root {
  --spacing: 0.9rem;
}

code {
  counter-reset: lineCounter;
}

span.line:before {
  content: counter(lineCounter) ".\0000a0";
  counter-increment: lineCounter;
}

@media (min-width: 1200px) {
  .container {
    max-width: min(1430px, calc(100% - 32px));
  }
}

blockquote p {
  margin: 0;
}

.ts-playground {
  font-size: 80%;
  margin-top: -1em;
}