/* ── Sidebar ── */

/* Fixed sidebar layout (vote + curate) */
.select-layout {
  max-width: 1200px;
}
.select-pool {
  max-width: calc(100% - 440px);
}
.select-sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: max(28px, calc((100vw - 1200px) / 2 + 28px));
  width: 400px;
  height: min(780px, calc(100vh - 48px));
  z-index: 110;
}

/* Circle card (select sidebar) */
.circle-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: var(--space-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
}
.circle-card::-webkit-scrollbar { display: none; }
.circle-card-sticky {
  position: sticky;
  top: -20px;
  z-index: 5;
  background: var(--color-white);
  margin: -20px -20px 0;
  padding: 14px 20px 8px;
  border-radius: 10px 10px 0 0;
}
.circle-card-header {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.circle-card-divider {
  height: 1px;
  background: var(--color-warm-border);
  margin: var(--space-5) 0 var(--space-4);
}
