/* ============================================================
   Секция 06: Latest News Chronological Stream — Стили (Нейтральная версия)
   ============================================================ */

.setka-latest {
  background: var(--bg-card);
  border-top: var(--border-rule);
  padding: 20px 0 0;
  margin-top: 32px;
}

.setka-latest__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.setka-latest__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.setka-latest__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-950);
}

.setka-latest__note {
  font-size: 11px;
  color: var(--ink-600);
  display: none;
}

@media (min-width: 600px) {
  .setka-latest__note {
    display: inline;
  }
}

.setka-latest__stream {
  display: flex;
  flex-direction: column;
}

.setka-latest__empty {
  font-size: 13px;
  color: var(--ink-600);
  padding: 16px 0;
  font-style: italic;
}

.latest-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: baseline;
}

.latest-item:last-child {
  border-bottom: none;
}

.latest-item--new {
  animation: fadeInItem 0.25s var(--ease) forwards;
}

@keyframes fadeInItem {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.latest-item__time-col {
  padding-top: 1px;
}

.latest-item__time {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-600);
}

.latest-item__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.latest-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.latest-item__badge {
  font-size: 10px;
}

.latest-item__tags {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tag-pill--mini {
  font-size: 10px;
  padding: 1px 6px;
  background: transparent;
  border-color: var(--border-soft);
  color: var(--ink-600);
}

.latest-item__title {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.38;
  color: var(--ink-950);
}

.latest-item__title a:hover {
  text-decoration: underline;
}

.setka-latest__footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.btn-more__icon.is-spinning {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
