/* ============================================================================
   JP-742 — JTL-Wawi Changelog: remove the anchor-link icon from the hero title.

   The theme auto-injects `<a class="far fa-link headline-link">` after every
   heading (helpers.php) for deep-linking. On the changelog HERO title
   (`section.bg-secondary > … > h1 "JTL-Wawi Changelog"`) that link points at the
   page itself (`#jtl-wawi-changelog`) and is pointless — the client asked to
   remove the link in the hero text. Hide it (both languages: DE page 154 /
   EN 311686 share the `page-template-changelog` body class). The version
   headings further down keep their anchor links; this only targets the hero.
   The <h1>'s own `id` is untouched, so the changelog's #version scrolling still
   works.
   ============================================================================ */
body.page-template-changelog section.bg-secondary h1 a.headline-link {
	display: none !important;
}
