/* ═══════════════════════════════════════════════════════════════
   创始人介绍 – Founder Profile Widget
   ═══════════════════════════════════════════════════════════════ */

.hbc-fp-wrap {
	background-color: #1a1a1a;
	padding: 60px 20px;
}

.hbc-fp-inner {
	max-width: 1100px;
	margin: 0 auto;
}

/* ── 个人信息区域 ────────────────────────────────────────────── */

.hbc-fp-profile {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

.hbc-fp-photo-col {
	flex-shrink: 0;
}

.hbc-fp-photo {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #3a3a3a;
}

.hbc-fp-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── 右侧文字内容 ───────────────────────────────────────────── */

.hbc-fp-content {
	flex: 1;
	padding-top: 10px;
}

.hbc-fp-subtitle {
	font-size: 15px;
	color: #c8a86b;
	margin-bottom: 6px;
	font-style: italic;
}

.hbc-fp-name {
	font-size: 34px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 18px;
	line-height: 1.2;
}

/* 描述区：左侧竖线 + 文字 */
.hbc-fp-body {
	display: flex;
	gap: 20px;
	margin-bottom: 28px;
}

.hbc-fp-divider {
	width: 3px;
	flex-shrink: 0;
	background-color: #c8a86b;
	border-radius: 2px;
}

.hbc-fp-desc {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* ── 按钮 ────────────────────────────────────────────────────── */

.hbc-fp-btn-wrap {
	text-align: center;
}

.hbc-fp-btn {
	display: inline-block;
	padding: 12px 48px;
	background-color: #2563eb;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.hbc-fp-btn:hover {
	background-color: #1d4ed8;
	color: #ffffff;
}

/* ── 响应式 ──────────────────────────────────────────────────── */

@media (max-width: 768px) {
	.hbc-fp-profile {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 24px;
	}

	.hbc-fp-photo {
		width: 150px;
		height: 150px;
	}

	.hbc-fp-body {
		flex-direction: column;
		align-items: center;
	}

	.hbc-fp-divider {
		width: 60px;
		height: 3px;
	}
}
