.newsletter-notifier-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9999;
    padding: 1.5rem;
    background-color: rgba(249, 248, 249, 0.95);
    border: 6px solid var(--dk--color--surface-pop);
    border-radius: 0;
    box-shadow: var(--dk--shadow--soft-md, 0 20px 60px rgba(27, 42, 67, 0.12)), var(--dk--shadow--inset);
    backdrop-filter: blur(3px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

@media (min-width: 768px) {
    .newsletter-notifier-banner {
        
        max-width: 800px;
        margin: 0 auto;
    }
}

.newsletter-notifier-hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    visibility: hidden;
}

.newsletter-notifier-banner h3 {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.newsletter-notifier-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .newsletter-notifier-content {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

.newsletter-notifier-banner p {
    margin: 0;
}

@media (min-width: 768px) {
    .newsletter-notifier-banner p {
        flex: 1;
    }
}

.newsletter-notifier-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.newsletter-notifier-banner .newsletter-notifier-cta {
    display: inline-flex;
}

.newsletter-notifier-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    cursor: pointer;
    background: none;
    border: 0;
    color: inherit;
    z-index: 10;
}

.newsletter-notifier-close svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.newsletter-notifier-close:hover,
.newsletter-notifier-close:focus {
    background: rgba(27, 42, 67, 0.1);
    border-radius: 0.25rem;
}
