/* ============================================================
   About Story — Section 02
   Figma 746:1000 / 746:1025 / 770:1057 / 770:1058
   背景 #f9f9f8，顶部居中标题 + 左图右文（3个文字块）
   设计基准 1280px
   ============================================================ */

.sparta-about-story {
	width: 100%;
	background: #f9f9f8;
	padding: 80px 0 100px;
}

.sparta-about-story__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 39px;
}

/* ── 顶部居中 Header ── */
/* Figma: 标题居中，描述 920px 居中，顶部 897px（页面坐标），与卡片区间距约 55px */
.sparta-about-story__header {
	text-align: center;
	margin-bottom: 56px;
}

.sparta-about-story__header-title {
	font-family: 'Anton', sans-serif;
	font-size: 48px;
	font-weight: 400;
	line-height: 60px;
	color: #012f73;
	margin: 0 0 28px;
}

/* 描述：含蓝色加粗高亮关键词（由 PHP 输出 <strong> + 颜色 class） */
.sparta-about-story__header-desc {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 30px;
	color: #012f73;
	max-width: 920px;
	margin: 0 auto;
}

.sparta-about-story__header-desc strong,
.sparta-about-story__header-desc b {
	font-weight: 700;
	color: #054fbd;
}

/* ── 主体：左图 + 右文 ── */
.sparta-about-story__body {
	display: flex;
	gap: 43px;
	align-items: flex-start;
}

/* 左侧大图：635×573px */
.sparta-about-story__image {
	width: 635px;
	height: 573px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 4px;
}

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

/* 左侧无图时占位 */
.sparta-about-story__image--placeholder {
	background: rgba(1, 47, 115, 0.06);
	border-radius: 4px;
}

/* 右侧文字块列表 */
.sparta-about-story__blocks {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* 单个文字块 */
.sparta-about-story__block {
	padding: 0 0 34px;
	border-bottom: 1px solid rgba(1, 47, 115, 0.1);
	margin-bottom: 34px;
}

.sparta-about-story__block:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* 小标题：Montserrat Bold 20px #053b8c */
.sparta-about-story__block-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 20px;
	color: #053b8c;
	margin: 0 0 14px;
}

/* 描述：Montserrat Medium 16px #012f73 */
.sparta-about-story__block-desc {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 25px;
	color: #012f73;
	margin: 0;
}

/* ── 响应式 ── */
@media ( min-width: 1800px ) {
	.sparta-about-story__inner {
		max-width: 1600px;
	}
	.sparta-about-story__header-title {
		font-size: 56px;
	}
	.sparta-about-story__image {
		width: 720px;
		height: 640px;
	}
}

@media ( min-width: 768px ) and ( max-width: 1279px ) {
	.sparta-about-story__body {
		gap: 32px;
	}
	.sparta-about-story__image {
		width: 340px;
		height: 400px;
	}
	.sparta-about-story__header-title {
		font-size: 36px;
		line-height: 46px;
	}
	.sparta-about-story__header-desc {
		font-size: 15px;
	}
}

@media ( max-width: 767px ) {
	.sparta-about-story {
		padding: 56px 0 64px;
	}
	.sparta-about-story__inner {
		padding: 0 16px;
	}
	.sparta-about-story__header {
		margin-bottom: 40px;
	}
	.sparta-about-story__header-title {
		font-size: 30px;
		line-height: 38px;
	}
	.sparta-about-story__header-desc {
		font-size: 14px;
	}
	.sparta-about-story__body {
		flex-direction: column;
		gap: 32px;
	}
	.sparta-about-story__image {
		width: 100%;
		height: 260px;
	}
}
