/**
 * LearnDash Thumbnail Credit Banner
 *
 * Styles the credit range badge that appears over course thumbnails.
 */

/* Use the BuddyBoss thumbnail container as the positioning context */
.thumbnail-container.thumbnail-container-img {
	position: relative;
}

/* Badge itself */
.uc-ld-credit-banner {
	position: absolute;
	top: 12px;
	left: 12px;

	padding: 6px 14px;
	background: #1e93db;
	color: #ffffff;

	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.2;
	white-space: nowrap;

	border-radius: 4px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);

	/* Sit above the BuddyBoss video overlay */
	z-index: 20;
}

/* Optional: keep the thumbnail img behaving as before */
.thumbnail-container.thumbnail-container-img img {
	display: block;
}
