/**
 * 价值观页：电脑端三列，手机端单列堆叠。
 */

.vl-hero {
	position: relative;
	overflow: hidden;
	height: 380px;
	background: #061338 url("../images/values/hero-v2.jpg") right center / cover no-repeat;
}

.vl-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #061338 0%, rgba(6, 19, 56, 0.88) 28%, rgba(6, 19, 56, 0.28) 58%, rgba(6, 19, 56, 0) 78%);
	pointer-events: none;
}

.vl-hero-copy {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	height: 380px;
	padding: 48px 0 24px;
}

.vl-kicker {
	margin: 0;
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
}

.vl-hero h1 {
	margin: 10px 0 0;
	max-width: 720px;
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0.02em;
}

.vl-grid-wrap {
	background: #fff;
}

.vl-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 56px 0 72px;
}

.vl-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 36px;
}

.vl-item + .vl-item::before {
	content: "";
	position: absolute;
	top: 8px;
	bottom: 8px;
	left: 0;
	width: 1px;
	background: #d9dfe5;
}

.vl-item img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.vl-label {
	margin: 28px 0 0;
	color: #4aa3ff;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
}

.vl-item h2 {
	margin: 8px 0 0;
	color: var(--hl-ink);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
}

@media (max-width: 760px) {
	.vl-hero {
		display: none;
		height: 520px;
		background-image: url("../images/values/hero-mobile-v2.jpg");
		background-position: center bottom;
	}

	.vl-hero::before {
		background: linear-gradient(180deg, #061338 0%, rgba(5, 10, 36, 0.72) 38%, rgba(5, 10, 36, 0.12) 68%, rgba(5, 10, 36, 0) 100%);
	}

	.vl-hero-copy {
		height: 520px;
		padding: 36px 0 24px;
	}

	.vl-kicker {
		font-size: 14px;
		line-height: 1.6;
	}

	.vl-hero h1 {
		max-width: 320px;
		font-size: 24px;
		line-height: 1.28;
	}

	.vl-grid {
		grid-template-columns: 1fr;
		padding: 28px 0 40px;
		gap: 28px;
	}

	.vl-item {
		padding: 0;
	}

	.vl-item + .vl-item::before {
		display: none;
	}

	.vl-item img {
		aspect-ratio: 16 / 10;
	}

	.vl-label {
		margin-top: 18px;
		font-size: 14px;
	}

	.vl-item h2 {
		font-size: 26px;
		line-height: 1.3;
	}
}
