/* L3CON Consent Banner */
#l3con-consent {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: #ffffff;
    border-top: 3px solid #848B97; /* L3CON-Blau ggf. anpassen */
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #222;
    padding: 20px 24px;
}
#l3con-consent .l3con-consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
#l3con-consent h2 {
    font-size: 16px;
    margin: 0 0 6px 0;
    color: #848B97;
}
#l3con-consent p { margin: 0; line-height: 1.45; }
#l3con-consent a { color: #848B97; text-decoration: underline; }
#l3con-consent .l3con-consent-options {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin: 8px 0;
}
#l3con-consent label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
#l3con-consent label.disabled {
    color: #888;
    cursor: not-allowed;
}
#l3con-consent .l3con-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
#l3con-consent button {
    border: 1px solid #848B97;
    background: #fff;
    color: #848B97;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    transition: background .15s, color .15s;
}
#l3con-consent button:hover { background: #81001f; }
#l3con-consent button.primary {
    background: #848B97;
    color: #fff;
}
#l3con-consent button.primary:hover { background: #81001f; }
#l3con-consent.hidden { display: none; }

@media (max-width: 700px) {
    #l3con-consent { font-size: 13px; padding: 16px; }
    #l3con-consent .l3con-consent-inner { flex-direction: column; align-items: stretch; }
}