/**
 * jp-728-one-jtl-what-changes-navy.css — JP-728
 *
 * Bug: on /en/one-jtl/ (and /de/one-jtl/) the "What changes. / What gets
 * better." section ("Was sich ändert / Was bleibt") renders its intro
 * paragraph + checklist body text in grey (#333) instead of the Figma's dark
 * navy. jp-644-one-jtl.css already flipped this section's eyebrow, checklist
 * icons and stat numbers to tech-blue, but never set the paragraph / list /
 * stat-label text colour, so it fell through to the theme default #333.
 *
 * Fix: force the section's body copy to --jtl-dark-blue #0b1b45. Loads after
 * jp-644-one-jtl.css (alphabetical), so it wins the cascade.
 *
 * Scope: the same four One-JTL page-ids jp-644 uses. The ids DIVERGE per env —
 *   clone: DE 325408 / EN 325712     prod: DE 326092 / EN 326404
 * — so all four are listed (see CLAUDE.md §3.X.3). NOT scoped on the section's
 * `.orange` class, which is navy-vs-cream ambiguous across pages
 * (reference_orange_subcard_navy_vs_cream).
 *
 * The grey text is confined to the LEFT column (`.row > .col-lg-6:first-child`):
 * the intro paragraph + the 5 checklist rows. The RIGHT column holds the four
 * blue stat cards, whose labels are WHITE-on-blue and must stay white — so the
 * rule is scoped to the first column only, NOT the whole section (an earlier
 * `section p, .keyfacts-new__description` version wrongly turned the white
 * stat-card labels navy, killing their contrast).
 *
 * Deliberately NOT touched: the eyebrow `.product-management-section__subtitle`
 * (a <span>, stays tech-blue #2722f8 per jp-644), the H2 title (already navy),
 * and the whole right-hand stat-card column.
 *
 * Page:  https://dev-jtl-trung.betterscale.dev/de/one-jtl/
 * Figma: https://www.figma.com/design/NGhRnXhpI8bbeDQhA9mUzD/JTL-Website-Modules-5?node-id=1184-12445
 */

body:is(.page-id-325408, .page-id-325712, .page-id-326092, .page-id-326404)
    section.product-management-section.product-support-section .row > .col-lg-6:first-child p,
body:is(.page-id-325408, .page-id-325712, .page-id-326092, .page-id-326404)
    section.product-management-section.product-support-section .row > .col-lg-6:first-child li {
    color: #0b1b45 !important;
    -webkit-text-fill-color: #0b1b45 !important;
}
