/* shared/portal-you.css
 *
 * Anna's You tab. Design system tokens only, nothing below --fs-min.
 *
 * The screen is a short list of rows and almost nothing else, deliberately.
 * The old Profile page was 407 lines and the largest family screen in the
 * product, running Anna's own details and her mother's care needs together in
 * one long form. They are two people. Each row here opens one thing.
 */

.yu { padding: var(--sp-5) var(--sp-4) var(--sp-7); max-width: var(--portal-measure); margin: 0 auto; }
.yu .yu-h { font-size: var(--fs-lead); margin: var(--sp-6) 0 var(--sp-3); }
.yu-note { margin-top: var(--sp-5); }

/* ── Who she is ───────────────────────────────────────────────────────────── */

.yu-head { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-2); }
.yu-head__av {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand); color: var(--on-brand);
  font-family: var(--font-display); font-size: var(--fs-lead); line-height: 1;
}
.yu-head__body { min-width: 0; }
.yu .yu-head__name { font-size: var(--fs-h2); line-height: var(--lh-head); }
.yu-head__meta { font-size: var(--fs-min); color: var(--t3); margin-top: 2px; word-break: break-word; }

/* ── The rows ─────────────────────────────────────────────────────────────── */

.hds .yu-row:not(.ds-btn) {
  display: flex; align-items: center; gap: var(--sp-4); width: 100%; text-align: left;
  /* --tap-primary, not --tap-min. A row is the primary action on this screen. */
  min-height: var(--tap-primary);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body); font-size: var(--fs-body); color: var(--t1);
  cursor: pointer;
}
.yu-row + .yu-row { margin-top: var(--sp-2); }
.yu-row__icon { flex: none; color: var(--brand); display: flex; }
.yu-row__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.yu-row__title { font-weight: 700; }
.yu-row__sub { font-size: var(--fs-min); color: var(--t3); }
.yu-row__go { flex: none; color: var(--t3); font-size: var(--fs-lead); line-height: 1; }
