.tab-content {
    display: none;
}

.articleSidebarSection,
.newsSidebarSection {
    box-shadow: none;
    border: var(--border-line);
    background: var(--color-white);
    border-radius: 4px;
    margin-bottom: 20px;
}

.articleSidebarSection .tab-content.activeLink,
.newsSidebarSection .tab-content.activeLink {
    display: block;
}

.articleSidebarSection ul,
.newsSidebarSection ul {
    margin: 0;
    padding: 0;
    display: flex;
}
.articleSidebarSection ul li.recentHeading{
    font-size: 100px !important;
}
.articleSidebarSection ul li,
.newsSidebarSection ul li {
    list-style-type: none;
    flex-basis: 50%;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #787878;
    cursor: pointer;
    padding: 12px 5px;
    padding-bottom: 9px;
    border-bottom: var(--border-line);
    font-weight: var(--font-semibold);
}

.articleSidebarSection ul li.activeLink,
.newsSidebarSection ul li.activeLink {
    color: var(--color-red);
    border-bottom: 3px solid var(--color-red);
}

.recentnewsList,
.recentArticlesList,
.trendingArtilerList {
    max-height: 490px;
    overflow: auto;
    padding: 20px;
}

.trendingArtilerList::-webkit-scrollbar,
.recentArticlesList::-webkit-scrollbar,
.recentnewsList::-webkit-scrollbar {
    width: 5px;
}

.trendingArtilerList::-webkit-scrollbar-thumb,
.recentArticlesList::-webkit-scrollbar-thumb,
.recentnewsList::-webkit-scrollbar-thumb {
    background: #ccc;
}

.recentnewsDiv.row,
.recentArticlesDiv.row,
.trendingArtilerDiv.row {
    margin: 0;
    flex-wrap: nowrap;
    margin-bottom: 10px;
    border-bottom: var(--border-line);
    padding-bottom: 10px;
    align-items: center;
}

.sidebarImgDiv {
    flex-basis: 96px;
    margin-right: 16px;
    display: grid;
    min-height: 72px;
}

.sidebarImgDiv img {
    width: 96px;
    max-height: 72px;
    display: block;
    align-self: center;
    max-width: 100%;
}

.recentnewsDivText,
.recentArticlesDivText,
.trendingArtileText {
    flex-basis: calc(100% - 96px - 16px);
}

.sidebarTextLink,
.trendingArtilerDiv .trendingArtileText .sidebarTextLink {
    font-size: 14px;
    line-height: 24px;
    color: var(--primary-font-color);
    text-decoration: none;
    /* display: -webkit-box; */
    font-weight: 400;
    padding: 0;
    /* -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; */
    overflow: hidden;
    border: none;
}

.listCard:last-child>div {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border: none;
}

.listCard:hover .sidebarTextLink {
    color: var(--anchor-textclr);
}

.trendingArtilce {
    border: none;
}

@media (max-width:1023px) {

    .recentnewsList,
    .recentArticlesList,
    .trendingArtilerList {
        padding: 10px;
    }
}