.avron-newsletter-shell,
.avron-newsletter-shell * {
    box-sizing: border-box;
}
.avron-newsletter-shell {
    position: fixed;
    inset: 0;
    z-index: 9895;
    display: grid;
    place-items: center;
    padding: clamp(14px, 3vw, 34px);
    color: #fff;
    font-family: Sora, Arial, Helvetica, sans-serif;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
}
.avron-newsletter-shell[data-open="true"] {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}
.avron-newsletter-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 18%, rgba(74,150,102,.22), transparent 30rem),
        linear-gradient(135deg, rgba(1,5,3,.96), rgba(6,22,16,.94) 52%, rgba(0,0,0,.98));
    backdrop-filter: blur(10px);
}
.avron-newsletter-panel {
    position: relative;
    width: min(560px, 100%);
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(3, 10, 8, .97);
    box-shadow: 0 34px 110px rgba(0,0,0,.55);
    padding: clamp(24px, 4vw, 42px);
}
.avron-newsletter-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
    font-size: 0;
}
.avron-newsletter-close::before,
.avron-newsletter-close::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    top: 21px;
    height: 2px;
    background: currentColor;
}
.avron-newsletter-close::before { transform: rotate(45deg); }
.avron-newsletter-close::after { transform: rotate(-45deg); }
.avron-newsletter-kicker {
    margin: 0 0 13px;
    color: #4a9666;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.avron-newsletter-title {
    margin: 0;
    padding-right: 56px;
    font-size: clamp(36px, 7vw, 70px);
    line-height: .96;
    letter-spacing: 0;
    text-transform: uppercase;
}
.avron-newsletter-copy {
    margin: 18px 0 24px;
    max-width: 48ch;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.55;
}
.avron-newsletter-form {
    display: grid;
    gap: 11px;
}
.avron-newsletter-field {
    display: grid;
    gap: 6px;
}
.avron-newsletter-field label,
.avron-newsletter-consent {
    color: rgba(255,255,255,.62);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.avron-newsletter-field input {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 0;
    background: rgba(255,255,255,.055);
    color: #fff;
    font: 700 15px/1.35 Sora, Arial, sans-serif;
    outline: none;
    padding: 14px 15px;
}
.avron-newsletter-field input:focus {
    border-color: rgba(74,150,102,.95);
    box-shadow: 0 0 0 3px rgba(74,150,102,.16);
}
.avron-newsletter-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}
.avron-newsletter-consent {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 10px;
    margin-top: 6px;
    line-height: 1.45;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
}
.avron-newsletter-consent input {
    margin-top: 1px;
    width: 18px;
    height: 18px;
    accent-color: #4a9666;
}
.avron-newsletter-submit {
    min-height: 56px;
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 0;
    background: #fff;
    color: #07100d;
    cursor: pointer;
    font: 950 12px/1 Sora, Arial, sans-serif;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.avron-newsletter-submit:disabled {
    opacity: .62;
    cursor: progress;
}
.avron-newsletter-status {
    min-height: 22px;
    margin: 5px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.45;
}
.avron-newsletter-status[data-kind="success"] { color: #9bf2b6; }
.avron-newsletter-status[data-kind="error"] { color: #ffb6a8; }
.avron-newsletter-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}
html.avron-newsletter-open,
html.avron-newsletter-open body {
    overflow: hidden !important;
}
@media (max-width: 640px) {
    .avron-newsletter-shell {
        display: block;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .avron-newsletter-panel {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        min-height: 100vh;
        border: 0;
        overflow-x: hidden;
        padding: 82px 20px 30px;
    }
    .avron-newsletter-panel > *,
    .avron-newsletter-form,
    .avron-newsletter-two,
    .avron-newsletter-field {
        min-width: 0;
    }
    .avron-newsletter-close {
        top: 18px;
        right: 18px;
    }
    .avron-newsletter-two {
        grid-template-columns: 1fr;
    }
    .avron-newsletter-title {
        font-size: clamp(38px, 12vw, 58px);
    }
    .avron-newsletter-copy,
    .avron-newsletter-consent span {
        overflow-wrap: anywhere;
    }
}
