.shen-article-header {
	--shen-ah-justify: center;
	--shen-ah-action-size: 38px;
	--shen-ah-action-icon-size: 16px;
	--shen-ah-action-color: #5a6478;
	--shen-ah-action-bg: #fff;
	--shen-ah-action-border: #e2e6ee;
	--shen-ah-action-hover-color: #fff;
	--shen-ah-action-hover-bg: #0052CC;
	--shen-ah-action-hover-border: #0052CC;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px 30px;
	text-align: center;
}

.shen-article-header__badges {
	display: flex;
	justify-content: var(--shen-ah-justify);
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}
.shen-article-header__badge {
	display: inline-block;
	padding: 5px 12px;
	background-color: #eef1f8;
	color: #4a5a7a;
	font-size: 13px;
	letter-spacing: .08em;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}
.shen-article-header__badge:hover {
	background-color: #dfe5f2;
	color: #1d4ed8;
}

.shen-article-header__title {
	margin: 0 0 24px;
	color: #1a2440;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: .01em;
}

.shen-article-header__excerpt {
	margin: 0 0 28px;
	color: #5a6478;
	font-size: 14px;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
}

.shen-article-header__meta {
	display: flex;
	align-items: center;
	justify-content: var(--shen-ah-justify);
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 22px;
}
.shen-article-header__meta.has-divider {
	border-top: 1px solid #e8ebf1;
}

.shen-article-header__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: linear-gradient(135deg, #dbe4f5, #c9d6ee);
	color: #3d4c6b;
	font-size:13px;
	font-weight: 600;
	letter-spacing: .04em;
}

.shen-article-header__author {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	text-align: left;
}
.shen-article-header__author-name {
	color: #2b3348;
	font-size: 14px;
	letter-spacing: .04em;
}
.shen-article-header__date {
	color: #8b93a3;
	font-size:13px;
}

.shen-article-header__actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: 6px;
}
.shen-article-header__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--shen-ah-action-size);
	height: var(--shen-ah-action-size);
	min-width: var(--shen-ah-action-size);
	min-height: var(--shen-ah-action-size);
	max-width: var(--shen-ah-action-size);
	max-height: var(--shen-ah-action-size);
	flex: 0 0 var(--shen-ah-action-size);
	aspect-ratio: 1 / 1;
	padding: 0;
	border: 1px solid var(--shen-ah-action-border);
	border-radius: 50%;
	box-sizing: border-box;
	background: var(--shen-ah-action-bg);
	color: var(--shen-ah-action-color);
	font-size: 0;
	line-height: 1;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.shen-article-header__action svg {
	display: block;
	width: var(--shen-ah-action-icon-size);
	height: var(--shen-ah-action-icon-size);
	flex: 0 0 var(--shen-ah-action-icon-size);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.shen-article-header__action:hover {
	border-color: var(--shen-ah-action-hover-border);
	background: var(--shen-ah-action-hover-bg);
	color: var(--shen-ah-action-hover-color);
}
.shen-article-header__action:focus-visible {
	outline: 2px solid var(--shen-ah-action-hover-bg);
	outline-offset: 3px;
}
/* 已收藏：图标填充 */
.shen-article-header__bookmark[aria-pressed="true"] {
	border-color: var(--shen-ah-action-hover-border);
	background: var(--shen-ah-action-hover-bg);
	color: var(--shen-ah-action-hover-color);
}
.shen-article-header__bookmark[aria-pressed="true"] svg {
	fill: currentColor;
}

/* 复制成功提示 */
.shen-article-header__action.is-copied {
	border-color: #22a06b;
	color: #22a06b;
}

@media (max-width: 767px) {
	.shen-article-header { padding: 28px 16px 22px; }
	.shen-article-header__title { font-size: 24px; }
	.shen-article-header__excerpt { font-size: 13px; line-height: 1.9; text-align: left; }
	.shen-article-header__meta { gap: 10px; }
}
