/* ========== ТИПОГРАФИЯ ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  font-family: var(--font-main);
}

p {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--primary-color);
}

/* Улучшение читаемости для выключки текста */
.text-justify {
  text-align: justify;
  hyphens: auto;
}