/* ─── Post List Widget ────────────────────────────────────────────────────── */

.hbc-pl-wrap {
	position: relative;
}

/* ── Header ── */

.hbc-pl-header {
	margin-bottom: 28px;
}

.hbc-pl-subtitle {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #c19a6b;
	line-height: 1.4;
	margin-bottom: 4px;
}

.hbc-pl-heading {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}

/* ── List ── */

.hbc-pl-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ── Item ── */

.hbc-pl-item {
	display: flex;
	gap: 20px;
	align-items: center;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

/* ── Thumbnail ── */

.hbc-pl-thumb-link {
	display: block;
	flex: 0 0 35%;
	max-width: 35%;
}

.hbc-pl-thumb {
	width: 100%;
	height: 160px;
	background-color: #2c3e5a;
	background-size: cover;
	background-position: center center;
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.5s ease;
}

.hbc-pl-item:hover .hbc-pl-thumb {
	transform: scale(1.05);
}

.hbc-pl-item:hover .hbc-pl-thumb {
	transform: scale(1.03);
}

/* ── Body ── */

.hbc-pl-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
	min-width: 0;
}

.hbc-pl-title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #2c3e5a;
	line-height: 1.3;
}

.hbc-pl-title a {
	color: inherit;
	text-decoration: none;
}

.hbc-pl-title a:hover {
	color: #c19a6b;
}

/* ── Meta ── */

.hbc-pl-meta {
	display: flex;
	gap: 16px;
	font-size: 13px;
	color: #666666;
	flex-wrap: wrap;
}

/* ── Excerpt ── */

.hbc-pl-excerpt {
	margin: 4px 0 0;
	font-size: 14px;
	color: #333333;
	line-height: 1.6;
}

/* ── Read more ── */

.hbc-pl-readmore {
	display: inline-block;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 600;
	color: #2c3e5a;
	text-decoration: none;
	padding-bottom: 3px;
	border-bottom: 1.5px solid #2c3e5a;
	align-self: flex-start;
	transition: opacity 0.2s ease;
}

.hbc-pl-readmore:hover {
	opacity: 0.7;
}

/* ── Empty ── */

.hbc-pl-empty {
	text-align: center;
	color: #999;
	padding: 40px 20px;
	font-size: 16px;
}

/* ── Responsive ── */

@media (max-width: 767px) {
	.hbc-pl-item {
		flex-direction: column;
	}

	.hbc-pl-thumb-link {
		width: 100% !important;
		min-width: 100% !important;
		flex-basis: 100% !important;
	}

	.hbc-pl-thumb {
		height: 200px;
	}

	.hbc-pl-heading {
		font-size: 24px;
	}
}
