/* Feature 005: WordPress design adoption.
   When the "Design von Wordpress übernehmen" toggle (003) is ON, PrivacyBee's light-DOM elements
   inherit the active theme's typography and colors from the surrounding content container.
   Scope: fonts + colors only (no spacing/borders/buttons). Headings keep PrivacyBee's size/weight.

   !important is required because the PrivacyBee widget injects its own .prx_* styles at runtime
   (client-side, after this stylesheet), so equal-specificity rules would otherwise win the cascade.
   Adoption is opt-in, so overriding the widget defaults here is intentional. */

.prx_text,
.prx_paragraph,
.prx_expandableName,
.prx_expandableRightText,
.prx_expandableText {
    font-family: inherit !important;
    color: inherit !important;
}

.prx_h1,
.prx_h2,
.prx_h3 {
    font-family: inherit !important;
    color: inherit !important;
}
