NO BUG: Posts Element Box Shadow is getting clipped on the left and right sides

Hi Doug,
Thanks so much for your report!

The posts element uses an overflow: hidden by default, that cuts the shadows.
There are two ways to fix the problem:

  1. Set the overflow of the post elements to overflow: visible. I’m not sure if the overflow: hidden is still necessary, so please see for yourself if it leads to problems.
root {
  overflow: visible;
}
  1. Add a padding left/right to the posts element. The disadvantage is that the posts won’t align with the edges of your container, but the shadows are visible.

Best regards,
timmse