/**
 * jp-649-partner-heading-color.css
 * Page: /de/jtl-partner/  (body.page-id-234485)
 *
 * The hero heading "Werde Teil des <strong>JTL-Partnernetzwerks</strong>"
 * renders in TWO colours: the base text "Werde Teil des" is JTL Dark Blue
 * (#0b1b45), but the <strong> "JTL-Partnernetzwerks" is charcoal #333 — the
 * base widget (style.css) paints the <strong> via a `background:#333 text` +
 * `-webkit-text-fill-color: transparent` gradient-clip leftover, so it doesn't
 * inherit the heading colour.
 *
 * Fix: unify the whole heading to the "Werde Teil des" colour (#0b1b45) by
 * neutralising the <strong>'s background-clip mechanism and forcing the same
 * Dark Blue fill. Scoped to the page so no other partner-heading instance is
 * touched.
 */
body.page-id-234485 .partner-heading__title strong {
    color: #0b1b45 !important;
    -webkit-text-fill-color: #0b1b45 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
            background-clip: initial !important;
}
