/* IT-SCHNITTSTELLE P1.4G
   Bullet collision fix for /it-projekt-pruefen
   Scope: container uid 773 only.

   Problem:
   The theme still paints an additional bullet/background marker.
   We neutralize ALL list marker channels first, then add exactly one marker.
*/

#c773 ul,
#c773 ol {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    padding-left: 0 !important;
}

#c773 ul > li {
    position: relative !important;
    display: block !important;
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    background: none !important;
    background-image: none !important;
    text-indent: 0 !important;
    padding-left: 1.35rem !important;
}

#c773 ul > li::marker {
    content: "" !important;
    font-size: 0 !important;
}

#c773 ul > li::before,
#c773 ul > li::after {
    content: none !important;
    display: none !important;
}

/* Draw exactly one marker using a background gradient on the LI itself.
   This avoids collisions with theme ::before/::after rules. */
#c773 ul > li {
    background-image: linear-gradient(
        var(--lp-brand, #006b8f),
        var(--lp-brand, #006b8f)
    ) !important;
    background-repeat: no-repeat !important;
    background-size: 0.38rem 0.38rem !important;
    background-position: 0 0.72em !important;
}