/**
 * jp-750-erechnung-bullet-spacing.css — E-Rechnung "Funktionen im Detail" list.
 *
 * Ticket: JP-750 — excessive vertical spacing between the bullet items in the
 *         "Funktionen im Detail" section.
 * Page:   https://b376u019-a.myrdbx.io/de/e-rechnung-software/  (DE, page-id 215914)
 *
 * Cause: the DE list content has stray <br> elements as DIRECT children of the
 * <ul>, between the <li> items. The list is a flex column with gap:10px, so each
 * <br> (a ~20px-tall flex item) adds its own height PLUS a 10px gap on each side
 * → ~46px between items instead of 10px. The EN twin (/en/e-invoicing-software/,
 * page-id 294260) has no such <br> and already spaces correctly at 10px, so this
 * is DE-only.
 *
 * Fix: hide the stray <br> children of the section's list so the intended 10px
 * flex gap is the only spacing (matches EN). Page-scoped to the DE page and to
 * this section's lists (rule 4b) so no other list is touched.
 */
body.page-id-215914 section.product-cta-section ul > br {
    display: none !important;
}
