.news-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.news-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.news-title a {
        color: var(--e-global-color-primary);
        font-size: 18px;
        font-weight: bold;
        margin-top: 0;
}
.news-title {
    line-height: 20px!important;
    margin-top: 0!important;
        line-height: 20px !important;
}
.news-excerpt {
    line-height: 20px;
}
.news-date {
    margin-bottom: 0;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 12px;
}
.news-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.news-feed img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.news-item {
    border: 0 !important;
}

/* Featured */
.news-feed-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.news-feed-featured img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}