.news-nav {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

.news-nav-name{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-weight: 500;
    font-size: 20px;
}
.news-nav .active {
    border-color: #2563eb; 
    border-bottom-width: 2px;
    color: #2563eb; 
}

.news-item {
    display: none;
}

.news-item-li {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.25rem;
    border-bottom: 1px solid #f3f4f6;
}

.news-item-left {
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    background-color: #e5e7eb;
    border-radius: 0.25rem;
    overflow: hidden;
}

.news-item-title {
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item-desc {
    font-size: 14px;
    color: #374151;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.news-item.show {
    display: block;
}


.rectangle {
    box-shadow: inset 0px 6px 16px rgba(88, 110, 219, 0.5);
}

.rectangle-right {
    border-radius: 20px;
    box-shadow: inset 0px 8px 10px rgba(88, 110, 219, 0.5);
}

.right-top {
    border-radius: 10px 10px 0 0;
}