/**
 * Custom CSS to ensure featured images display properly
 * Add this to: Appearance → Customize → Additional CSS
 */

/* Ensure featured images are visible and properly sized */
.wp-block-post-featured-image,
.wp-block-post-featured-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin-bottom: 2rem;
}

/* Remove any aspect ratio constraints */
.wp-block-post-featured-image {
    aspect-ratio: unset !important;
}

/* Ensure the image is centered */
.wp-block-post-featured-image img {
    margin-left: auto;
    margin-right: auto;
}
