
/* The "Add your own" interest chip ballooned into a 137x143 circle and dropped
   onto its own line. Cause: its inline <svg> has a viewBox but NO width/height
   and no CSS size, so it stretched to fill the flex line — the chip is fine, the
   icon was unconstrained. Sizing the icon puts the chip back in the row with the
   others. Scoped to chips inside the account hub only. */
#page-profile .ah-chips .ah-chip > svg{
  width:15px !important;
  height:15px !important;
  flex:none !important;
  margin-right:2px;
}
