.enews {
    --background-color: var(--green-light-alt);
    --outline-color: var(--sw-focus-color);
    --btn-background-color: var(--sw-button-primary-bg);
    --btn-background-color-hover: var(--sw-button-primary-color);
    --btn-text-color: var(--sw-button-primary-color);
    --btn-text-color-hover: var(--sw-button-primary-color-hover);

    display: grid;
    align-items: center;
    padding: 0 0;
    background-color: var(--background-color);
    height: 100%;
}

.enews .inner {
    display: flex;
    padding: 23px 3px 26px;
}

.enews .img-cont {
    display: none;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 160 / 67;
}

.enews .img-cont img {
    width: 100%;
}

.enews .form {
    margin: 0 auto;
    width: 100%;
    display: grid;
    gap: 8px;
}

.enews a {
    font-weight: var(--font-weight-normal);
}

.enews .title {
    font-family: var(--font-display);
    font-size: calc(17rem/16);
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: .03em;
    text-align: center;
    line-height: var(--leading-tight);
}

.enews .form-field {
    margin-bottom: 0;
}

.enews .input-cont {
    display: none;
    justify-content: space-between;
    position: relative;
    line-height: 1;
    max-width: 339px;
}

.enews .input-cont:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    pointer-events: none;
    background: #fff;
    top: calc(100% - 1px);
}

.enews .field-control {
    margin: 0;
    padding: 0;
    background-color: transparent;
    line-height: .9;
    color: var(--white);
    font-size: calc(12rem/16);
    font-weight: bold;
    width: 100%;
    align-self: flex-end;
}

.enews .field-control:focus {
    outline: var(--outline-color) solid 1px;
    outline-offset: 2px;
}

.enews .submit {
    margin: 0;
    color: var(--btn-text-color);
    text-decoration: none;
    background-color: transparent;
    transition: none;
    padding: 0 0 0 20px;
    height: auto;
    display: inline;
}

.enews .submit i {
    font-size: calc(6rem/16);
    vertical-align: middle;
}

.enews .submit:focus {
    outline: var(--outline-color) solid 1px;
    outline-offset: 2px;
}

@media (hover: hover) {
    .enews a:hover {
        text-decoration: none;
    }
}

@media (min-width: 64em) {
    .enews .inner {
        display: grid;
        grid-template-columns: 100fr 163fr;
        align-items: center;
        padding: 3px;
        gap: 22px;
    }

    .enews .img-cont {
        display: block;
    }

    .enews .form  {
        padding-right: 20px;
        padding-bottom: 6px;
    }

    .enews .input-cont {
        display: flex;
    }

    .enews .title {
        font-size: calc(25rem/16);
        text-align: left;
    }
}