Currently working on implementing a horizontal card row for my website with a unique hover effect - the cards lightly rotate and raise on hover. Here is a preview: https://i.sstatic.net/eDQ59.gif
To make this row responsive, I added overflow-x: auto;
to enable horizontal scrolling. However, this caused the cards to be clipped, making the hover effect appear poorly rendered. Here's how it looks now: https://i.sstatic.net/7wf7b.gif
I attempted using overflow-y: visible;
on the container but saw no improvement in preventing card clipping. Is there a solution that allows me to maintain the hover effect while ensuring the container remains scrollable? Your assistance is greatly appreciated. Thank you!