/**
 * Sale badge mobile fix (Bug #107279).
 * Prevents sale badge from overlapping product thumbnail on Course Shop grid on mobile.
 */

 @media (max-width: 768px) {
	/* Course Shop: post grid and post feed product cards */
	.woocommerce .product.fl-post-grid-post span.onsale,
	.woocommerce .product.fl-post-feed-post span.onsale,
	.woocommerce .product.fl-post-feed-image span.onsale {
		top: 0.25rem !important;
		left: 0.25rem !important;
		right: auto !important;
		margin: 0 !important;
		min-height: auto;
		min-width: 1.75rem !important;
		padding: 0.25rem !important;
		font-size: 0.75rem !important;
		line-height: 1 !important;
	}
}

