/* ─────────────────────────────────────────────────────────────────────
 * Meta chips + Identity row — both small inline-info components,
 * frequently siblings in cards, so housed together. Tokens-only.
 * Source: app/Views/partials/{meta-chips,identity-row}.php
 * ───────────────────────────────────────────────────────────────────── */

/* ---------- Meta chips ---------- */
.sat-meta-chips {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-tertiary);
    line-height: 1.4;
}

.sat-meta-chips__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.sat-meta-chips__chip > i {
    line-height: 1;
    font-size: 1em;
    color: var(--text-quaternary);
}

.sat-meta-chips__sep {
    color: var(--text-quaternary);
    user-select: none;
}

.sat-meta-chips--sm { font-size: 0.75rem; }
.sat-meta-chips--md { font-size: 0.875rem; }


/* ---------- Identity row ---------- */
.sat-identity-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
}

.sat-identity-row--stacked {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
}

.sat-identity-row__text {
    flex: 1 1 auto;
}

.sat-identity-row__name-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.sat-identity-row__name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
    text-decoration: none;
    transition: color var(--transition-fast);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

a.sat-identity-row__name:hover {
    color: var(--brand-primary);
}

.sat-identity-row__secondary {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    margin-top: 0.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
