/* supplement.css — post-restore fixes for domesticdiva.ca */
html { scroll-behavior: auto; }

/* Article typography baseline — theme's .entry-content h3 forces uppercase+letterspacing
   at 16px (barely bigger than body text), which collapses heading hierarchy on any
   longer article/page. Applies site-wide to every .entry-content, not just injected
   articles, since every WP content page shares the same theme markup. Raise specificity
   with "body .entry-content h3" so it wins regardless of stylesheet load order. */
body .entry-content h2,
body .entry-content h3,
body .entry-content h4 {
  text-transform: none;
  letter-spacing: normal;
}
body .entry-content h3 {
  font-size: 20px;
  margin-top: 1.4em;
}
body .entry-content h4 {
  font-size: 17px;
  margin-top: 1.2em;
}
