.enews {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    min-height: 250px;
    gap: 10px 0;
    background-color: var(--merlot-alt);
    overflow: hidden;
}

.enews .yellow-grapes {
    position: absolute;
    width: 262px;
    top: -150px;
    left: -130px;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.enews > * {
    z-index: 2;
    max-width: 375px;
    padding: 0 17.5px;
}

.enews .title {
    font-family: var(--font-modesto);
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align: center;
}

.enews .description {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--font-freight-text);
    margin-bottom: 10px;
    text-align: center;
}

.enews .form label {
    position: absolute;
    left: -100%;
}

.enews .form {
    width: 100%;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 15px;
}

.enews .form .field-control {
    padding: 13px 15px 14px;
    font-family: var(--font-freight-text);
    font-size: 14px;
    flex: 1 1;
}

.enews .form button {
    font-family: var(--font-freight-text);
    font-weight: var(--font-weight-bold);
    font-style: italic;
    font-size: 20px;
}

.enews .form button span {
    white-space: nowrap;
}

.enews .form button:before {
    background-color: var(--merlot-dark);
    border: 1px solid var(--merlot-dark);
}

@media (max-width: 63.9375em) {
    .enews .form button {
        background-color: var(--merlot-dark);
        padding: 9px 10px 10px;
        flex: 0 0 86px;
    }
}

@media (hover: hover) {
    .enews .form button:hover {
        background-color: transparent;
    }

    .enews .form button:hover:before {
        background-color: var(--gray-dark-alt);
    }
}

@media (min-width: 64em) {
    .enews {
        min-height: 385px;
        gap: 20px 0;
    }

    .enews .title {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .enews .description {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .enews .field-control {
        font-size: 14px;
    }

    .enews .yellow-grapes {
        opacity: 1;
        width: 320px;
        left: 0;
        top: unset;
        bottom: 10px;
    }
}