/**
 * Qing 侧栏文章（More Blog）样式。
 *
 * 结构：.qing-pb（纵向卡片流，间距由控件设定）
 *   > .qing-pb__head（标题卡：居中标题 + 蓝色底线）
 *   > .qing-pb__feature（特色大卡：大图 + 蓝色标题 + 描述）
 *   > .qing-pb__item（横向小卡：左缩略图 + 标题）
 *
 * 标题与描述均以 -webkit-line-clamp 截断（行数由控件下发），超出省略号隐藏。
 */

.qing-pb {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* -------- 标题卡：居中 + 蓝色底线 -------- */
.qing-pb__head {
	background: #ffffff;
	border-bottom: 2px solid #1e50c8;
	border-radius: 4px 4px 0 0;
	padding: 18px 16px;
	text-align: center;
}

.qing-pb__head-title {
	margin: 0;
	color: #1a2233;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
}

/* -------- 特色大卡 -------- */
.qing-pb__feature {
	background: #f5f6f8;
	border-radius: 8px;
	overflow: hidden;
}

.qing-pb__f-thumb {
	display: block;
	width: 100%;
	height: 300px;
	background: #ffffff;
}

.qing-pb__f-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.qing-pb__f-body {
	padding: 18px 20px 22px;
}

/* 特色标题：行数由控件下发，超出省略号隐藏。 */
.qing-pb__f-title {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.qing-pb__f-title a {
	color: #1e50c8;
	text-decoration: none;
	transition: color 0.2s ease;
}

.qing-pb__f-title a:hover {
	color: #173d9e;
}

/* 描述：字数截取 + 行数截断双重保险。 */
.qing-pb__f-excerpt {
	margin: 0;
	color: #8a94a3;
	font-size: 15px;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/* -------- 横向小卡 -------- */
.qing-pb__item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #f5f6f8;
	border-radius: 8px;
	padding: 16px 18px;
}

.qing-pb__i-thumb {
	display: block;
	width: 72px;
	height: 72px;
	flex: 0 0 72px;
	background: #ffffff;
	border-radius: 4px;
	overflow: hidden;
}

.qing-pb__i-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* 小卡标题：行数由控件下发，超出省略号隐藏。 */
.qing-pb__i-title {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.qing-pb__i-title a {
	color: #1a2233;
	text-decoration: none;
	transition: color 0.2s ease;
}

.qing-pb__i-title a:hover {
	color: #1e50c8;
}

/* 编辑器空态提示。 */
.qing-pb__empty {
	padding: 16px;
	background: #f5f6f8;
	border-radius: 8px;
	color: #8a94a3;
	text-align: center;
}
