1) Remove gray border that shows around post on post listing page
You have this on your Additional CSS:
.generate-columns .inside-article {
border: 1px solid #ccc;
}
Simply remove this to remove the border.
2) Show categories because of some tweaks we had made is not showing when enabling it from customizer
Can you specify the tweaks you’ve made? It may be best to open a separate topic for this.
3) How to remove excerpt content from listing?
You can completely remove the excerpt from display by adding this css:
article.post .inside-article .entry-summary{
display: none;
}