/* =============================================================================
   BrixiesV2 Viewing Counter
   ============================================================================= */

.brixiesv2-vc {
	display       : inline-flex;
	align-items   : center;
	gap           : 8px;
	padding       : 6px 12px;
	border-radius : 999px;
	background    : var(--vc-bg, #fef3c7);
	color         : var(--vc-fg, #78350f);
	font-size     : 12px;
	font-weight   : 500;
	margin        : 6px 0;
	line-height   : 1.4;
}

.brixiesv2-vc__dot {
	width         : 8px;
	height        : 8px;
	border-radius : 50%;
	background    : var(--vc-dot, #f97316);
	box-shadow    : 0 0 0 0 rgba(249, 115, 22, 0.7);
	animation     : brixiesv2-vc-pulse 1.8s ease-out infinite;
	flex-shrink   : 0;
}

@keyframes brixiesv2-vc-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
	100% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
}
