/* ===== 文章浏览量徽章 ===== */
/* 徽章容器 */
.kh-view-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	font-size: 0.82rem;
	line-height: 1.4;
	color: #667;
	background: rgba(0,0,0,0.05);
	border-radius: 20px;
	user-select: none;
	pointer-events: none;
	transition: background 0.2s, color 0.2s;
}

.kh-view-badge__icon {
	font-size: 0.88em;
	line-height: 1;
}

.kh-view-badge__count {
	font-variant-numeric: tabular-nums;
}

/* 仅单篇页显示，归档列表不显示 */
body:not(.single) .kh-view-badge,
body:not(.single) .kh-view-badge {
	display: none;
}

/* 确保定位生效 */
.single .inside-article {
	position: relative;
}
