.ideas-like{
  display:inline-flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  user-select:none;
}

.ideas-like .like{
  width:16px;
  height:16px;
  fill:#65676b;        /* خاکستری */
  transition:.2s ease;
}

/* بهتر: روی path هم اعمال شود */
.ideas-like .like path{
  fill: currentColor;
}

.ideas-like{
  color:#65676b;       /* رنگ پیش‌فرض آیکن */
}

.ideas-like .like.active{
  fill:#1877f2;        /* اگر fill خود svg قابل کنترل باشد */
}

.ideas-like.active{
  color:#1877f2;       /* رنگ آبی برای currentColor */
}

.ideas-like .count{
  font-size:13px;
  color:#65676b;
}

.ideas-like.active .count{
  color:#1877f2;
}
