
/* ═══ 5단계: 홈 프로젝트 위젯 ═══ */
.hm-proj-widget { min-height: 100px; }
.hm-proj-list { display: flex; flex-direction: column; gap: 8px; }
.hm-proj-item {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: box-shadow .15s, border-color .15s;
}
.hm-proj-item:hover {
  border-color: #D97706;
  box-shadow: 0 2px 8px rgba(217,119,6,0.08);
}
.hm-proj-item-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.hm-proj-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hm-proj-item-due { font-size: 11px; flex-shrink: 0; }
.hm-proj-item-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.hm-proj-item-bar-bg {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--bg2);
  overflow: hidden;
}
.hm-proj-item-rate {
  font-size: 13px;
  font-weight: 700;
  min-width: 36px;
  text-align: right;
}
.hm-proj-item-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--txt3);
}
.hm-proj-more {
  padding: 10px;
  text-align: center;
  font-size: 12px;
  color: #D97706;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  transition: background .15s;
}
.hm-proj-more:hover { background: #FEF3DA; }
