/* ============================================================
   Cap Industries — Section 07
   Figma 554:1572 | PCB Solutions Across Industries
   白背景，左标题 + 2×3 行业卡片网格
   设计基准 1280px（内容区 1202px，3 列间距 13px）
   ============================================================ */

.sparta-cap-industries {
	background: #fff;
	width: 100%;
	padding: 80px 0;
}

.sparta-cap-industries__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 39px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* ── 标题 ── */
.sparta-cap-industries__title {
	font-family: 'Anton', sans-serif;
	font-size: 48px;
	line-height: 60px;
	color: #012f73;
	font-weight: 400;
	margin: 0;
	max-width: 534px;
}

/* ── 卡片网格（2 行 × 3 列）── */
.sparta-cap-industries__grid {
	display: grid;
	grid-template-columns: repeat(3, 392px);
	gap: 13px;
	justify-content: start;
}

/* ── 单张卡片 ── */
.sparta-cap-industries__card {
	background: #f9f9f8;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 0px rgba(157, 157, 157, 0.25);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	width: 392px;
	min-height: 450px;
}

/* 卡片图片区（上半部分，196px 高）*/
.sparta-cap-industries__card-img {
	width: 100%;
	height: 196px;
	overflow: hidden;
	flex-shrink: 0;
	border-radius: 20px 20px 0 0;
}

.sparta-cap-industries__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 卡片文字区 */
.sparta-cap-industries__card-body {
	display: flex;
	flex-direction: column;
	gap: 27px;
	padding: 21px 34px 34px;
	flex: 1;
}

.sparta-cap-industries__card-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
	color: #000;
	margin: 0;
}

.sparta-cap-industries__card-desc {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #000;
	margin: 0;
	flex: 1;
}

/* Learn More 下划线链接 */
.sparta-cap-industries__card-link {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
	color: #054fbd;
	text-decoration: none;
	display: inline-flex;
	flex-direction: column;
	width: fit-content;
	gap: 3px;
	transition: color 0.2s;
}

.sparta-cap-industries__card-link-line {
	display: block;
	height: 2px;
	background: #054fbd;
	width: 100%;
	transition: background 0.2s;
}

.sparta-cap-industries__card-link:hover {
	color: #ffd739;
}

.sparta-cap-industries__card-link:hover .sparta-cap-industries__card-link-line {
	background: #ffd739;
}

/* ── 大屏 ≥1800px ── */
@media (min-width: 1800px) {
	.sparta-cap-industries__inner {
		max-width: 1600px;
		padding: 0 60px;
	}

	.sparta-cap-industries__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.sparta-cap-industries__card {
		width: auto;
	}
}

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

	.sparta-cap-industries__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sparta-cap-industries__card {
		width: auto;
	}

	.sparta-cap-industries__title {
		font-size: 36px;
		line-height: 46px;
	}
}

/* ── 手机 ≤767px ── */
@media (max-width: 767px) {
	.sparta-cap-industries {
		padding: 48px 0;
	}

	.sparta-cap-industries__inner {
		padding: 0 20px;
		gap: 28px;
	}

	.sparta-cap-industries__title {
		font-size: 30px;
		line-height: 38px;
	}

	.sparta-cap-industries__grid {
		grid-template-columns: 1fr;
	}

	.sparta-cap-industries__card {
		width: auto;
	}
}
