/* -- Newsletter band -- */
.newsletter-band {
    background: #99ca3c;
    color: #f7f7f7;
    padding: .5rem;
}

.newsletter-band__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;

   @media (max-width: 640px) {
       justify-content: center;
       flex-direction: column;
       text-align: center;
       gap: .5rem;
    }
}

.newsletter-band__title {
    margin: 0 0 3px;
    font-size: clamp(18px, 2.1vw, 26px);
    line-height: 1;
    letter-spacing: -0.02em;
}

.newsletter-band__text {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    color: #f7f7f7;
}

/* CTA */
.newsletter-band__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    line-height: 1;
}

.newsletter-band__btn {
    padding: .5rem 1.5rem;
    border-radius: 5px;
    background: #32373b;
    font-weight: 400;
    color: #f7f7f7;
    cursor: pointer;
    border: none !important;

    @media (max-width: 768px) {
        width: 100%;
        justify-content: center;
    }

    &:focus {
        outline: none;
        border: none;
    }
    &:active {
        border: none;
        outline: none;
        background-color: #32373b;
        color: #f7f7f7;
    }
}

.newsletter-band__btn:hover {
    background-color: #3e484f;
    border: none;
    color: #f7f7f7;
}

.newsletter-band__privacy {
    margin: 0;
    font-size: .75rem;
    line-height: 1;
    font-weight: 400;
}

.newsletter-band__meta a {
    text-decoration: underline;
    text-underline-offset: 2px;
}
