/**
 * 流程卡片小部件 - 样式
 *
 * 上：居中标题/副标题/步骤/描述
 * 下：两列特性区块（左文右图 / 左图右文），图片悬停放大
 */

/* 卡片容器与对齐 ----------------------------------------------------- */
.hbc-pc-wrap {
	display: flex;
	justify-content: center;
	width: 100%;
}

.hbc-pc {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 640px;
	min-height: 720px;
	padding: 60px 50px;
	border-radius: 8px;
	background-color: #2b2b2b;
	color: #ffffff;
	text-align: center;
	box-sizing: border-box;
}

/* ── 顶部文字 ── */
.hbc-pc__title {
	margin: 0 0 60px;
	padding: 0;
	color: #ffffff;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	word-break: break-word;
}

.hbc-pc__subtitle {
	margin: 0 0 6px;
	padding: 0;
	color: #d80027;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.hbc-pc__step {
	margin: 0 0 24px;
	padding: 0;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.hbc-pc__desc {
	width: 100%;
	max-width: 90%;
	margin: 0 auto 40px;
	color: #dddddd;
	font-size: 14px;
	line-height: 1.7;
}

.hbc-pc__desc p {
	margin: 0 0 0.9em;
}

.hbc-pc__desc p:last-child {
	margin-bottom: 0;
}

/* ── 特性区块（左文右图） ── */
.hbc-pc__feature {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin-top: auto;
}

.hbc-pc--text-right .hbc-pc__feature {
	flex-direction: row-reverse;
}

.hbc-pc__feature-text {
	flex: 1 1 0%;
	min-width: 0;
	text-align: center;
}

.hbc-pc__feature-title {
	margin: 0 0 14px;
	padding: 0;
	color: #d80027;
	font-size: 16px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1.3;
	text-transform: uppercase;
}

.hbc-pc__feature-desc {
	color: #dddddd;
	font-size: 13px;
	line-height: 1.6;
}

.hbc-pc__feature-desc p {
	margin: 0 0 0.6em;
}

.hbc-pc__feature-desc p:last-child {
	margin-bottom: 0;
}

/* ── 特性图片（悬停放大） ── */
.hbc-pc__feature-img {
	flex: 0 0 auto;
	width: 100%;
	max-width: 50%;
	height: 160px;
	overflow: hidden;
	border-radius: 4px;
	position: relative;
}

.hbc-pc__feature-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: transform 0.35s ease;
}

.hbc-pc__feature-img:hover img {
	transform: scale(1.1);
}

/* ── 响应式：平板 (≤1024px) ── */
@media (max-width: 1024px) {
	.hbc-pc {
		padding: 48px 36px;
	}

	.hbc-pc__title {
		margin-bottom: 40px;
	}
}

/* ── 响应式：手机 (≤768px) ── */
@media (max-width: 768px) {
	.hbc-pc {
		padding: 36px 24px;
		min-height: auto;
	}

	.hbc-pc__feature,
	.hbc-pc--text-right .hbc-pc__feature {
		flex-direction: column;
		gap: 20px;
	}

	.hbc-pc__feature-img {
		max-width: 100%;
		height: 200px;
	}

	.hbc-pc__title {
		margin-bottom: 32px;
	}
}
