/* =========================================================
   文章列表徽章：置顶 / 热门（图标 + 文本）
   配合 generatepress-child/post-badges.php
   ========================================================= */

/* 列表页的卡片作为徽章的定位上下文（单页不生效） */
body:not(.singular) .inside-article {
	position: relative;
}

/* 叠加在缩略图左上角的徽章组 */
.child-thumb-badges {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	z-index: 3;
	pointer-events: none;
}

/* 单个徽章基础样式 */
.child-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .28);
	white-space: nowrap;
}

/* 图标跟随徽章文字颜色 */
.child-badge__icon {
	width: 13px;
	height: 13px;
	fill: currentColor;
	flex: 0 0 auto;
}

/* 置顶：主题蓝 */
.child-badge--sticky {
	background: #2684e1;
}

/* 热门：红色 */
.child-badge--hot {
	background: #e23b3b;
}

/* 深色模式：加强阴影对比 */
[data-theme="dark"] .child-badge {
	box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}
