.rss-cf-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    width: 100%;
    margin: 0;
}

.rss-cf-article {
    display: flex;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(56, 44, 19, 0.1);
    flex-basis: calc(50% - 20px);
}

.rss-cf-article-img {
    min-width: 100px;
    max-width: 100px;
    margin-right: 10px;
    position: relative;
}

.rss-cf-article-content {
    width: 100%;
}

.rss-cf-source {
    display: flex;
    justify-content: space-between;
}

.rss-cf-source-name {
    font-weight: 500;
    color: #ccc;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.rss-cf-article-title {
    font-size: 15px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 75px;
    display: block;
}

.rss-cf-article-title a {
    color: inherit;
    border: 0;
    outline: none;
}

.rss-cf-img {
    width: 100%;
    display: block;
}

.rss-cf-headline {
    display: block;
    padding: 10px 0px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
    line-height: 1;
    background: #f7f7f7;
    font-size: 18px;
    font-weight: bold;
}

.rss-cf-articles.rss-cf-one-row {
    grid-template-columns: repeat(1, 1fr) !important;
}
.rss-cf-articles.rss-cf-three-rows {
    grid-template-columns: repeat(3, 1fr) !important;
}
.rss-cf-articles.rss-cf-four-rows {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 767px) { .rss-cf-articles { grid-template-columns: repeat(1, 1fr); } }