/* OW Publishing · Cookie-Consent-Banner
   Zeigt sich nur wenn kein Consent-Cookie gesetzt ist. Kein Layout-Push,
   fixed am unteren Rand, ausblendbar per Klick. */

.owp-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    color: #0F1632;
    border: 1px solid rgba(46, 78, 210, 0.14);
    border-radius: 12px;
    padding: 22px 24px 20px;
    box-shadow: 0 24px 48px -18px rgba(15, 22, 50, 0.28);
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 260ms ease, transform 260ms ease;
    pointer-events: none;
}

.owp-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.owp-consent-title {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #0F1632;
    margin: 0 0 8px 0;
    letter-spacing: -0.005em;
}

.owp-consent-text {
    margin: 0 0 16px 0;
    color: #4A5170;
}

.owp-consent-text a {
    color: #2E4ED2;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.owp-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.owp-consent-btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
    line-height: 1;
}

.owp-consent-btn-primary {
    background: #2E4ED2;
    color: #F7F8EF;
    border-color: #2E4ED2;
}

.owp-consent-btn-primary:hover {
    background: #1F3AA8;
    border-color: #1F3AA8;
}

.owp-consent-btn-secondary {
    background: transparent;
    color: #2E4ED2;
    border-color: rgba(46, 78, 210, 0.35);
}

.owp-consent-btn-secondary:hover {
    background: rgba(46, 78, 210, 0.06);
    border-color: #2E4ED2;
}

@media (max-width: 600px) {
    .owp-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 20px 20px 18px;
    }
    .owp-consent-buttons { gap: 8px; }
    .owp-consent-btn { flex: 1 1 auto; text-align: center; }
}
