/* ─── Certifications Widget ─────────────────────────────────────────────── */

.hbc-cert-wrap {
	padding: 60px 4%;
	background: #ffffff;
}

.hbc-cert-header {
	text-align: center;
}

.hbc-cert-eyebrow {
	display: block;
	margin-bottom: 12px;
	color: #999999;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.32em;
	line-height: 1;
	text-transform: uppercase;
}

.hbc-cert-title {
	margin: 0;
	padding: 0;
	color: #222222;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.25;
}

.hbc-cert-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 50px;
}

.hbc-cert-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hbc-cert-image {
	width: 100%;
	height: 280px;
	overflow: hidden;
	border: 4px solid #d29c4d;
	background: #ffffff;
	box-sizing: border-box;
}

.hbc-cert-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hbc-cert-name {
	display: block;
	margin: 18px 0 8px;
	color: #222222;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.hbc-cert-desc {
	display: block;
	color: #888888;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
}

/* ─── Tablet (≤1024px) ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.hbc-cert-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}

	.hbc-cert-image {
		height: 240px;
	}

	.hbc-cert-title {
		font-size: 26px;
	}
}

/* ─── Mobile (≤767px) ────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.hbc-cert-wrap {
		padding: 40px 18px;
	}

	.hbc-cert-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
		margin-top: 30px;
	}

	.hbc-cert-image {
		height: 220px;
		border-width: 3px;
	}

	.hbc-cert-title {
		font-size: 22px;
	}

	.hbc-cert-name {
		font-size: 13px;
		margin: 14px 0 6px;
	}

	.hbc-cert-desc {
		font-size: 12px;
	}
}

/* ─── Small mobile (≤480px) ─────────────────────────────────────────────── */

@media (max-width: 480px) {
	.hbc-cert-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.hbc-cert-image {
		height: 320px;
	}

	.hbc-cert-title {
		font-size: 20px;
	}
}
