/* ─── Founder Card Widget ─────────────────────────────────────────────────── */

.hbc-fc-wrap {
	display: block;
	text-decoration: none;
	color: inherit;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hbc-fc-wrap:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

/* ── Top bar ── */

.hbc-fc-topbar {
	height: 4px;
	width: 100%;
	background-color: #f5a623;
}

/* ── Body ── */

.hbc-fc-body {
	padding: 30px;
	text-align: center;
}

/* ── Founder section ── */

.hbc-fc-founder {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	text-align: left;
}

.hbc-fc-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50% !important;
	object-fit: cover;
	border: 2px solid #e0e0e0;
	flex-shrink: 0;
}

.hbc-fc-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hbc-fc-name {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.3;
}

.hbc-fc-role {
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	line-height: 1.4;
}

/* ── Tagline ── */

.hbc-fc-tagline {
	margin: 0 0 16px;
	font-size: 15px;
	font-weight: 400;
	color: #333333;
	line-height: 1.5;
}

/* ── Description ── */

.hbc-fc-desc {
	margin: 0 0 24px;
	font-size: 16px;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.5;
}

/* ── Stats ── */

.hbc-fc-stats {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.hbc-fc-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	flex: 1 1 80px;
	min-width: 80px;
}

.hbc-fc-stat-num {
	font-size: 18px;
	font-weight: 600;
	color: #2196F3;
	line-height: 1.2;
	text-align: center;
	word-break: break-word;
}

.hbc-fc-stat-label {
	font-size: 10px;
	font-weight: 600;
	color: #999999;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3;
	letter-spacing: 0.3px;
}

/* ── Button ── */

.hbc-fc-btn-wrap {
	text-align: center;
}

.hbc-fc-btn {
	display: inline-block;
	padding: 10px 40px;
	background-color: #2196F3;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	border-radius: 24px;
	transition: opacity 0.2s ease;
}

.hbc-fc-wrap:hover .hbc-fc-btn {
	opacity: 0.9;
}

/* ── Responsive ── */

@media (max-width: 767px) {
	.hbc-fc-body {
		padding: 20px;
	}

	.hbc-fc-stats {
		gap: 8px;
	}

	.hbc-fc-stat {
		flex: 1 1 70px;
		min-width: 70px;
	}

	.hbc-fc-stat-num {
		font-size: 15px;
	}

	.hbc-fc-stat-label {
		font-size: 9px;
	}
}
