/* HOME·TOPBAR (101) — home topbar card · SINGLE SOURCE OF TRUTH.
 * Identity row: wordmark + baby name + profile avatar. The search pill (103,
 * web/css/cards/home/search.css) sits below it inside the same sticky header.
 * Do NOT restyle .htop-* anywhere else (mirror check 16). Prefix: htop. */
.htop {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--surface-ground);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-16);
}
.htop-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
}
.htop-brand {
  font-family: var(--font-display);
  font-weight: var(--weight-600);
  font-size: var(--size-20);
  letter-spacing: var(--tracking-neg-01);
  color: var(--text-primary);
}
.htop-brand b { color: var(--brand); }
.htop-who {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  min-width: 0;
}
.htop-name {
  font-family: var(--font-label);
  font-size: var(--size-13);
  font-weight: var(--weight-600);
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.htop-av {
  width: var(--dim-32);
  height: var(--dim-32);
  flex: none;
  border: 0;
  border-radius: var(--radius-round);
  background: var(--surface-card);
  color: var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.htop-av svg { width: var(--size-18); height: var(--size-18); display: block; }
.htop-av:active { opacity: 0.62; }
