/**
 * 百家 侧边栏 · 随机文章 样式
 * 紧凑列表：缩略图 + 标题 + 日期
 */

.baijia-rp {
	width: 100%;
}

/* 标题栏 */
.baijia-rp-head {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 0 20px;
	padding-left: 14px;
}

.baijia-rp-head::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 1em;
	background-color: #a6ce39;
	border-radius: 2px;
}

.baijia-rp-head-text {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #111;
}

/* 列表 */
.baijia-rp-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.baijia-rp-item {
	margin: 0;
	padding: 0;
}

/* 分割线模式 */
.baijia-rp-divider-yes .baijia-rp-item:not(:last-child) {
	padding-bottom: 18px;
	border-bottom: 1px solid #eee;
}

.baijia-rp-link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

/* 序号 */
.baijia-rp-index {
	flex: 0 0 auto;
	font-size: 18px;
	font-weight: 700;
	font-style: italic;
	line-height: 1;
	color: #a6ce39;
	min-width: 24px;
}

/* 缩略图 */
.baijia-rp-thumb {
	position: relative;
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: 8px;
	background-color: #f3f3f3;
	display: block;
}

.baijia-rp-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.baijia-rp-item:hover .baijia-rp-img {
	transform: scale(1.08);
}

.baijia-rp-placeholder {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg, #f0f0f0 0 10px, #fafafa 10px 20px);
}

/* 文本信息 */
.baijia-rp-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.baijia-rp-title {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	color: #333;
	transition: color 0.25s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.baijia-rp-item:hover .baijia-rp-title {
	color: #a6ce39;
}

/* 日期 */
.baijia-rp-date {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: #999;
	line-height: 1;
}

.baijia-rp-date-icon {
	width: 13px;
	height: 13px;
	flex: 0 0 auto;
}

/* 空状态 */
.baijia-rp-empty {
	padding: 24px 12px;
	text-align: center;
	color: #999;
	font-size: 14px;
}

/* 响应式 */
@media (max-width: 600px) {
	.baijia-rp-thumb { width: 64px; height: 64px; }
	.baijia-rp-title { font-size: 14px; }
}
