/* Add simple hover effect to the post featured image */
.wp-block-post-featured-image a {
    overflow: hidden;
}

.wp-block-post-featured-image a img {
    transition: transform 0.3s ease-in-out;
}

.wp-block-post:hover .wp-block-post-featured-image a img,
.wp-block-post-featured-image a:focus img,
.wp-block-post-featured-image a:hover img {
    transform: scale(1.04);
}

.wp-block-post-featured-image a:active img {
    transform: scale(1.08);
}