Hi there,
in Customizer > Additional CSS look for this CSS:
.inside-article, .sidebar .widget, .comments-area {
border-right: 2px solid rgba(0, 0, 0, 0.00);
border-bottom: 2px solid rgba(0, 0, 0, 0.00);
box-shadow: 0 0 10px rgba(232, 234, 237, 0.5);
}
If you just want to remove the border / shadow from the single post, then change that CSS to:
body:not(.single-post) .inside-article, .sidebar .widget, .comments-area {
border-right: 2px solid rgba(0, 0, 0, 0.00);
border-bottom: 2px solid rgba(0, 0, 0, 0.00);
box-shadow: 0 0 10px rgba(232, 234, 237, 0.5);
}