/**
 * Typography CSS
 * Fonts and text styles
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: calc(var(--spacing-unit) * 0.9);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2.125rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--spacing-unit);
}

ul,
ol {
  margin-bottom: var(--spacing-unit);
  padding-left: calc(var(--spacing-unit) * 2);
}

blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: var(--spacing-unit);
  margin: var(--spacing-unit) 0;
  font-style: italic;
}

code {
  background-color: var(--color-bg-light);
  padding: calc(var(--spacing-unit) * 0.25);
  border-radius: 3px;
  font-family: monospace;
}

.text-block {
  max-width: 70ch;
  margin-inline: auto;
}

.text-block > *:not(:last-child) {
  margin-bottom: var(--spacing-unit);
}
