/* ============================================================
   Секция 03: Trending AI Tags Bar — Стили (Нейтральная версия)
   ============================================================ */

.setka-trending {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 6px 0;
}

.setka-trending__inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.setka-trending__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  white-space: nowrap;
  flex-shrink: 0;
}

.setka-trending__label .setka-icon {
  color: var(--ink-950);
}

[data-theme="dark"] .setka-trending__label .setka-icon {
  color: var(--ink-400);
}

.setka-trending__scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  width: 100%;
}

.setka-trending__scroll:active {
  cursor: grabbing;
}

.setka-trending__scroll::-webkit-scrollbar {
  display: none;
}

.setka-trending__list {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.trending-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--r-xs);
  color: var(--ink-800);
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}

.trending-pill__hash {
  color: var(--ink-500);
}

.trending-pill:hover {
  border-color: var(--ink-950);
  color: var(--ink-950);
}

[data-theme="dark"] .trending-pill:hover {
  border-color: var(--ink-600);
  color: var(--ink-950);
}
