Hi there,
lets tackle the sidebar first
Add a Latest Posts block to the sidebar.
And add this CSS:
.widget .wp-block-latest-posts li {
position: relative;
counter-increment: post-count;
padding-left: 10px;
display: flex;
align-items: center;
padding: 5px 0;
}
.widget .wp-block-latest-posts li:not(:last-child) {
border-bottom: 1px solid #ccc;
}
.widget .wp-block-latest-posts li:before {
content: '#' counter(post-count);
margin-right: 10px;
font-size: 24px;
font-weight: bold;
color: #ccc;
}