.lanes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.lane {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.lane.pending {
  border-style: dashed;
  background: rgba(148, 163, 184, 0.08);
}

.lane-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.lane-top span {
  font-weight: 600;
}

.lane-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.lane.pending .lane-value {
  color: #64748b;
  font-size: 1.1rem;
}

.lane-context {
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.lane-source {
  color: #64748b;
  font-size: 0.8rem;
}

.pill.pending {
  background: rgba(148, 163, 184, 0.22);
  color: #475569;
}

.pill.pending-access {
  background: rgba(148, 163, 184, 0.22);
  color: #475569;
}

.pill.loaded {
  background: rgba(22, 163, 74, 0.16);
  color: #15803d;
}

.kpi.pending strong {
  color: #64748b;
}

.pending-block {
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 12px;
  padding: 16px;
  background: rgba(148, 163, 184, 0.08);
}

.pending-headline {
  font-weight: 600;
  margin-top: 0;
}

.lane-detail p {
  margin: 0 0 8px;
}

.lane-detail p:last-child {
  margin-bottom: 0;
}
