/* Cookie-notice bar — essential-cookies notice (whitelabel: uses tenant --fs-primary). */
.cc-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1080;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem 1.1rem;
    padding: .85rem 1.1rem;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .10);
    font-size: .9rem;
}
.cc-text {
    margin: 0;
    max-width: 72ch;
    color: #333;
    line-height: 1.5;
}
.cc-link {
    margin-left: .25rem;
    color: var(--fs-primary, #001B5E);
    font-weight: 600;
    text-decoration: underline;
}
.cc-btn {
    flex: 0 0 auto;
    min-height: 44px;
    padding: .5rem 1.5rem;
    border: 0;
    border-radius: 8px;
    background: var(--fs-primary, #001B5E);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
}
.cc-btn:hover { filter: brightness(1.08); }

/* display:flex above out-specifies the UA [hidden] rule — restore it so the bar
   stays hidden until the script reveals it (no flash for users who already agreed). */
.cc-bar[hidden] { display: none; }

@media (max-width: 575.98px) {
    .cc-bar { flex-direction: column; align-items: stretch; text-align: center; }
    .cc-btn { width: 100%; }
}
