
.news-list { list-style: none; }
.news-item { display: grid; grid-template-columns: 154px minmax(0, 1fr); align-items: baseline; gap: 16px; min-height: 42px; padding: 10px 2px; border-bottom: 1px solid var(--line); }
.news-item:last-child { border-bottom: none; }
.news-title { display: block; color: #25324a; font-size: 13px; font-weight: 600; line-height: 1.5; text-decoration: none; overflow-wrap: anywhere; }
.news-title:hover { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.news-meta { display: grid; grid-template-columns: 82px 64px; align-items: center; color: var(--subtle); font-size: 10px; font-variant-numeric: tabular-nums; }
.news-source { overflow: hidden; color: #475467; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.filter-bar a { padding: 4px 8px; border: 1px solid transparent; border-radius: var(--radius-control); color: #475467; font-size: 11px; font-weight: 650; text-decoration: none; }
.filter-bar a:hover { background: var(--surface-soft); color: var(--text); }
.filter-bar a.active { border-color: #b8c0ea; background: var(--brand-soft); color: #283aa9; }
.news-toolbar { display: flex; gap: 6px; margin: 12px 0; }
.news-toolbar input { flex: 1; min-width: 0; height: 34px; border: 1px solid var(--line-strong); border-radius: var(--radius-control); padding: 6px 10px; background: #fff; color: var(--text); font: inherit; }
.news-toolbar input:focus { border-color: #98a2dc; outline: 0; box-shadow: 0 0 0 2px var(--brand-soft); }
.news-toolbar button { height: 34px; border: 1px solid #283aa9; border-radius: var(--radius-control); padding: 6px 16px; background: var(--brand); color: #fff; font-weight: 700; cursor: pointer; }
.news-summary { margin-bottom: 4px; color: var(--subtle); font-size: 10px; font-variant-numeric: tabular-nums; text-align: right; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; color: #667085; font-size: 11px; font-variant-numeric: tabular-nums; }
.pagination a, .pagination .disabled { min-width: 64px; padding: 6px 10px; border: 1px solid var(--line); border-radius: var(--radius-control); text-align: center; text-decoration: none; }
.pagination a { color: #3448c5; background: #fff; }
.pagination a:hover { border-color: #98a2dc; background: var(--brand-soft); }
.pagination .disabled { color: #98a2b3; background: #f8fafc; }
@media (max-width: 760px) {
  .news-page .card { padding: 10px; }
  .news-item { grid-template-columns: 1fr; gap: 3px; padding: 9px 1px; }
  .news-meta { grid-row: 1; grid-template-columns: minmax(0, 1fr) auto; }
  .news-title { grid-row: 2; font-size: 12.5px; }
  .filter-bar { max-height: 104px; overflow-y: auto; }
}
