/**
 * C4mulo5 – USP-Bar Section
 *
 * Horizontale Leiste mit Argumenten/Trust-Signalen.
 * Drei Stile (plain/divided/bordered), zwei Ausrichtungen (left/center).
 */

/* ═══ Reset für Mesmerize ::before/::after ═══════════════════ */
.c4mulo5-usp-bar .c4m5-usp-wrap::before,
.c4mulo5-usp-bar .c4m5-usp-wrap::after,
.c4mulo5-usp-bar .c4m5-usp-item::before,
.c4mulo5-usp-bar .c4m5-usp-item::after,
.c4mulo5-usp-bar .c4m5-usp-text::before,
.c4mulo5-usp-bar .c4m5-usp-text::after {
    display: none !important;
    content: none !important;
}

/* ═══ WRAP ═══════════════════════════════════════════════════ */
.c4mulo5-usp-bar .c4m5-usp-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 36px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 0;
}

.c4mulo5-usp-bar.c4m5-usp-align-center .c4m5-usp-wrap {
    justify-content: center;
}
.c4mulo5-usp-bar.c4m5-usp-align-left .c4m5-usp-wrap {
    justify-content: flex-start;
}
.c4mulo5-usp-bar.c4m5-usp-align-space .c4m5-usp-wrap {
    justify-content: space-between;
}

/* ═══ ITEM ═══════════════════════════════════════════════════ */
.c4mulo5-usp-bar .c4m5-usp-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: inherit;
}

a.c4m5-usp-item {
    cursor: pointer;
}
a.c4m5-usp-item:hover .c4m5-usp-headline {
    color: #1a5490;
}

.c4mulo5-usp-bar .c4m5-usp-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 84, 144, 0.08);
    color: #1a5490;
}

.c4mulo5-usp-bar .c4m5-usp-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.c4mulo5-usp-bar .c4m5-usp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.c4mulo5-usp-bar .c4m5-usp-headline {
    font-weight: 700;
    font-size: 0.92rem;
    color: #1d2327;
    letter-spacing: 0.01em;
}

.c4mulo5-usp-bar .c4m5-usp-subtext {
    font-size: 0.78rem;
    color: #6b7280;
    margin: 1px 0 0;
}

/* ═══ STIL: "divided" – mit Trennstrichen ═══════════════════ */
.c4mulo5-usp-bar.c4m5-usp-style-divided .c4m5-usp-wrap {
    gap: 0;
}
.c4mulo5-usp-bar.c4m5-usp-style-divided .c4m5-usp-item {
    padding: 6px 32px;
    border-right: 1px solid #e5ebf0;
}
.c4mulo5-usp-bar.c4m5-usp-style-divided .c4m5-usp-item:last-child {
    border-right: none;
}
@media (max-width: 768px) {
    .c4mulo5-usp-bar.c4m5-usp-style-divided .c4m5-usp-item {
        border-right: none;
        padding: 6px 0;
    }
}

/* ═══ STIL: "bordered" – Container mit Rahmen ═══════════════ */
.c4mulo5-usp-bar.c4m5-usp-style-bordered .c4m5-usp-wrap {
    padding: 18px 24px;
    background: #ffffff;
    border: 1px solid #e5ebf0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ═══ STIL: "compact" – kleinere Version ═══════════════════ */
.c4mulo5-usp-bar.c4m5-usp-style-compact .c4m5-usp-icon {
    width: 28px;
    height: 28px;
}
.c4mulo5-usp-bar.c4m5-usp-style-compact .c4m5-usp-icon svg {
    width: 16px;
    height: 16px;
}
.c4mulo5-usp-bar.c4m5-usp-style-compact .c4m5-usp-headline {
    font-size: 0.82rem;
}
.c4mulo5-usp-bar.c4m5-usp-style-compact .c4m5-usp-subtext {
    display: none;
}

/* ═══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .c4mulo5-usp-bar .c4m5-usp-wrap {
        gap: 14px 20px;
    }
    .c4mulo5-usp-bar .c4m5-usp-headline {
        font-size: 0.85rem;
    }
    .c4mulo5-usp-bar .c4m5-usp-subtext {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .c4mulo5-usp-bar .c4m5-usp-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .c4mulo5-usp-bar.c4m5-usp-align-center .c4m5-usp-wrap {
        align-items: center;
    }
}
