/* ==============================================
   Logistics & Delivery Widget
   ============================================== */
.lg-wrap {
	width: 100%;
	font-family: Inter, sans-serif;
}

/* ── Hero 全宽背景 ── */
.lg-hero {
	position: relative;
	width: 100%;
	min-height: 280px;
	background: center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 52px 24px 86px;
	color: #fff;
}

.lg-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(31, 63, 160, 0.76);
	pointer-events: none;
}

.lg-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	width: 100%;
}

.lg-kicker {
	font-size: 12px;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.4px;
	margin-bottom: 8px;
}

.lg-hero-title {
	font-size: clamp(26px, 3.4vw, 40px);
	line-height: 1.18;
	letter-spacing: -0.8px;
	font-weight: 800;
	margin: 0;
}

/* ── 卡片区域 ── */
.lg-cards-wrap {
	position: relative;
	z-index: 3;
	max-width: 1440px;
	margin: -56px auto 0;
	padding: 0 0px;
}

.lg-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.lg-card {
	background: #fff;
	padding: 34px 28px 32px;
	box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lg-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 26px 70px rgba(17, 24, 39, 0.14);
}

/* ── 图标 ── */
.lg-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #1f3fa0;
	color: #fff;
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	font-size: 19px;
}

.lg-icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.lg-icon svg path {
	fill: currentColor;
}

.lg-icon i {
	font-size: 22px;
	color: inherit;
}

/* ── 卡片文字 ── */
.lg-card h5 {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 10px;
	letter-spacing: -0.3px;
	color: #111827;
}

.lg-card p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #6b7280;
	margin: 0;
}

/* ── 响应式 ── */
@media (max-width: 820px) {
	.lg-cards {
		grid-template-columns: 1fr;
	}
	.lg-hero {
		padding-bottom: 96px;
	}
}
