.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: 38px;
	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: 8px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 35, 70, .05);
}

.hk-post-card__image {
	display: block;
	aspect-ratio: 1200 / 633;
	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: 0;
	padding: 26px 24px 28px;
}

.hk-card-category {
	margin-bottom: 16px;
	font-size: 14px;
	color: #0b3f91;
	text-decoration: none;
}

.hk-post-card__title {
	margin: 0 0 16px;
	font-size: 21px !important;
	line-height: 1.32;
}

.hk-post-card__title a {
	color: #111;
	text-decoration: none;
}

.hk-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	align-items: center;
	margin-bottom: 18px;
	color: #0b58a7;
	font-size: 13px;
	line-height: 1.5;
}

.hk-post-card__meta a,
.hk-post-card__meta time {
	color: #0b58a7;
	text-decoration: none;
}

.hk-post-card__meta a:hover,
.hk-post-card__meta a:focus-visible {
	text-decoration: underline;
}

.hk-post-card__excerpt {
	margin: 0;
	color: #111;
	font-size: 16px;
	line-height: 1.7;
}

@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;
		padding: 20px 18px 22px;
	}
	.hk-post-card__title {
		font-size: 20px;
	}
	.hk-post-card__excerpt {
		font-size: 15px;
	}
}

.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;
}
