/* Блок «Свежие прогнозы» под статьёй. Скин-нейтрально: только те токены,
   что определены в обоих скинах ai-match (--border-color, --text-primary,
   --accent-primary), фон — полупрозрачный серый. */
.fresh-predictions {
  margin: 32px 0 0;
  padding: 20px;
  border: 1px solid var(--border-color, rgba(128, 128, 128, 0.25));
  border-radius: 12px;
  background: rgba(128, 128, 128, 0.05);
}
.fresh-predictions-title {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary, inherit);
}
.fresh-predictions-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fresh-predictions-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.fresh-predictions-item a {
  color: var(--text-primary, inherit);
  text-decoration: none;
  overflow-wrap: break-word;
}
.fresh-predictions-item a:hover {
  color: var(--accent-primary, #00e38c);
}
.fresh-predictions-date {
  font-size: 0.78rem;
  opacity: 0.65;
  white-space: nowrap;
}
