/*
 * mind.css — Standard Rummy motif for the "For your mind" Tab B figure.
 * One REAL card sitting between two melds it could join (a set and a suited
 * run), to show a single card belonging to several possible futures. Card faces
 * are real images via the data-card contract (GUIDE_REVIEW_STANDARD §10); only
 * the empty "+" is a schematic slot, because a not-yet-held card has no face.
 * Colours come only from the --gc-* theme vars. No baked-in text.
 */

.rm-fork {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rm-meld { display: flex; align-items: center; gap: 8px; }

/* The open slot matches the real card footprint (gc-cardimg sm). */
.rm-slot {
  width: calc(var(--gc-card-w) * 0.72);
  aspect-ratio: 5 / 7;
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 700;
  color: color-mix(in srgb, var(--gc-text) 45%, transparent);
  background: color-mix(in srgb, var(--gc-text) 6%, transparent);
  border: 1px dashed var(--gc-border);
}

/* The shared card: ringed so the eye reads it as the one card in question. */
.rm-shared {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gc-accent) 55%, transparent),
              0 6px 16px var(--gc-glass);
}
