.news-page-container { margin-bottom: 30px; }
.page-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--bgh-border);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.page-main-heading { font-size: 22px; font-weight: 900; color: var(--bgh-dark); }
.page-sub-heading { font-size: 13px; color: #616161; }
.btn-primary-action {
    background: var(--bgh-primary);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
}
.news-list { display: flex; flex-direction: column; gap: 15px; }
.news-card {
    background: #fff;
    border: 1px solid var(--bgh-border);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.news-tag {
    background: #ffe0b2;
    color: #e65100;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
}
.news-date { font-size: 12px; color: #9e9e9e; }
.news-headline { font-size: 17px; font-weight: 800; color: #212121; margin-bottom: 6px; }
.news-body { font-size: 14px; color: #424242; line-height: 1.6; }
.empty-box { background: #fff; padding: 30px; text-align: center; color: #757575; border-radius: 10px; border: 1px solid var(--bgh-border); }