/* Listen (<ul><li>) innerhalb der ACF-Textblöcke (.boxed-content)
   Standard-Theme lieferte dafür keine Styles -> Bullets liefen ohne
   Abstand direkt in die nächste Überschrift. Farben/Größen an
   bestehende Helper angelehnt (.text-blue, .text-highlight, .text-18).
   ============================================================ */

.boxed-content ul {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.boxed-content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 26px;
    color: #333;
}

.boxed-content ul li:last-child {
    margin-bottom: 0;
}

.boxed-content ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 8px;
    height: 8px;
    background-color: #55a2b2;
    border-radius: 50%;
}
