/* Cookie consent banner */
.consentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: color-mix(in oklab, var(--bg2) 94%, transparent);
    backdrop-filter: saturate(140%) blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .12);
    transform: translateY(100%);
    transition: transform .3s ease;
}

.consentBanner.show {
    transform: translateY(0);
}

.consentInner {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.consentText {
    flex: 1;
    min-width: 260px;
}

.consentText strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.consentText p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.consentText a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consentText a:hover {
    opacity: .85;
}

.consentActions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .consentActions {
        width: 100%;
    }

    .consentActions .btn {
        flex: 1;
    }
}
