/**
 * SeedProd Blog Post Image Styling
 *
 * Ensures blog post featured images fill their containers completely,
 * regardless of the native image dimensions.
 *
 * @since <next-version>
 */

/* Blog listing thumbnails - make images fill the container width. */
.sp-posts-single-block .sp-thumbnail .sp-posts-image-link {
	display: block;
	width: 100%;
}

.sp-posts-single-block .sp-thumbnail .sp-posts-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Single post featured image - make image fill the container width. */
.sp-featuredimage-wrapper {
	width: 100%;
}

.sp-featuredimage-wrapper span {
	display: block;
	width: 100%;
}

.sp-featuredimage-wrapper .wp-post-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}
