/* Marketing cookie consent banner — public site */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    background: #1a2332;
    color: #f5f7fa;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    padding: 1rem 1.25rem;
}

.cookie-consent-banner[hidden] {
    display: none !important;
}

.cookie-consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-copy {
    flex: 1 1 280px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.cookie-consent-copy a {
    color: #9ec5fe;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-consent-actions .btn {
    min-width: 7rem;
}
