/**
 * Ultimate Post Kit Fallback Image - CSS Approach
 * Uses background-image for posts without featured images
 * Note: This is a backup - the PHP filters handle the actual fallback
 */

/* Target Ultimate Post Kit image containers that have no img inside */
.upk-img-wrap:not(:has(img.upk)) {
	min-height: 300px;
	position: relative;
	background-color: #f0f0f0;
}

/* Hide the placeholder image when using CSS fallback */
.upk-img-wrap img.upk[src*="placeholder.png"] {
	display: none;
}
