.cookie-consent-banner {
    position: fixed;
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
    z-index: 1080;
    display: none;
    max-width: 34rem;
    margin: 0 auto;
    padding: 0.8rem 1rem;
    background: rgba(247, 248, 249, 0.96);
    color: #000000;
    border: 1px solid rgba(0, 0, 103, 0.1);
    border-radius: 0.875rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    transition: bottom 0.2s ease;
}

.cookie-consent-banner.is-visible {
    display: block;
}

.cookie-consent-banner p {
    margin: 0;
}

.cookie-consent-banner__actions {
    display: flex;
    gap: 0.5rem 0.75rem;
    align-items: center;
    margin-top: 0.55rem;
    flex-wrap: wrap;
}

.cookie-consent-banner__button {
    border: 1px solid rgba(0, 0, 103, 0.14);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    background: #ffffff;
    color: #000067;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-consent-banner__link {
    color: inherit;
    font-weight: 600;
}

.cookie-consent-banner__button:hover,
.cookie-consent-banner__button:focus {
    background: #f3f5f7;
}
