/* ═══ قائمة الإشارة ═══
   تنزل فوق كلّ شيء ملتصقةً بمربّع الكتابة. ألوانها من رموز صفحة المنشور
   كي تتبع الوضعَين بلا ورقةٍ ثانية. */
.acf-mention-list{
  /* ثابتة بالنسبة للشاشة: انظر place() — إحداثياتها من getBoundingClientRect */
  position:fixed;
  z-index:120;
  overflow:auto;
  padding:5px;
  border:1px solid var(--post-line-strong, rgba(255,255,255,.16));
  border-radius:14px;
  background:var(--post-panel-bg, #101827);
  box-shadow:0 18px 44px rgba(0,0,0,.34);
}
.acf-mention-list[hidden]{ display:none; }

.acf-mention-row{
  display:flex;
  align-items:center;
  gap:9px;
  width:100%;
  padding:7px 9px;
  border:0;
  border-radius:10px;
  background:none;
  color:inherit;
  font:inherit;
  text-align:start;
  cursor:pointer;
}
.acf-mention-row:hover,
.acf-mention-row.is-active{ background:var(--post-glass, rgba(255,255,255,.055)); }

.acf-mention-row img,
.acf-mention-dot{
  width:30px;
  height:30px;
  flex:none;
  border-radius:50%;
  object-fit:cover;
  background:var(--post-glass-2, rgba(255,255,255,.032));
}

.acf-mention-copy{ display:grid; min-width:0; line-height:1.35; }
.acf-mention-copy b{ font-size:13px; font-weight:900; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.acf-mention-copy small{ font-size:11.5px; opacity:.55; direction:ltr; text-align:start; }

.acf-mention-empty{ padding:14px 10px; text-align:center; font-size:12px; opacity:.6; }

/* الإشارة داخل النصّ: اسمٌ ثقيلٌ بلون الهوية، لا رابطٌ أزرق مسطّر يقطع
   قراءة الجملة كلّما ذُكر أحد. */
.acf-mention{
  color:var(--post-primary, #7c3aed);
  font-weight:900;
  text-decoration:none;
}
.acf-mention:hover{ text-decoration:underline; text-underline-offset:2px; }

/* الوسم في القائمة: مربّعٌ بعلامته بدل الصورة */
.acf-mention-hash{
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  flex:none;
  border-radius:9px;
  background:var(--post-glass, rgba(255,255,255,.055));
  color:var(--post-primary-2, #06b6d4);
  font-size:16px;
  font-weight:900;
  line-height:1;
}
