@charset "utf-8";

.finance-services {
	background: #f3f5f8;
	padding: 56px 0 64px;
	font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
}

.finance-services__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 70px;
}

.finance-services__title {
	position: relative;
	margin: 0 0 40px;
	padding-bottom: 14px;
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.1em;
}

.finance-services__title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 56px;
	height: 4px;
	background: #1a6fc4;
	border-radius: 2px;
}

.finance-services__grid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	gap: 24px;
	width: 100%;
	max-width: none;
	margin: 0;
}

.service-card {
	flex: 0 0 152px;
	width: 152px;
	max-width: 152px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 128px;
	padding: 18px 8px 16px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 3px 14px rgba(0, 43, 94, 0.06);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0, 43, 94, 0.1);
}

.service-card__icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
	color: #1a6fc4;
}

.service-card__icon svg {
	width: 36px;
	height: 36px;
	display: block;
}

.service-card__name {
	font-size: 15px;
	font-weight: 700;
	color: #333;
	line-height: 1.3;
	margin-bottom: 6px;
}

.service-card__desc {
	font-size: 11px;
	line-height: 1.4;
	color: #999;
	text-align: center;
}

@media (max-width: 1100px) {
	.finance-services__inner {
		padding: 0 20px;
	}

	.finance-services__grid {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px 28px;
	}

	.service-card {
		flex: 0 0 calc(33.333% - 28px);
		width: calc(33.333% - 28px);
		max-width: 180px;
	}
}

@media (max-width: 640px) {
	.finance-services {
		padding: 40px 0 48px;
	}

	.finance-services__title {
		font-size: 24px;
		margin-bottom: 28px;
	}

	.finance-services__grid {
		gap: 14px;
	}

	.service-card {
		flex: 0 0 calc(50% - 10px);
		width: calc(50% - 10px);
		max-width: none;
		min-height: 118px;
		padding: 16px 10px 14px;
	}
}
