/*
 * Keeps demoted headings looking exactly as they did.
 *
 * Webflow marked every article-preview title in the navigation and the listings
 * as <h1>, which put ten to twenty first-level headings on every page and buried
 * the page's real subject. Those are now <h2>.
 *
 * The size came from the bare `h1` element rule — `.heading-hover` only sets
 * margins — so demoting the tag alone would have shrunk them from 26.5px to
 * 21px. These rules restore the typography the h1 selector was providing, and
 * deliberately leave margins alone so the class keeps controlling them.
 */
h2.heading-hover {
  color: #2b2d32;
  font-family: Dosis, sans-serif;
  font-size: 26.5px;
  font-weight: 700;
  line-height: 34px;
}

/*
 * Section headings on the static pages were h1 too — /kde-investovat had twelve.
 * The first stays as the page title; the rest are h2 and need the same treatment,
 * since `.heading-1` only sets the font family.
 */
h2.heading-1 {
  color: #2b2d32;
  font-family: Dosis, sans-serif;
  font-size: 26.5px;
  line-height: 34px;
}

h2.heading-1.medium {
  font-weight: 500;
}
