/* JP-786 — "Logistics as a Growth Driver in E-Commerce" whitepaper page
   (/de/logistik-als-wachstumstreiber  = page-id 326672,
    /en/logistics-as-a-growth-driver-in-ecommerce = page-id 326673).

   Bug: the body copy renders GRAY instead of the redesign's Dark Blue. Root
   cause is the product-landing template's base rule in the theme style.css:
       .page-template-product-landing main { color: #333; }
   Headings are set to #0b1b45 explicitly, but the paragraphs/list items/etc.
   inherit that #333 gray.

   Fix: restore the inherited default on <main> to Dark Blue #0b1b45 for these
   two pages only. Elements that carry their OWN colour (headings, links,
   white-on-dark chips, WPBakery custom colours) keep it — this only repaints
   what currently falls through to the #333 default. Specificity (0,1,2) beats
   the template rule (0,1,1), so no !important needed.

   Page-scoped per rule 4b (never a global text-colour change — see the
   .orange/.green cascade note). Body page-ids verified identical clone <-> prod
   (326672/326673), so the same scope works on both. 304462 is the older DE
   draft slug on the clone; included for safety (it redirects to 326672 on prod). */

body:is(.page-id-326672, .page-id-326673, .page-id-304462) main {
    color: #0b1b45;
}
