/**
 * jp-726-shipping-editions-button.css — JP-726
 *
 * Bug: in the "Editions" (Editionen) dark-card section on the Shipping 2.0
 * page (/en/shipping-software/, /de/versandsoftware/), the highlighted
 * "pro plan" card (`.dark-card-item.show-pro-plan`) renders its orange-filled
 * CTA button (`OPEN BETA TESTEN` / `TEST OPEN BETA`) with WHITE text. Per the
 * JTL design system, dark-navy text on an orange fill is the correct treatment
 * (CLAUDE.md rule 9 — "Dark Blue on Orange is intentional in JTL's system"),
 * and the ticket confirms the button text should be the dark navy blue.
 *
 * Fix: force the pro-plan card's CTA text to --jtl-dark-blue #0b1b45. Only the
 * highlighted pro-plan button is affected; the other cards' cream bordered-
 * transparent buttons (cream text on the dark card) are correct and untouched.
 *
 * Specificity: the dark-card widget paints this text `#fff !important` both in
 * assets/style.css AND in a page-embedded <style> block whose selector runs the
 * full widget chain INCLUDING the variant class (`.green`/`.orange`), landing at
 * ~0,10,1. Since this rule deliberately omits the variant class (so it works on
 * both the `.orange` prod-EN instance and the `.green` clone-DE instance), it
 * would tie one class short — so it is anchored on the `#content` MAIN wrapper
 * (an ID) to dominate regardless of variant. Same `#content`-to-win trick as
 * jp-644-one-jtl; same pro-plan-CTA intent as jp-520-warenwirtschaft-prices.
 *
 * Scope: the two Shipping pages by id — DE 233046, EN 262931. Not scoped
 * globally on the widget; the same white-on-orange likely recurs on other
 * pricing pages and could later be promoted to a widget-level SCSS fix.
 *
 * The typo "TET OPEN BETA" → "TEST OPEN BETA" is CONTENT (per-instance editor
 * text on the EN page, absent from the clone dump) and is fixed separately in
 * scripts/db/jp726-shipping-tet-typo.php.
 *
 * Page:  https://dev-jtl-trung.betterscale.dev/de/versandsoftware/
 * Figma: https://www.figma.com/design/NGhRnXhpI8bbeDQhA9mUzD/JTL-Website-Modules-5
 */

body:is(.page-id-233046, .page-id-262931) #content .product-price-plan-section .dark-card-items .dark-card-item.show-pro-plan .dark-card-item__bottom .dark-card-item__card-link-wrapper a.card-link,
body:is(.page-id-233046, .page-id-262931) #content .product-price-plan-section .dark-card-items .dark-card-item.show-pro-plan .dark-card-item__bottom .dark-card-item__card-link-wrapper a.card-link .text {
    color: #0b1b45 !important;
    -webkit-text-fill-color: #0b1b45 !important;
}
