/* ============================================================
   GM Services Feature Cards — S15
   全宽背景图（689px）+ 3张悬空卡片（#f5f7fc）
   卡片底部压在背景图下边缘上（上提 124px，悬空约一半）
   设计基准 1280px
   ============================================================ */

.gm-services-cards {
	width: 100%;
	background: #fff;
	padding-bottom: 80px;
}

/* ── 全宽背景图 ── */
.gm-services-cards__bg {
	width: 100%;
	height: 689px;
	background-color: #0b1e3f;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ── 内容容器 ── */
.gm-services-cards__inner {
	max-width: var(--gm-max-width, 1280px);
	margin: 0 auto;
	padding: 0 var(--gm-side-pad, 39px);
}

/* ── Grid：负 margin 上提，悬空在背景图上 ── */
.gm-services-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: -124px;
	position: relative;
	z-index: 2;
}

/* ── 单张卡片 ── */
/* #f5f7fc, radius 20px, drop-shadow, 内容垂直居中 */
.gm-services-cards__card {
	background: #f5f7fc;
	border-radius: 20px;
	filter: drop-shadow(0px 4px 5px rgba(157, 157, 157, 0.25));
	min-height: 299px;
	padding: 49px 42px 43px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 18px;
	box-sizing: border-box;
}

/* 标题：Montserrat SemiBold 24px / line-height 30px / #23397f */
.gm-services-cards__card-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 30px;
	color: #23397f;
	margin: 0;
}

/* 描述：Montserrat Medium 16px / line-height 25px / #23397f */
.gm-services-cards__card-desc {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 25px;
	color: #23397f;
	margin: 0;
}

/* ── 响应式 ── */
@media ( min-width: 1800px ) {
	.gm-services-cards__bg {
		height: 780px;
	}
	.gm-services-cards__grid {
		gap: 40px;
	}
}

@media ( min-width: 768px ) and ( max-width: 1279px ) {
	.gm-services-cards__bg {
		height: 480px;
	}
	.gm-services-cards__grid {
		gap: 16px;
		margin-top: -100px;
	}
	.gm-services-cards__card {
		padding: 32px 24px;
		min-height: auto;
	}
	.gm-services-cards__card-title {
		font-size: 20px;
		line-height: 26px;
	}
	.gm-services-cards__card-desc {
		font-size: 14px;
		line-height: 22px;
	}
}

@media ( max-width: 767px ) {
	.gm-services-cards {
		padding-bottom: 48px;
	}
	.gm-services-cards__bg {
		height: 260px;
	}
	.gm-services-cards__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: -60px;
	}
	.gm-services-cards__card {
		min-height: auto;
		padding: 32px 24px;
	}
	.gm-services-cards__card-title {
		font-size: 20px;
		line-height: 26px;
	}
	.gm-services-cards__card-desc {
		font-size: 14px;
		line-height: 22px;
	}
}

/* ── 标题防主题覆盖（客户站 heading 字号/颜色会被覆盖） ── */
.gm-services-cards__card-title { font-size: 24px !important; color: #23397f !important; font-weight: 600 !important; }
@media ( max-width: 1279px ) {
	.gm-services-cards__card-title { font-size: 20px !important; }
}
