html.newsletter-subscriber-active
[data-newsletter-topbar],
[data-newsletter-topbar][hidden] {
    display: none !important;
}

/*
|--------------------------------------------------------------------------
| Word Intelligence newsletter popup
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Newsletter top-bar prompt
|--------------------------------------------------------------------------
*/

.newsletter-topbar-prompt[hidden] {
    display: none !important;
}

.newsletter-topbar-prompt__link {
    color: inherit;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    cursor: pointer;
}

.newsletter-topbar-prompt__link:hover {
    color: #111111;
    text-decoration-thickness: 2px;
}

.newsletter-topbar-prompt__link:focus-visible {
    border-radius: 3px;
    outline: 2px solid rgba(17, 17, 17, 0.72);
    outline-offset: 3px;
}

/*
|--------------------------------------------------------------------------
| Newsletter confirmation slide-down bar
|--------------------------------------------------------------------------
|
| Preview:
| /?preview_newsletter_confirmation=1
| /?preview_newsletter_confirmation=1&hold_newsletter_confirmation=1
|
*/

.newsletter-confirmation-bar,
.newsletter-confirmation-bar * {
    box-sizing: border-box;
}

.newsletter-confirmation-bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 24000;

    width: 50%;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transform: translateY(-105%);

    background: rgba(245, 248, 243, 0.68);
    color: #18331c;
    border-radius: 20px;

    border-bottom: 1px solid rgba(52, 116, 68, 0.14);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        transform 340ms ease,
        opacity 340ms ease,
        visibility 340ms ease;
}

/* ===========Newsletter verification Test Preview================ */

.newsletter-confirmation-bar.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.newsletter-confirmation-bar.is-leaving {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-105%);
}

/*
|--------------------------------------------------------------------------
| Inner content
|--------------------------------------------------------------------------
*/

.newsletter-confirmation-bar__inner {
    display: flex;
    width: min(1080px, 100%);
    min-height: 60px;
    align-items: center;
    gap: 12px;

    margin-inline: auto;
    padding: 10px clamp(16px, 3vw, 32px);
}

/*
|--------------------------------------------------------------------------
| Newsletter confirmation PNG icon
|--------------------------------------------------------------------------
*/

.newsletter-confirmation-bar__icon {
    position: relative;

    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;

    overflow: visible;

    border: 0;
    border-radius: 0;

    background: transparent;
    color: inherit;
}

.newsletter-confirmation-bar__icon-image {
    grid-area: 1 / 1;

    display: block;
    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: contain;
    object-position: center;
}

/*
|--------------------------------------------------------------------------
| Default light-mode icon
|--------------------------------------------------------------------------
*/

.newsletter-confirmation-bar__icon-image--light {
    display: block;
}

.newsletter-confirmation-bar__icon-image--dark {
    display: none;
}

/*
|--------------------------------------------------------------------------
| Dark-mode icon
|--------------------------------------------------------------------------
*/

body.dark-mode
.newsletter-confirmation-bar__icon-image--light {
    display: none;
}

body.dark-mode
.newsletter-confirmation-bar__icon-image--dark {
    display: block;
}

.newsletter-confirmation-bar__content {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 10px;
}

.newsletter-confirmation-bar__title {
    color: inherit;

    font-family: "PT Serif", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.newsletter-confirmation-bar__message {
    color: #506453;

    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.35;
}

/*
|--------------------------------------------------------------------------
| Dark mode
|--------------------------------------------------------------------------
*/

body.dark-mode .newsletter-confirmation-bar {
    background: rgba(22, 29, 23, 0.72);
    color: #eef6ee;

    border-bottom-color: rgba(155, 209, 143, 0.12);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.34);
}

body.dark-mode
.newsletter-confirmation-bar__icon {
    background: transparent;
    color: inherit;
}

body.dark-mode .newsletter-confirmation-bar__message {
    color: #c8d7c8;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
    .newsletter-confirmation-bar__inner {
        min-height: 54px;
        gap: 10px;
        padding: 9px 14px;
    }

    .newsletter-confirmation-bar__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
}

    .newsletter-confirmation-bar__content {
        display: block;
    }

    .newsletter-confirmation-bar__title,
    .newsletter-confirmation-bar__message {
        display: block;
    }

    .newsletter-confirmation-bar__title {
        font-size: 0.93rem;
    }

    .newsletter-confirmation-bar__message {
        margin-top: 2px;
        font-size: 0.74rem;
        line-height: 1.3;
    }

    .newsletter-confirmation-bar {
        width: 75%;
    }

    .newsletter-confirmation-bar__title {
    font-size: 1rem;
}

.newsletter-confirmation-bar__message {
    font-size: 0.8rem;
}
}

@media (prefers-reduced-motion: reduce) {
    .newsletter-confirmation-bar {
        transition: none;
    }
}

@media (max-width: 1024px) {
.newsletter-confirmation-bar {
        width: 75%;
    }
}