Hi there,
1. Featured image with radius corner and shadows: Add this CSS:
@media (min-width: 769px) {
.post-image-aligned-left .post-image img {
border-radius: 10px;
box-shadow: rgba(23,43,99,.2) 0 7px 28px!important;
}
}
2. Sticky right sidebar last widget – add this:
@media (min-width: 769px) {
.inside-right-sidebar {
height: 100%;
}
.inside-right-sidebar aside:last-child {
position: -webkit-sticky;
position: sticky;
top: 60px;
}
}
3. Shadows and borders for sidebar widgets:
.sidebar .widget {
box-shadow: rgba(23,43,99,.3) 0 7px 28px;
border-radius: 5px;
}
4. I would need to see you site to see what breadcrumb HTML you have added.