.news-section {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    padding: 12px 16px;
}

.news-section h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
}

.news-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--hover-bg);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
}

.news-item a:hover {
    text-decoration: underline;
}

.news-meta {
    font-size: 10px;
    color: var(--text-muted);
    white-space: nowrap;
    text-align: right;
    min-width: 100px;
}
