body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-family-base);
  font-size: var(--fs-base);
  line-height: 1.5;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

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

.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;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.section-title h2 {
  font-size: var(--fs-lg);
}

.section-title a {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

.section-title a:hover {
  color: var(--color-text-primary);
}

section + section {
  margin-top: var(--space-5);
}
