
/* === SIMPLE PATCH: results stack visuals === */
.results-stack{ display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.result-item{
  display:flex; align-items:center; gap:10px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px; padding:10px 12px;
  color:#eaeaea; text-decoration:none;
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
}
.result-item.small{ transform: scale(.97); opacity:.9; }
.result-item.smaller{ transform: scale(.94); opacity:.82; }
.result-item img{ width:28px; height:28px; border-radius:6px; object-fit:cover; background: rgba(255,255,255,.04); }
.result-item .text{ display:flex; flex-direction:column; line-height:1.25; }
.result-item .name{ font-weight:600; font-size:13px; }
.result-item .meta{ font-size:12px; opacity:.9; }
