/* =====================================================================
 * JP-720 — EN "AI for eCommerce" page (/en/ai/, page-id 310462)
 * ---------------------------------------------------------------------
 * Bug: the checkmark bullet-list text in the three "POWERED BY …"
 *      product cards renders GRAY (#333333) instead of the redesign's
 *      Dark Blue navy.
 *
 *        - POWERED BY DEALAVO
 *        - POWERED BY GREYHOUND
 *        - POWERED BY RETURNLESS · COMING SOON
 *
 *      All three are `section.product-management-section.orange`; their
 *      `ul.list-icons > li` text inherits the theme default #333333.
 *      The adjacent `.purple` "Agentic Commerce" section already renders
 *      its list text at #0b1b45 (that section got the navy cascade) —
 *      it is the visual reference for the target colour.
 *
 * Fix: force the list-item text (and any nested inline text elements)
 *      to Dark Blue #0b1b45 in the orange PM sections on this page.
 *      The gold/checkmark icon (`span.list-icon`, inline `color:#F0AB00`)
 *      is deliberately EXCLUDED via `:not(.list-icon)` so only the text
 *      turns navy — the check icon is out of scope for this ticket.
 *
 * Scope: page-id 310462 (EN /en/ai/). Staging (b376u019-a) and prod share
 *        this id, so the selector is correct on the deploy target. The DE
 *        page /de/ki/ (page-id 302458) shows the same bug but is not part
 *        of JP-720 — track separately if the client wants it too.
 * ===================================================================== */

body.page-id-310462 section.product-management-section.orange ul.list-icons > li,
body.page-id-310462 section.product-management-section.orange ul.list-icons > li *:not(.list-icon) {
    color: #0b1b45 !important;
}
