/* ==========================================================================
   ON HOLD MEDIA GROUP - HOME NEW COOKIE CONSENT BANNER
   ========================================================================== */

.hn-cookie-consent {
    display: none;
    position: fixed;
    z-index: 1080;
    left: 24px;
    bottom: 24px;
    max-width: 380px;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--hn-card-bg);
    color: var(--hn-text-primary);
    border: 1px solid var(--hn-card-border);
    border-radius: var(--hn-radius-md);
    box-shadow: var(--hn-card-shadow-hover);
    padding: 20px 22px;
}

.hn-cookie-consent.is-visible {
    display: flex;
}

.hn-cookie-consent__text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--hn-text-muted);
}

.hn-cookie-consent__text a {
    color: var(--hn-primary);
    text-decoration: underline;
}

.hn-cookie-consent__actions {
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .hn-cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        flex-direction: column;
    }
}
