/* Founder-directed mobile layout repair, 2026-09-21.
 * Profile interest and preference groups already use .row.wrap in app.js,
 * but the wrapping rule was missing. Presentation only: no actions or routes.
 */
#view > .card .row.wrap {
  flex-wrap: wrap;
  justify-content: flex-start;
  min-width: 0;
  max-width: 100%;
}
#view > .card .row.wrap > .pill {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}
/* Keep other members' profile content and action buttons inside the card. */
#view > .card,
#view > .actions.wrap {
  min-width: 0;
  max-width: 100%;
}
#view > .actions.wrap > .btn {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
