/* Trend indicators — chips + sparklines used by card modal + stats. */

.trend-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 3px;
  vertical-align: middle;
  white-space: nowrap;
}

.trend-up   { color: #3fb950; }
.trend-down { color: #f85149; }
.trend-flat { color: #8b949e; }
.trend-new {
  color: #ffb84a;
  background: rgba(255, 184, 74, 0.14);
  border: 1px solid rgba(255, 184, 74, 0.4);
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 4px;
  vertical-align: middle;
}

.trend-sparkline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 4px;
}
.trend-sparkline svg {
  display: block;
}

/* Stats freshness line — sits above the stats grid */
.stats-freshness {
  font-size: 11px;
  color: #8b949e;
  margin: 0 0 12px 0;
  padding-left: 16px;
}
.stats-freshness strong {
  color: #c9d1d9;
  font-weight: 600;
}
