/* ══════════════════════════════════════════
   TRENDING SIDEBAR — BEM Component
   ══════════════════════════════════════════ */

.trending-sidebar {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.trending-sidebar__title {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent);
  margin-bottom: var(--space-md);
}

.trending-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.trending-sidebar__item {
  display: flex;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.trending-sidebar__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.trending-sidebar__rank {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  min-width: 28px;
}

.trending-sidebar__item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-sidebar__item-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-top: var(--space-xs);
}
