.candidate-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.candidate-head h3 { flex: 1; }
.review-badge {
    white-space: nowrap;
    padding: 4px 7px;
    border-radius: 4px;
    background: #eef0ec;
    color: #56605a;
    font-size: 11px;
    font-weight: 800;
}
.review-badge.must-follow { background: #dff0e8; color: #11664f; }
.review-badge.worth-reading { background: #fff0cf; color: #805b00; }
.review-badge.skip { background: #f2e5e5; color: #8a3636; }
.candidate .original-title { font-size: 12px; color: #858c87; }
.candidate .review-summary { color: #303832; font-size: 14px; }
.candidate .why-useful { padding: 9px 10px; background: #f3f5f1; color: #46514a; }
.candidate.is-skip { opacity: .76; }
.candidate.is-selected { border-color: #69a995; box-shadow: inset 3px 0 #167d63; }
.selection-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.selection-tools span {
  margin-left: auto;
  color: var(--muted, #66736d);
  font-size: 14px;
}

@media (max-width: 640px) {
  .selection-tools span {
    width: 100%;
    margin-left: 0;
  }
}
