/* ─────────────────────────────────────────────────────────────────────────
 * jp-555-lagerverwaltung-wms-showrooms.css — JP-555 [C15]
 * Page: /de/lagerverwaltung-software/  (body.page-id-93818)
 * Target: the "WMS-Showrooms" subcard in the green product-cta-section.
 *
 * Issue: "WMS showrooms – text poorly formatted + button styled as secondary."
 *
 * 1) TEXT — the editor wrapped "JTL-WMS-Showlager" in <strong> mid-sentence,
 *    but a broad rule renders <strong> in the subcard text as a 32px / block
 *    heading, so the sentence "Oder besuche ein JTL-WMS-Showlager unserer
 *    Kunden …" breaks into three lines with a giant heading in the middle.
 *    Fix: render the <strong> inline at body size — bold emphasis, not a
 *    heading.
 *
 * 2) BUTTON — "Finde Servicepartner mit WMS-Showrooms in deiner Nähe" renders
 *    as a filled orange primary pill. It is a low-priority "find a partner"
 *    action sitting under a primary CTA elsewhere on the page, so it should
 *    read as a secondary. Restyle to a Dark Blue (#0b1b45) outline pill —
 *    transparent fill, 2px dark-blue border + label, hover inverts to filled
 *    dark-blue — matching the secondary treatment used on JP-551.
 *
 * Scope: page + the green CTA section's subcard, so no other card is touched.
 */

/* 1) Inline the mid-sentence <strong> */
body.page-id-93818 .product-cta-section.green
    .product-subcard-widget .product-subcard-widget__text strong {
    display: inline !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: 700 !important;
}

/* 2) CTA → secondary Dark Blue outline pill */
body.page-id-93818 .product-cta-section.green
    .product-subcard-widget .product-buttons-group
    .product-button-group__button--with-icon {
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: inset 0 0 0 2px #0b1b45 !important;
    border: 0 !important;
    color: #0b1b45 !important;
}
body.page-id-93818 .product-cta-section.green
    .product-subcard-widget .product-buttons-group
    .product-button-group__button--with-icon .product-button-group__button--with-icon__text,
body.page-id-93818 .product-cta-section.green
    .product-subcard-widget .product-buttons-group
    .product-button-group__button--with-icon span {
    color: #0b1b45 !important;
}
body.page-id-93818 .product-cta-section.green
    .product-subcard-widget .product-buttons-group
    .product-button-group__button--with-icon:hover {
    background-color: #0b1b45 !important;
    box-shadow: inset 0 0 0 2px #0b1b45 !important;
    color: #ffffff !important;
}
body.page-id-93818 .product-cta-section.green
    .product-subcard-widget .product-buttons-group
    .product-button-group__button--with-icon:hover .product-button-group__button--with-icon__text,
body.page-id-93818 .product-cta-section.green
    .product-subcard-widget .product-buttons-group
    .product-button-group__button--with-icon:hover span {
    color: #ffffff !important;
}
