.block__newsletter{background: #111}
.newsletter__form {
}

.newsletter__box {
}

.newsletter__input {
    margin-bottom: 10px;
}

.newsletter__input input {
}

.newsletter__input textarea {
    resize: none;
}

.newsletter__button {
}

.newsletter__button input {
    padding: 5px 10px;
}

/* Newsletter hero */
.newsletter-hero {
    position: relative;
    padding: 80px 0;
    color: #fff
}

.newsletter-hero .newsletter-bg {
    position: absolute;
    inset: 0;
   background: black;
    opacity: 0.35
}

.newsletter-hero .newsletter-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto
}

.newsletter-head h2 {
    font-size: 36px;
    font-family: 'CalSans-Regular';
    margin-bottom: 8px
}

.newsletter-head .text-red {
    color: var(--color-red, #D91021);
    font-family: 'CalSans-Regular';
}

.newsletter-head .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px
}

.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem
}

.newsletter-grid .form-col .form-control {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    color: #fff;
    padding: 12px;
    height: 3rem;
}

.newsletter-grid .form-col .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8)
}

.newsletter-actions {
    margin-top: 8px
}

.btn-newsletter {
    background: var(--color-red, #D91021);
    color: #fff;
    border-radius: 10px;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    font-weight: 600
}

@media(max-width:900px) {
    .newsletter-grid {
        grid-template-columns: 1fr
    }

}
