/* Default cookie notice — public site only */

#cms-cookie-bar {
    position: fixed;
    z-index: 100002;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
    padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.12);
    max-width: 100%;
    box-sizing: border-box;
}

#cms-cookie-bar[hidden] {
    display: none !important;
}

.cms-cookie-bar__text {
    flex: 1 1 220px;
    max-width: 52rem;
    margin: 0;
}

.cms-cookie-bar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.cms-cookie-bar__link {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cms-cookie-bar__link:hover {
    color: #1e40af;
}

.cms-cookie-bar__accept {
    appearance: none;
    border: none;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 0;
    background: #0f172a;
    color: #fff;
}

.cms-cookie-bar__accept:hover {
    background: #1e293b;
}

.cms-cookie-bar__accept:focus-visible {
    outline: 2px solid #1d4ed8;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .cms-cookie-bar__accept {
        transition: none;
    }
}
