/* =====================================================================
 * JP-815 — /de/pos-system/ (page-id 96380) + /en/pos-system/ (page-id 263000)
 * "JTL-POS ist Teil des bewährten JTL-Ökosystems" /
 * "JTL-POS is part of the proven JTL ecosystem" (product-company-section.purple)
 *
 * Same defect as JP-808: the section heading renders Dark-Blue but its body
 * copy ("Mit über 50.000 aktiven …", "Mitglied im DFKA …") renders grey #333.
 * This is the known `.purple`/`.green` product-section variant gap — only the
 * `.orange` variant received the navy body-text cascade, so purple/green fall
 * back to the theme's #333. Figma specifies Dark-Blue body text.
 *
 * Fix: page-scoped (both language page-ids) navy override on this section's
 * body text only — NOT a global `.purple` rule (those leak; cf JP-713/717).
 * -webkit-text-fill-color is set alongside `color` because the theme sets it
 * and it wins over `color` for glyph fill.
 * ===================================================================== */

body.page-id-96380 .product-company-section.purple p,
body.page-id-96380 .product-company-section.purple strong,
body.page-id-96380 .product-company-section.purple li,
body.page-id-96380 .product-company-section.purple span:not(.product-companies-section__title),
body.page-id-263000 .product-company-section.purple p,
body.page-id-263000 .product-company-section.purple strong,
body.page-id-263000 .product-company-section.purple li,
body.page-id-263000 .product-company-section.purple span:not(.product-companies-section__title) {
  color: #0b1b45 !important;
  -webkit-text-fill-color: #0b1b45 !important;
}
