/* HOME·SEARCH (103) — home search field card · SINGLE SOURCE OF TRUTH.
 * The resting Google-style search pill at the top of Home (inside the topbar,
 * below the identity row). Deterministic search, no AI (D-386/D-406). Tapping it
 * opens the search surface (future). Do NOT restyle .hsf-* anywhere else
 * (mirror check 16). Prefix: hsf. */
.hsf {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  background: var(--surface-card);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  padding: var(--space-12) var(--space-16);
  cursor: pointer;
  transition: background var(--duration-200) var(--ease-in-out);
}
/* activation = a teal encircle (D-440 teal acts / focus) + the subtle fill.
 * Doubles as the keyboard focus ring (G6 — every control gets :focus-visible). */
.hsf:active { background: var(--surface-card-hover); outline: var(--focus-ring); outline-offset: var(--focus-offset); }
.hsf:focus-visible { outline: var(--focus-ring); outline-offset: var(--focus-offset); }
.hsf-i {
  width: var(--size-20);
  height: var(--size-20);
  color: var(--accent);
  flex: none;
}
.hsf-i svg { width: 100%; height: 100%; display: block; }
.hsf-ph {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: var(--size-15);
  color: var(--text-tertiary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hsf-div {
  width: 1px; /* token-exception */
  height: var(--size-20);
  background: var(--border-hairline);
  flex: none;
}
.hsf-mic {
  width: var(--size-20);
  height: var(--size-20);
  flex: none;
  border: 0;
  background: 0;
  padding: 0;
  color: var(--accent);
  cursor: pointer;
}
.hsf-mic svg { width: 100%; height: 100%; display: block; }
.hsf-mic:active { opacity: 0.62; }
