Hi Eri-se,
That might be possible with custom CSS.
Since your site is local and we don’t have access, using a demo I can show you how to inspect an element, select the correct element selector. See this: https://screencast-o-matic.com/watch/cqeIhH04SG
.x-recent-posts a h3.h-recent-posts,
.x-recent-posts a:hover h3.h-recent-posts {
color: green; /*Change this color to your preferred color for the title orange*/
/*Add all other properties you want to change for this title like font-size or font-family or line-height*/
}
For the recent post, inspect the element like how I did it on the screencast, choose the correct selector and make sure that date is set to block so it is in one ROW. Something like this:
.x-recent-posts .h-recent-posts, .x-recent-posts .x-recent-posts-date {
display: block;
}
In case you want to switch which item display first, see this guide: https://tailwindcss.com/docs/flexbox-direction/
Hope this helps.