/* =========================================================
   Post Views Lite — view count badge
   Small pill badge for the [post_views] shortcode / auto-appended
   count. Matches the same Jost-uppercase + gold-accent language as
   the Popular Posts widget.
   ========================================================= */

.post-views-lite-count {
	--pvlc-ink-soft: #6b6862;
	--pvlc-gold: #D4A373;
	--pvlc-border: rgba(20, 19, 15, 0.12);
	--pvlc-surface: #faf9f6;

	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 16px;
	border: 1px solid var(--pvlc-border);
	border-radius: 999px;
	background: var(--pvlc-surface);

	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	line-height: 1;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.post-views-lite-count:hover {
	border-color: rgba(212, 163, 115, 0.45);
	background: #fffdfa;
}

.post-views-lite-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	fill: var(--pvlc-gold);
	transition: transform 0.3s ease;
}

.post-views-lite-count:hover .post-views-lite-icon {
	transform: scale(1.1);
}

.post-views-lite-count-text {
	font-family: 'Jost', -apple-system, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pvlc-ink-soft);
	white-space: nowrap;
}

/* --- Reduced motion --- */

@media (prefers-reduced-motion: reduce) {
	.post-views-lite-count,
	.post-views-lite-icon {
		transition-duration: 0.01ms !important;
	}
}
