.stay-updated-box h1,
.stay-updated-box h2,
.stay-updated-box h3,
.stay-updated-box h3:not(.review-title, .post-tile-title, .review-box-name),
.stay-updated-box h4,
.stay-updated-box h5,
.stay-updated-box h6,
.stay-updated-box p {
    margin: 0;
}

.stay-updated-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 120px;
    margin: 40px 0;
    border-radius: 12px;
    background: linear-gradient(271deg, #6E5DC6 0%, #9E5DC6 100%);
}

.stay-updated-box .email-wrapper {
    display: flex;
    flex-direction: column;
}

.stay-updated-box .email-wrapper h3:not(.review-title, .post-tile-title, .review-box-name) {
    color: #FFF;
    font-family: Onest, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 8px;
}

.stay-updated-box .email-wrapper p {
    color: #FFF;
    font-family: Onest, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 24px;
}

.stay-updated-box .email-form {
    display: flex;
    gap: 8px;
}

.stay-updated-box .email-form input {
    display: flex;
    height: 56px;
    padding: 4px 0 4px 16px;
    align-self: stretch;
    border-radius: 8px;
    border-color: transparent;
}

.stay-updated-box .email-form input:focus-visible {
    outline: none;
}

.stay-updated-box .email-form input::placeholder {
    color: #828282;
    font-family: Onest, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.stay-updated-box .email-form .button {
    display: flex;
    width: 160px;
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 8px;
    border: none;
    outline: 2px solid #FFF;
    outline-offset: -2px;
    color: #FFF;
    font-family: Onest, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.stay-updated-box .email-form .button:hover {
    background: #FFF;
    color: #242424;
}

@media (max-width: 768px) {
    .stay-updated-box {
        padding: 0 24px 24px 24px;
        flex-direction: column;
        gap: 8px;
    }

    .stay-updated-box .email-form {
        flex-direction: column;
    }

    .stay-updated-box .email-wrapper h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .stay-updated-box .email-wrapper p {
        font-size: 14px;
        line-height: 24px;
    }

    .stay-updated-box .email-form input {
        flex: none;
    }

    .stay-updated-box .email-form input::placeholder {
        font-size: 14px;
    }

    .stay-updated-box .email-form .button {
        width: 100%;
        font-size: 16px;
    }
}