/* ─── Vendor hero card ───────────────────────────────────────────────────── */

.hp-vendor-hero {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 32px;
}

.hp-vendor-hero__avatar {
	flex-shrink: 0;
	line-height: 0;
}

.hp-vendor-hero__avatar img,
.hp-vendor-hero__avatar-img {
	width: 112px;
	height: 112px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #E2E8F0;
	display: block;
}

.hp-vendor-hero__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
}

.hp-vendor-hero__badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--hp-blue);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 6px;
}

.hp-vendor-hero__name {
	font-size: 26px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 8px;
	line-height: 1.3;
}

.hp-vendor-hero__tagline {
	font-size: 15px;
	color: #6B7280;
	margin: 0;
	line-height: 1.6;
}



@media (max-width: 575px) {
	.hp-vendor-hero {
		flex-direction: column;
		align-items: flex-start;
	}

	.hp-vendor-hero__avatar img,
	.hp-vendor-hero__avatar-img {
		width: 88px;
		height: 88px;
	}

	.hp-vendor-hero__meta {
		gap: 14px;
	}
}

/* ─── Products section subtext ───────────────────────────────────────────── */

.hp-vendor-products-sub {
	font-size: 15px;
	color: #6B7280;
	margin: 0 0 24px;
	line-height: 1.6;
}
