/* ─── Popular Posts Widget ─────────────────────────────────────────────────── */

.hbc-pp-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hbc-pp-item {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease;
}

.hbc-pp-item:hover {
	opacity: 0.75;
}

/* ── Thumbnail with number ── */

.hbc-pp-thumb {
	position: relative;
	width: 60px;
	height: 60px;
	min-width: 60px;
	background-color: #c19a6b;
	background-size: cover;
	background-position: center center;
	border-radius: 4px;
	flex-shrink: 0;
	overflow: hidden;
}

.hbc-pp-num {
	position: absolute;
	bottom: 4px;
	left: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	border-radius: 3px;
	line-height: 1;
}

/* ── Excerpt ── */

.hbc-pp-excerpt {
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	line-height: 1.6;
}

/* ── Responsive ── */

@media (max-width: 767px) {
	.hbc-pp-thumb {
		width: 50px;
		height: 50px;
		min-width: 50px;
	}

	.hbc-pp-excerpt {
		font-size: 13px;
	}
}
