/* Drag ghost sorter */
.dragghost-stage {
  display: grid;
  min-height: 74vh;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
  padding: 32px max(16px, calc((100vw - 1180px) / 2));
}

.dragghost-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.15);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 76px rgba(17, 19, 21, 0.14);
  padding: clamp(16px, 4vw, 26px);
}

.dragghost-lanes {
  display: grid;
  min-height: 430px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dragghost-lane {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px dashed rgba(17, 19, 21, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px;
}

.dragghost-lane small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dragghost-card,
.dragghost-clone {
  display: grid;
  min-height: 96px;
  align-content: space-between;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--tone), rgba(255, 255, 255, 0.68));
  padding: 14px;
  will-change: transform, opacity;
}

.dragghost-card strong,
.dragghost-clone strong {
  font-size: clamp(20px, 4vw, 34px);
  line-height: 0.94;
  text-transform: uppercase;
}

.dragghost-clone {
  position: absolute;
  left: 28px;
  top: 88px;
  width: min(44vw, 190px);
  pointer-events: none;
  z-index: 10;
}

@media (max-width: 840px) {
  .dragghost-stage {
    grid-template-columns: 1fr;
  }

  .dragghost-lanes {
    grid-template-columns: 1fr;
  }

  .dragghost-clone {
    width: min(70vw, 240px);
  }
}
