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

.sidebar__title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

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

.sidebar__rank {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  min-width: 24px;
  line-height: 1.2;
}

.sidebar__item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

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