/*
 * CoPlanner — Kanban card drag sources.
 *
 * Companion to suppressNestedDragSources() in
 * app/javascript/controllers/kanban_card_drag.js. The JS sets
 * draggable="false" on nested links/images so the card itself is the drag
 * source; this rule applies the same intent at first paint, before Stimulus
 * has connected, so the very first drag after a page load behaves the same
 * as every later one.
 */
.deal-card a,
.deal-card img,
.project-card a,
.project-card img,
.opportunity-card a,
.opportunity-card img {
  -webkit-user-drag: none;
}
