.news-list {
    display: flex;
    flex-direction: column;
    max-height: 400px;
    overflow-y: scroll;
}

.news-item {
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #f8f8f8;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.news-publisher {
    font-size: 14px;
    color: #999;
    margin-bottom: 7px;
}

.news-title {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 25px;
    word-break: break-word;
    padding-bottom: 5px;
}

.news-link {
    color: #82ba26;
    text-decoration: none;
    margin: 0;
}

.news-date {
    font-size: 14px;
    color: #999;
}


