/* =====================================================================
 * JP-808 — /en/erp-integration/ (page-id 263012)
 * "Trust in a strong basis" (product-company-section, .purple variant).
 *
 * The section heading renders Dark-Blue but its body copy ("More than 50,000
 * retailers…") renders grey #333. This is the known `.purple`/`.green` variant
 * gap: only the `.orange` product-section variant received the navy body-text
 * cascade, so the purple/green variants fall back to the theme's #333. Figma
 * specifies Dark-Blue body text here.
 *
 * Fix: page-scoped (page-id 263012) navy override on the body text of this
 * page's product-company-section.purple only — NOT a global `.purple` rule
 * (those leak: a global text-colour change broke a cream card on another page,
 * see JP-713/JP-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-263012 .product-company-section.purple p,
body.page-id-263012 .product-company-section.purple strong,
body.page-id-263012 .product-company-section.purple li,
body.page-id-263012 .product-company-section.purple span:not(.product-companies-section__title) {
  color: #0b1b45 !important;
  -webkit-text-fill-color: #0b1b45 !important;
}
