/* ── Pipeline ── */
/* ── Pipeline ── */
.pipeline-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}
.pipeline-card {
  padding: 14px 16px;
  background: var(--surface);
}
.pipeline-card:first-child { border-radius: 0 0 0 0; }
.pipeline-card:last-child { border-radius: 0 0 8px 8px; }
.pipeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pipeline-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.pipeline-card-goal {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.4;
}
