.hk-blog-page {
	background: var(--hk-soft);
	padding-bottom: 70px;
}

.hk-blog-hero {
	background: linear-gradient(135deg, var(--hk-navy-deep), var(--hk-navy));
	color: #fff;
	padding: 72px 0;
}

.hk-blog-hero--compact {
	padding: 54px 0;
}

.hk-blog-hero__inner {
	text-align: center;
	max-width: 980px;
}

.hk-blog-hero h1 {
	margin: 12px 0 16px;
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1.08;
	color: #fff;
}

.hk-blog-intro {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255,255,255,.9);
}

.hk-blog-intro > *:last-child {
	margin-bottom: 0;
}

.hk-blog-listing {
	padding-top: 58px;
}

.hk-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.hk-post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #fff;
	border: 1px solid var(--hk-line);
	border-radius: var(--hk-radius);
	overflow: hidden;
	box-shadow: var(--hk-shadow);
}

.hk-post-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	background: #eaf0f3;
	overflow: hidden;
}

.hk-post-card__image img,
.hk-image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hk-image-placeholder {
	background: linear-gradient(135deg, #e7edf1, #f8fafb);
}

.hk-post-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding: 24px;
}

.hk-card-category {
	font-size: 14px;
	color: var(--hk-green);
	text-decoration: none;
}

.hk-post-card__title {
	margin: 0;
	font-size: 24px;
	line-height: 1.28;
}

.hk-post-card__title a {
	color: var(--hk-navy-deep);
	text-decoration: none;
}

.hk-post-card .hk-read-more {
	margin-top: auto;
}

@media (max-width: 960px) {
	.hk-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.hk-blog-hero {
		padding: 52px 0;
	}
	.hk-post-grid {
		grid-template-columns: 1fr;
	}
	.hk-post-card__body {
		min-height: 0;
	}
}

.hk-blog-hero .hk-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--hk-green);
	color: #fff;
	text-transform: none;
}
