.news-sidebar {
    position: sticky;
    top: 96px;
}

.news-sidebar .sidebar-box {
    background: #fff;
    border: 1px solid #ece6de;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.news-sidebar .sidebar-box h3 {
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--bs-primary);
}

.news-sidebar .sidebar-link-list,
.news-sidebar .sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-sidebar .sidebar-link-list li,
.news-sidebar .sidebar-article-list li {
    border-top: 1px dashed #ece6de;
}

.news-sidebar .sidebar-link-list li:first-child,
.news-sidebar .sidebar-article-list li:first-child {
    border-top: none;
}

.news-sidebar .sidebar-link-list a,
.news-sidebar .sidebar-article-list a {
    display: flex;
    padding: 10px 0;
    color: #2a2a2a;
    text-decoration: none;
    line-height: 1.45;
    gap: 10px;
}
.news-sidebar .sidebar-link-list a{font-size: 16px;font-weight: 500;padding-left: 18px;}
.news-sidebar .sidebar-link-list a:hover,
.news-sidebar .sidebar-article-list a:hover {
    color: var(--bs-primary);
}

.news-sidebar .sidebar-article-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.news-sidebar .sidebar-article-item .thumb {
    width: 100px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ece6de;
    background: #f8f8f8;
    display: block;
}

.news-sidebar .sidebar-article-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-sidebar .sidebar-article-item .info {
    flex-grow: 1 !important;
    width: 70%;
}

.news-sidebar .sidebar-article-item .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    margin-bottom: 4px;
}

.news-sidebar .sidebar-article-item .desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    color: #6b6b6b;
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .news-sidebar {
        position: static;
        top: auto;
    }
}
