/* ══════════════════════════════════════════════════════════
   NEWS PAGE
   ══════════════════════════════════════════════════════════ */
.news-list { padding: var(--sp-4) var(--sp-5) var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-3); }
.news-card {
  width: 100%;
  display: block;
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  color: var(--text);
  text-align: left;
  transition: transform .15s var(--ease), border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.news-card:active { transform: scale(.98); }
.news-card.is-read {
  border-color: var(--sage);
  box-shadow: 0 0 0 2px var(--sage-soft);
  background: linear-gradient(180deg, var(--section-bg) 0%, var(--sage-soft) 100%);
}
.news-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  background: var(--bg2);
}
.news-card-body { padding: var(--sp-4); }
.news-card .news-source {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
}
.news-card .news-source.ust { color: #2563EB; }
.news-card .news-source.mg { color: #059669; }
.news-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}
.news-card h3 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  flex: 1;
}
.news-read-indicator {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: var(--sage);
  color: white;
  font-size: 12px;
  font-weight: var(--fw-bold);
  line-height: 1;
  opacity: 0;
  transform: scale(.86);
  transition: opacity .18s ease, transform .18s ease;
}
.news-card.is-read .news-read-indicator {
  opacity: 1;
  transform: scale(1);
}
.news-card .news-summary {
  font-size: var(--fs-xs);
  color: var(--hint);
  line-height: var(--lh-relaxed);
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--subtitle);
}
.news-card .news-read { color: var(--link); font-weight: var(--fw-medium); }
.news-load-more {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: center;
  padding-top: var(--sp-2);
}
.news-count {
  color: var(--subtitle);
  font-size: var(--fs-xs);
}

