/* ── News feed (🚀) ── */

.news-feed {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: none;
  padding: 18px 14px 90px;
}
.news-feed.visible { display: block; }
.news-feed::-webkit-scrollbar { display: none; }
body.logged-out .news-feed { display: none !important; }

.news-status {
  text-align: center;
  color: #bbb8a4;
  font-size: 0.85rem;
  padding: 40px 10px;
}

.news-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  padding: 12px 14px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.news-card:active { transform: scale(0.99); }

.news-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.news-avatar canvas { display: block; width: 100%; height: 100%; }

.news-body { flex: 1; min-width: 0; }

.news-line1 { font-size: 0.86rem; }
.news-line1 b { font-weight: 600; }
.news-time { color: #a09c88; font-size: 0.78rem; }

.news-trip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.news-trip-circle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.news-trip-circle canvas { display: block; width: 100%; height: 100%; }
.news-trip-name {
  font-size: 0.88rem;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-trip-date {
  flex-shrink: 0;
  color: #a09c88;
  font-size: 0.75rem;
}

.nav-icon.active { color: #1a1a1a; }
