/* ============================================================================
   body-organ-map.css -- widget #10 (anatomy region grid -> detail)

   reuses the item-grid scaffold (.cw-grid / .cw-item / .cw-detail come free).
   theme-token based; the optional --cw-bm-tone encodes per-region meaning
   (e.g. evidence tier) and falls back to --cw-accent.
   ============================================================================ */

.cw-bodymap .cw-bm-head {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cw-bm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--cw-bm-tone, var(--cw-accent));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--cw-bm-tone, var(--cw-accent)) 16%, transparent);
}

.cw-bm-dot--lg {
    width: 11px;
    height: 11px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.cw-bodymap .cw-bm-label {
    font-weight: 600;
    font-size: 0.96rem;
    color: var(--cw-text);
}

.cw-bodymap .cw-bm-cue {
    font-size: 0.7rem;
    color: var(--cw-muted);
}
