/* ═══ صفحة الوسم ═══
   ألوانها من رموز صفحة المنشور كي تتبع الوضعَين بلا ورقةٍ ثانية. */

.acf-hashtag-page{
  display:grid;
  gap:14px;
  max-width:720px;
  margin-inline:auto;
  padding:14px 12px 28px;
  /* الشبكة تمنح أبناءها عرضاً لا نهائياً ما لم يُقيَّد: بلا هذا يمدّها
     أطولُ سطرٍ فيها وتخرج البطاقات عن الصفحة. */
  min-width:0;
}
.acf-hashtag-page > *{ min-width:0; }

.acf-hashtag-head{
  display:flex;
  align-items:center;
  gap:13px;
  padding:16px;
  border:1px solid var(--post-line, rgba(255,255,255,.105));
  border-radius:18px;
  background:var(--post-glass, rgba(255,255,255,.055));
}
.acf-hashtag-mark{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  flex:none;
  border-radius:14px;
  background:var(--post-primary, #7c3aed);
  color:#fff;
  font-size:26px;
  font-weight:900;
  line-height:1;
}
/* min-width:0 على ابن الـflex، وإلّا رفض الانكماش فخرج الوسم الطويل
   خارج الصندوق كلّه — «#انا_استطيع_التحدث_بحريه» لا ينكسر من نفسه. */
.acf-hashtag-head > div{ min-width:0; }
.acf-hashtag-head h1{
  margin:0;
  font-size:21px;
  line-height:1.35;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.acf-hashtag-head p{ margin:3px 0 0; font-size:12.5px; opacity:.6; }

/* ── التبويبان ─────────────────────────────────────────────────── */
.acf-hashtag-tabs{ display:grid; grid-template-columns:1fr 1fr; gap:8px; min-width:0; }
.acf-hashtag-tabs a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:44px;
  padding:0 12px;
  border:1px solid var(--post-line, rgba(255,255,255,.105));
  border-radius:14px;
  background:var(--post-glass-2, rgba(255,255,255,.032));
  color:inherit;
  text-decoration:none;
  font-size:13.5px;
  font-weight:900;
  opacity:.72;
}
.acf-hashtag-tabs a b{
  min-width:26px;
  padding:2px 7px;
  border-radius:999px;
  background:var(--post-glass, rgba(255,255,255,.055));
  font-size:11.5px;
}
.acf-hashtag-tabs a.is-active{
  opacity:1;
  border-color:var(--post-primary, #7c3aed);
  color:var(--post-primary, #7c3aed);
}
.acf-hashtag-tabs a.is-active b{ background:var(--post-primary, #7c3aed); color:#fff; }

/* ── التعليق في القائمة ───────────────────────────────────────── */
.acf-hashtag-list{ display:grid; gap:9px; min-width:0; }

.acf-hashtag-comment{
  border:1px solid var(--post-line, rgba(255,255,255,.105));
  border-radius:16px;
  background:var(--post-glass-2, rgba(255,255,255,.032));
  overflow:hidden;
  min-width:0;
}
.acf-hashtag-comment-link{ display:grid; gap:7px; padding:13px 14px; color:inherit; text-decoration:none; min-width:0; }
.acf-hashtag-comment-link:hover{ background:var(--post-glass, rgba(255,255,255,.055)); }

.acf-hashtag-comment header{ display:flex; align-items:center; gap:9px; min-width:0; }
.acf-hashtag-comment header img{ width:32px; height:32px; border-radius:50%; object-fit:cover; flex:none; }
/* بلا min-width:0 لا ينكمش هذا العنصر فيدفع الاسم خارج الصندوق */
.acf-hashtag-comment header div{ min-width:0; }
.acf-hashtag-comment header b{ display:block; font-size:13px; font-weight:900; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.acf-hashtag-comment header time{ display:block; font-size:11px; opacity:.5; }

.acf-hashtag-comment p{
  margin:0;
  font-size:14px;
  line-height:1.8;
  min-width:0;
  overflow-wrap:anywhere;
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.acf-hashtag-context{
  font-size:11.5px;
  opacity:.5;
  padding-inline-start:9px;
  border-inline-start:2px solid var(--post-line-strong, rgba(255,255,255,.16));
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.acf-hashtag-empty{
  padding:34px 16px;
  text-align:center;
  font-size:13.5px;
  opacity:.6;
  border:1px dashed var(--post-line-strong, rgba(255,255,255,.16));
  border-radius:16px;
}

.acf-hashtag-pager{ display:flex; align-items:center; justify-content:center; gap:12px; font-size:12.5px; }
.acf-hashtag-pager a{ color:var(--post-primary, #7c3aed); text-decoration:none; font-weight:900; }
.acf-hashtag-pager span{ opacity:.55; }

/* ── الوسم داخل النصّ ──────────────────────────────────────────── */
.acf-hashtag{
  color:var(--post-primary-2, #06b6d4);
  font-weight:800;
  text-decoration:none;
}
.acf-hashtag:hover{ text-decoration:underline; text-underline-offset:2px; }

@media(max-width:520px){
  .acf-hashtag-head{ padding:13px; }
  .acf-hashtag-mark{ width:42px; height:42px; font-size:22px; }
  .acf-hashtag-head h1{ font-size:18px; }
}
