Card Game like Hearthstone

I’ m trying to create a card game in UI. I have cards created, but I am having trouble figuring out how to display cards in a hearthstone style fashion with the mirrored curve and stacking cards. What would be the easiest way to go about this? Can someone give me an example?
60837-hearthstone-handdeck.png

As for distributing the cards on a curve, you might want to check out a tutorial on generating curve paths, like the one from Sebastian Lague here. It seems overkill, but I can’t seem to think of anything simpler (other than hardcoding the points ofc)
As for stacking the cards on top of each other, just increase their sorting order left to right. So, if the cards are all on the same sorting layer, the first one would have order 0, the second would have order 1, etc.