/* Homepage only: hide the auto-generated H1 (the README title) so the
   centered logo stands on its own. Every other page keeps its H1.

   `is-homepage` is injected on <body> by `hooks/add_homepage_class.py`
   for the page that has `nav: Home` in mkdocs.yml. We can't use
   `data-md-path` because mkdocs-material 9.x doesn't set it on <body>. */

body.is-homepage .md-typeset > h1:first-child {
  display: none;
}