.company-newsletter {
    width: 100%;
    padding: 0px 24px 48px;
    background: #1a1a1a;
    color: #fff;
}

.company-newsletter__content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    align-items: center;
}

.company-newsletter__intro {
    max-width: 540px;
}

.company-newsletter__eyebrow {
    display: inline-block;
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.6);
}

.company-newsletter__title {
    margin: 0 0 12px;
    padding: 0;

    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 700;

    color: #fff;
}

.company-newsletter__description {
    margin: 0;

    font-size: 16px;
    line-height: 1.6;

    color: #FFF !important;
}

.company-newsletter__form {
    width: 100%;
}

.company-newsletter__field-wrapper {
    display: flex;
    align-items: stretch;

    padding: 6px;

    background: #fff;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
}

.company-newsletter__input-wrapper {
    flex: 1;
    min-width: 0;

    display: flex;
    align-items: center;

    padding-left: 14px;
}

.company-newsletter__icon {
    width: 20px;
    height: 20px;

    flex: 0 0 auto;

    color: #777;
}

.company-newsletter__input-wrapper input {
    width: 100%;
    min-width: 0;

    padding: 14px 12px;

    border: 0;
    outline: 0;

    font-size: 16px;

    background: transparent;
    color: #111;
}

.company-newsletter__input-wrapper input::placeholder {
    color: #888;
}

.company-newsletter__button {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 22px;

    border: 0;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    background: #111;
    color: #fff;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}

.company-newsletter__button:hover {
    background: #2a2a2a;
}

.company-newsletter__button:active {
    transform: translateY(1px);
}

.company-newsletter__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.4);
    outline-offset: 3px;
}

.company-newsletter__button:disabled {
    opacity: 0.65;
    cursor: wait;
}

.company-newsletter__button-icon {
    width: 18px;
    height: 18px;
}

.company-newsletter__privacy {
    margin: 10px 4px 0;

    font-size: 12px;
    line-height: 1.4;

    color: rgba(255, 255, 255, 0.5);
}

.company-newsletter__message {
    min-height: 22px;
    margin: 8px 4px 0;

    font-size: 14px;
    font-weight: 600;
}

.company-newsletter__message--success {
    color: #9ee6b3;
}

.company-newsletter__message--error {
    color: #ffb0b0;
}


/* Tablet */

@media (max-width: 900px) {

    .company-newsletter {
        padding: 40px 20px;
    }

    .company-newsletter__content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .company-newsletter__intro {
        max-width: 650px;
    }

    .company-newsletter__form {
        max-width: 650px;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .company-newsletter {
        padding: 36px 16px;
    }

    .company-newsletter__content {
        gap: 24px;
    }

    .company-newsletter__title {
        font-size: 30px;
    }

    .company-newsletter__description {
        font-size: 15px;
    }

    .company-newsletter__field-wrapper {
        flex-direction: column;
        gap: 6px;

        padding: 6px;

        border-radius: 14px;
    }

    .company-newsletter__input-wrapper {
        min-height: 54px;
        padding-left: 12px;
    }

    .company-newsletter__input-wrapper input {
        padding: 14px 10px;
    }

    .company-newsletter__button {
        width: 100%;
        min-height: 50px;

        border-radius: 10px;
    }

    .company-newsletter__privacy {
        text-align: center;
    }

    .company-newsletter__message {
        text-align: center;
    }

}

.company-newsletter__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}