/* ============================================================
   Product Detail Hero — Section 01
   Figma 554:679 | Hero — FR-4 PCB
   面包屑 + 渐变背景（白→蓝对角）+ 左文右图 + 底部3特性徽章
   设计基准 1280px
   ============================================================ */

.sparta-product-detail-hero {
	width: 100%;
	background: #fff;
}

/* ── 面包屑 ── */
.sparta-product-detail-hero__breadcrumb {
	background: #fff;
	padding: 14px 0;
}

.sparta-product-detail-hero__breadcrumb-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 39px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.sparta-product-detail-hero__bc-link {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	color: #054fbd;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sparta-product-detail-hero__bc-mid {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #6a6969;
	text-decoration: none;
}

.sparta-product-detail-hero__bc-sep {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #6a6969;
}

.sparta-product-detail-hero__bc-current {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #054fbd;
}

/* ── 主区域（渐变背景 + 右侧对角蓝色装饰）── */
.sparta-product-detail-hero__main {
	position: relative;
	overflow: hidden;
	background: #fff;
	width: 100%;
}

/* 右侧对角蓝色装饰块 */
.sparta-product-detail-hero__main::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 55%;
	height: 100%;
	background: linear-gradient(to bottom, #e8f1ff, #d0e4ff);
	clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
	z-index: 0;
}

.sparta-product-detail-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 39px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	min-height: 500px;
}

/* ── 左侧文字 ── */
.sparta-product-detail-hero__content {
	flex: 0 0 auto;
	width: 48%;
	max-width: 566px;
	display: flex;
	flex-direction: column;
	gap: 27px;
	padding: 60px 0 40px;
}

.sparta-product-detail-hero__subtitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	color: #053b8c;
	margin: 0;
}

.sparta-product-detail-hero__title {
	font-family: 'Anton', sans-serif;
	font-size: 60px;
	line-height: 70px;
	color: #012f73;
	margin: 0;
	font-weight: 400;
}

.sparta-product-detail-hero__desc {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #043580;
	margin: 0;
	max-width: 573px;
}

/* CTA 按钮：蓝底 + 黄色箭头方块 */
.sparta-product-detail-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	background: #054fbd;
	border-radius: 5px;
	padding: 7px 23px;
	height: 44px;
	text-decoration: none;
	width: fit-content;
	transition: background 0.3s;
}

.sparta-product-detail-hero__btn span:first-child {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
	color: #fff;
	white-space: nowrap;
}

.sparta-product-detail-hero__btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 33px;
	height: 33px;
	background: #ffd739;
	border-radius: 5px;
	flex-shrink: 0;
}

.sparta-product-detail-hero__btn:hover {
	background: #012f73;
}

/* ── 右侧图片 ── */
.sparta-product-detail-hero__image {
	flex-shrink: 0;
	width: 510px;
	height: 465px;
	border-radius: 20px;
	overflow: hidden;
}

.sparta-product-detail-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── 底部特性徽章 ── */
.sparta-product-detail-hero__badges-wrap {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 39px 48px;
}

.sparta-product-detail-hero__badges {
	display: flex;
	gap: 33px;
}

.sparta-product-detail-hero__badge {
	width: 199px;
	min-height: 85px;
	border: 2px solid #054fbd;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 12px 17px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #043580;
	background: rgba(255, 255, 255, 0.85);
}

/* ── 大屏 ≥1800px ── */
@media (min-width: 1800px) {
	.sparta-product-detail-hero__inner {
		max-width: 1600px;
	}

	.sparta-product-detail-hero__badges-wrap {
		max-width: 1600px;
	}

	.sparta-product-detail-hero__title {
		font-size: 72px;
		line-height: 80px;
	}

	.sparta-product-detail-hero__image {
		width: 600px;
		height: 540px;
	}
}

/* ── 平板 768px–1279px ── */
@media (min-width: 768px) and (max-width: 1279px) {
	.sparta-product-detail-hero__inner {
		padding: 0 24px;
		gap: 24px;
	}

	.sparta-product-detail-hero__content {
		width: auto;
		max-width: 50%;
		gap: 20px;
		padding: 40px 0;
	}

	.sparta-product-detail-hero__title {
		font-size: 42px;
		line-height: 52px;
	}

	.sparta-product-detail-hero__image {
		width: 340px;
		height: 320px;
	}

	.sparta-product-detail-hero__badges-wrap {
		padding: 0 24px 36px;
	}

	.sparta-product-detail-hero__badges {
		gap: 16px;
	}

	.sparta-product-detail-hero__badge {
		flex: 1;
		width: auto;
	}
}

/* ── 手机 ≤767px ── */
@media (max-width: 767px) {
	.sparta-product-detail-hero__main::before {
		display: none;
	}

	.sparta-product-detail-hero__inner {
		flex-direction: column;
		padding: 0 20px;
		min-height: auto;
		align-items: flex-start;
	}

	.sparta-product-detail-hero__content {
		width: 100%;
		max-width: 100%;
		padding: 32px 0 20px;
		gap: 16px;
	}

	.sparta-product-detail-hero__title {
		font-size: 40px;
		line-height: 48px;
	}

	.sparta-product-detail-hero__subtitle {
		font-size: 16px;
	}

	.sparta-product-detail-hero__image {
		width: 100%;
		height: 240px;
		margin-bottom: 24px;
	}

	.sparta-product-detail-hero__breadcrumb-inner {
		padding: 0 20px;
	}

	.sparta-product-detail-hero__badges-wrap {
		padding: 0 20px 36px;
	}

	.sparta-product-detail-hero__badges {
		flex-direction: column;
		gap: 12px;
	}

	.sparta-product-detail-hero__badge {
		width: 100%;
	}
}
