.bry-newsletter {
    --bry-primary: #d9ad28;
    --bry-button: #d9ad28;
    --bry-dark: #234d3a;
    --bry-ink: #234d3a;
    --bry-soft: #f7f6f1;
    --bry-eyebrow-size: 11px;
    --bry-title-size: 42px;
    --bry-title-mobile-size: 34px;
    --bry-description-size: 15px;
    --bry-label-size: 11px;
    --bry-input-size: 15px;
    --bry-button-size: 11px;
    --bry-consent-size: 11px;
    --bry-message-size: 13px;
    box-sizing: border-box;
    width: 100%;
    margin: 64px 0;
    scroll-margin-top: 120px;
    font-family: inherit;
}

.bry-newsletter *,
.bry-newsletter *::before,
.bry-newsletter *::after {
    box-sizing: border-box;
}

.bry-newsletter__inner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    padding: clamp(42px, 6vw, 76px);
    border-radius: 10px;
    background:
        radial-gradient(circle at 8% 12%, rgba(255,255,255,.08) 0 2px, transparent 3px),
        radial-gradient(circle at 92% 86%, rgba(217,173,40,.14) 0 2px, transparent 3px),
        var(--bry-dark);
    background-size: 52px 52px, 66px 66px, auto;
    color: #fff;
    box-shadow: 0 22px 55px rgba(35, 77, 58, .14);
}

.bry-newsletter__inner::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -115px;
    right: -92px;
    width: 285px;
    height: 285px;
    border: 1px solid rgba(217, 173, 40, .32);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(217, 173, 40, .035),
        0 0 0 58px rgba(217, 173, 40, .025);
    pointer-events: none;
}

.bry-newsletter__inner::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -105px;
    bottom: -145px;
    width: 320px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    transform: rotate(-18deg);
    pointer-events: none;
}

.bry-newsletter__copy,
.bry-newsletter__panel {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.bry-newsletter__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 16px !important;
    padding: 0 !important;
    color: var(--bry-primary) !important;
    font-size: var(--bry-eyebrow-size) !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bry-newsletter__eyebrow::before {
    content: "";
    display: block;
    flex: 0 0 30px;
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: var(--bry-primary);
}

.bry-newsletter__title {
    max-width: 620px;
    margin: 0 0 16px !important;
    padding: 0 !important;
    color: #fff !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: var(--bry-title-size) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    letter-spacing: -.018em;
}

.bry-newsletter__description {
    max-width: 560px;
    margin: 0 !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: var(--bry-description-size) !important;
    font-weight: 400 !important;
    line-height: 1.72 !important;
}

.bry-newsletter__panel {
    padding: clamp(25px, 4vw, 36px);
    border-top: 5px solid var(--bry-primary);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(12, 36, 25, .24);
}

.bry-newsletter__form {
    margin: 0 !important;
    padding: 0 !important;
}

.bry-newsletter__row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.bry-newsletter__field {
    flex: 1 1 auto;
    min-width: 0;
}

.bry-newsletter__label {
    display: block;
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: var(--bry-dark) !important;
    font-size: var(--bry-label-size) !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.bry-newsletter__input {
    display: block;
    width: 100%;
    min-height: 54px;
    margin: 0 !important;
    padding: 13px 19px !important;
    border: 1px solid #dfe4de !important;
    border-radius: 999px !important;
    background: var(--bry-soft) !important;
    color: var(--bry-ink) !important;
    font-family: inherit !important;
    font-size: var(--bry-input-size) !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    box-shadow: none !important;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.bry-newsletter__input::placeholder {
    color: #768178 !important;
    opacity: 1;
}

.bry-newsletter__input:hover {
    border-color: #cbd4cc !important;
    background: #fbfbf8 !important;
}

.bry-newsletter__input:focus {
    outline: 0;
    border-color: var(--bry-primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(217, 173, 40, .16) !important;
}

.bry-newsletter__button {
    display: inline-flex !important;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    margin: 0 !important;
    padding: 13px 21px !important;
    border: 1px solid var(--bry-button) !important;
    border-radius: 999px !important;
    background: var(--bry-button) !important;
    color: #fff !important;
    font-family: inherit !important;
    font-size: var(--bry-button-size) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: .09em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(217, 173, 40, .20) !important;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.bry-newsletter__button::after {
    display: none !important;
}

.bry-newsletter__button:hover,
.bry-newsletter__button:focus {
    border-color: var(--bry-dark) !important;
    background: var(--bry-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(35, 77, 58, .22) !important;
}

.bry-newsletter__button-arrow {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transition: transform .2s ease;
}

.bry-newsletter__button:hover .bry-newsletter__button-arrow,
.bry-newsletter__button:focus .bry-newsletter__button-arrow {
    transform: translateX(3px);
}

.bry-newsletter__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0 0 !important;
    padding: 0 2px !important;
    color: #68756c !important;
    font-size: var(--bry-consent-size) !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    cursor: pointer;
}

.bry-newsletter__checkbox {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    flex: 0 0 18px;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 1px 0 0 !important;
    padding: 0 !important;
    border: 1px solid #aebbb1 !important;
    border-radius: 4px !important;
    background: #fff !important;
    cursor: pointer;
}

.bry-newsletter__checkbox:checked {
    border-color: var(--bry-primary) !important;
    background: var(--bry-primary) !important;
}

.bry-newsletter__checkbox:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bry-newsletter__checkbox:focus-visible {
    outline: 2px solid var(--bry-primary);
    outline-offset: 2px;
}

.bry-newsletter__message {
    margin: 0 0 18px !important;
    padding: 13px 15px !important;
    border: 0;
    border-left: 4px solid;
    border-radius: 5px;
    background: #f4f4f4;
    font-size: var(--bry-message-size) !important;
    line-height: 1.5 !important;
}

.bry-newsletter__message--success {
    border-color: var(--bry-dark);
    color: #1f5d3d;
    background: #edf7f0;
}

.bry-newsletter__message--info {
    border-color: var(--bry-primary);
    color: #695313;
    background: #fff9e9;
}

.bry-newsletter__message--error {
    border-color: #b32d2e;
    color: #8a2424;
    background: #fff3f3;
}

.bry-newsletter__hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 1100px) {
    .bry-newsletter__inner {
        grid-template-columns: minmax(0, .85fr) minmax(340px, 1.15fr);
        gap: 34px;
    }

    .bry-newsletter__row {
        display: block;
    }

    .bry-newsletter__button {
        width: 100%;
        margin-top: 10px !important;
    }
}

@media (max-width: 820px) {
    .bry-newsletter__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bry-newsletter__description {
        max-width: 680px;
    }
}

@media (max-width: 700px) {
    .bry-newsletter {
        margin: 42px 0;
    }

    .bry-newsletter__inner {
        padding: 36px 22px;
        border-radius: 8px;
    }

    .bry-newsletter__title {
        font-size: var(--bry-title-mobile-size) !important;
    }

    .bry-newsletter__panel {
        padding: 23px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bry-newsletter__input,
    .bry-newsletter__button,
    .bry-newsletter__button-arrow {
        transition: none;
    }
}
