.enews {
    margin-bottom: var(--space-5);
}

.enews a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    color: #fff;
}

.enews a img {
    width: 30px;
    height: 30px;
    transform: translateY(-3px);
}

.enews h2 {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: var(--text-base);
    letter-spacing: 0.02em;
}

@media (hover: hover) {
    .enews a:hover {
        color: #fff;
        text-decoration: none;
    }
}
@media (min-width: 870px) {
    .enews a {
        justify-content: flex-start;  
    }
}
@media (min-width: 1300px) {
    .enews a {
        margin-left: var(--space-px);
    }
}