/* ==========================================================
   Content Block: Abschnittstrenner
========================================================== */

.section-divider {
    position: relative;
    width: 100%;
    margin: 0;
}

.section-divider::before {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--red, #cb2031);
    content: "";
}

.section-divider__dot {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 10px;
    height: 10px;
    background: var(--red, #cb2031);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}