.enews {
    padding: 20px 0;
}

.enews a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: var(--font-weight-light);
}

.enews .title {
    display: flex;
    align-items: center;
    font-family: var(--body);
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    text-align: left;
    line-height: 1em;
}

.enews .title i {
    color: var(--blue);
    font-size: 30px;
    margin-right: 5px;
}

.enews .title img {
    display: none;
}

.enews .desc {
    font-family: var(--body);
    font-size: 14px;
    color: #fff;
}

.enews .desc i {
    margin-left: 5px;
}

@media (min-width: 1000px) {
    .enews {
        max-width: 385px;
    }

    .enews .title {
        font-size: 32px;
        padding-right: 60px;
    }
    
    .enews .title i {
        display: none;
    }

    .enews .title img {
        display: block;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .enews .desc {
        font-size: 18px;
    }

    .enews .desc i {
        font-size: 14px;
    }
}