/* Minimaler Consent-Banner. Bewusst neutral gestaltet, damit er auf
   bali.dw / vertrieb.dw / alsterreifen.de / insights.dw nicht stoert.
   Bei Bedarf pro Seite per Custom-CSS ueberschreiben. */

.dw-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 2147483600;
    background: #1a1a1a;
    color: #f5f5f5;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.dw-consent-bottom { bottom: 0; }
.dw-consent-top { top: 0; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); }

.dw-consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.dw-consent-text { flex: 1 1 320px; }
.dw-consent-text strong { display: block; margin-bottom: 4px; font-size: 15px; }
.dw-consent-text p { margin: 0; color: #d0d0d0; }
.dw-consent-text a { color: #8ecdff; text-decoration: underline; }

.dw-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.dw-consent-btn {
    appearance: none;
    border: 0;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.dw-consent-decline {
    background: transparent;
    color: #d0d0d0;
    border: 1px solid #555;
}
.dw-consent-decline:hover { background: #2a2a2a; }

.dw-consent-accept {
    background: #4f9eff;
    color: #fff;
}
.dw-consent-accept:hover { background: #3a8aee; }

@media (max-width: 600px) {
    .dw-consent-inner { padding: 14px 16px; }
    .dw-consent-actions { width: 100%; }
    .dw-consent-btn { flex: 1; }
}
