.ew101-np {
    position: fixed;
    left: 24px;
    bottom: 28px;
    z-index: 9998;
    width: min(320px, calc(100vw - 48px));
    padding: 18px 42px 18px 18px;
    background: #f7f3ec;
    border: 1px solid rgba(43, 48, 42, 0.12);
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(35, 31, 27, 0.14);
    color: #252823;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    pointer-events: none;
}

.ew101-np.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.ew101-np__close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #6f716c;
    font: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.ew101-np__eyebrow {
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f716c;
}

.ew101-np__title {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
}

.ew101-np__body {
    margin-bottom: 11px;
    font-size: 14px;
    line-height: 1.4;
    color: #555952;
}

.ew101-np__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #2d4333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.ew101-np__cta:hover,
.ew101-np__cta:focus {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .ew101-np {
        left: 12px;
        right: 12px;
        bottom: 92px;
        width: auto;
        padding: 15px 40px 15px 15px;
        border-radius: 12px;
    }

    .ew101-np__eyebrow {
        display: none;
    }

    .ew101-np__title {
        margin-bottom: 3px;
        font-size: 17px;
    }

    .ew101-np__body {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .ew101-np__cta {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ew101-np {
        transition: none;
    }
}
