/* ------------------------------------------------------------------
   Handy Bikes — custom style overrides
   Added 12 August 2026 · revised same day

   Purpose: the Janet theme sizes H1 headings at 41-42px, noticeably
   larger than H2 at 36px. Every page needs a proper H1 for search
   engines, but at the theme's default size it looks oversized.
   This sets H1 to 36px so it matches the H2 headings already in use.

   Search engines read the H1 tag, not its size, so this changes nothing
   about SEO — only how big the heading looks.

   NOTE: no mobile breakpoint here on purpose. The theme keeps H2 at 36px
   and H3 at 30px on phones rather than scaling them down, so scaling H1
   down would make the page's main heading smaller than its subheadings.
   A single size at every width keeps the hierarchy correct.
   ------------------------------------------------------------------ */

h1,
.h1 {
  font-size: 36px !important;
}
