/**
 * Section 标题头
 */

.baijia-sh {
	display: block;
	width: 100%;
}

/* 小标（eyebrow） */
.baijia-sh-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #a6ce39;
	margin: 0 0 16px;
	line-height: 1;
}

.baijia-sh-eyebrow::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 1em;
	background-color: currentColor;
	border-radius: 2px;
	flex: 0 0 auto;
}

/* 无竖条模式 */
.baijia-sh.no-bar .baijia-sh-eyebrow::before {
	display: none;
}

.baijia-sh-eyebrow span {
	display: inline-block;
}

/* 居中/右对齐时让 inline-flex 正确对齐 */
.baijia-sh[style*="text-align: center"] .baijia-sh-eyebrow,
.baijia-sh-eyebrow {
	vertical-align: middle;
}

/* 主标题 */
.baijia-sh-heading {
	margin: 0;
	color: #1e1e1e;
	font-weight: 700;
	line-height: 1.2;
}

/* 副标题 */
.baijia-sh-desc {
	margin: 16px 0 0;
	color: #666;
	line-height: 1.7;
}

.baijia-sh-desc > :last-child {
	margin-bottom: 0;
}
