/**
 * qa17-en-cloud-erp-sla-nowrap.css
 * Page: /en/erp-software/jtl-cloud-erp/  (body.page-id-268013)  — Batch #17 item 3.
 *
 * The Enterprise (4th) pricing column's SLA line renders "SLA: SILVER/GOLD/PLATINUM"
 * as a single `<a>` inside `.dark-card-item__card-solutions-title`. There is NO stray
 * <br>/block element in the markup — the string is one inline link. It wraps to two
 * lines on EN purely because the English label ("SILVER/GOLD/PLATINUM", 20 chars) is
 * a few characters wider than the German ("SILBER/GOLD/PLATIN", 18 chars) that the
 * fixed 16px column comfortably fits on one line. Font-size, weight and line-height
 * are already identical to /de/ (16px/400/24px — measured), so this is a wrapping
 * issue, not a size one.
 *
 * Fix: keep the SLA title on ONE line (matching the German layout) — white-space:
 * nowrap on the title + its link. Text content is unchanged. Scoped to the EN page
 * only so the German twin and every other pricing page are untouched.
 */

body.page-id-268013 .dark-card-item__card-solutions-title,
body.page-id-268013 .dark-card-item__card-solutions-title > a {
    white-space: nowrap !important;
}
