/* ─── Founder Spotlight Widget ─────────────────────────────────────────────── */

.hbc-fs-wrap {
	display: flex;
	align-items: center;
	gap: 40px;
	text-decoration: none;
	color: inherit;
}

/* ── Left ── */

.hbc-fs-left {
	flex: 0 0 60%;
	max-width: 60%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ── Subtitle with line ── */

.hbc-fs-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 600;
	color: #c19a6b;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	line-height: 1;
}

.hbc-fs-subtitle::before {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: #c19a6b;
	flex-shrink: 0;
}

/* ── Name ── */

.hbc-fs-name {
	margin: 8px 0 0;
	font-size: 48px;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.1;
}

/* ── Role ── */

.hbc-fs-role {
	font-size: 18px;
	font-weight: 400;
	font-style: italic;
	color: #c19a6b;
	margin-bottom: 8px;
}

/* ── Description ── */

.hbc-fs-desc {
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	line-height: 1.7;
	margin-top: 4px;
}

.hbc-fs-desc p {
	margin: 0 0 8px;
}

/* ── Right ── */

.hbc-fs-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hbc-fs-avatar {
	width: 220px;
	height: 220px;
	border-radius: 50% !important;
	object-fit: cover;
	border: 4px solid #2c3e5a;
}

.hbc-fs-wrap img.hbc-fs-avatar {
	border-radius: 50% !important;
}

/* ── Responsive ── */

@media (max-width: 767px) {
	.hbc-fs-wrap {
		flex-direction: column;
		gap: 24px;
	}

	.hbc-fs-right {
		order: -1;
	}

	.hbc-fs-left {
		flex: 1;
		max-width: 100% !important;
	}

	.hbc-fs-name {
		font-size: 32px;
	}

	.hbc-fs-avatar {
		width: 160px;
		height: 160px;
	}
}
