/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Image should be full width and centered */
.widget-recent-posts img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin-bottom: 10px; /* Space between image and title */
    margin-left: auto;
    margin-right: auto;
}

/* Make sure the widget container doesn't overflow */
.widget-recent-posts {
    overflow: hidden;
    display: flex;
    flex-direction: column; /* To ensure the image and title are stacked */
    align-items: center; /* To center the content */
    text-align: left; /* To center the title under the image */
}

/* Adjust title styling */
.widget-recent-posts h2, .widget-recent-posts h3 {
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
}
