/**
 * LB Support: Dual Banners
 * Figma 1352:719/724 — 2 张图 600×480px，40% 黑色蒙层，左下角叠加文字
 * Figma 1352:741/742 — 标题 Nunito Bold 32px 白 + "CONTACT SUPPORT" 白色下划线链接
 * Type A（全铺白底 + 居中内容，两图等宽并排）
 */

/* ── 全铺容器 breakout ─────────────────────────────────────── */
.lianbang-support-banners {
	position: relative;
	margin-left:  calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: auto;
	background-color: #fff;
}

/* ── 内容容器 ──────────────────────────────────────────────── */
.lianbang-support-banners__inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 87px max(30px, calc((100vw - 1600px) / 2 + 30px)) 87px;
	display: flex;
	gap: 18px;
}

/* ── 单个 Banner 项（Figma: 600×480px, aspect ≈ 1.25:1） ────── */
.lianbang-support-banners__item {
	position: relative;
	flex: 1 1 0;
	aspect-ratio: 600 / 480;
	border-radius: 0;
	overflow: hidden;
}

.lianbang-support-banners__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Figma: rgba(0,0,0,0.4) */
.lianbang-support-banners__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

/* ── 叠加文字：左下角 ──────────────────────────────────────── */
.lianbang-support-banners__content {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 32px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Figma 1352:726/743: Nunito Sans Bold 32px, white */
.lianbang-support-banners__title {
	margin: 0;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.2;
	color: #fff;
	max-width: 340px;
}

/* ── 文字链接：白色下划线 + 圆形箭头 ───────────────────────── */
.lianbang-support-banners__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding-bottom: 4px;
	border-bottom: 1px solid #fff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.lianbang-support-banners__link:hover {
	opacity: 0.75;
}

.lianbang-support-banners__link-text {
	font-family: 'SF Pro Text', 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
}

.lianbang-support-banners__link-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ── 响应式 ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.lianbang-support-banners__inner {
		flex-direction: column;
		padding: 56px 24px;
		gap: 20px;
	}
	.lianbang-support-banners__item {
		aspect-ratio: 4 / 3;
	}
	.lianbang-support-banners__title {
		font-size: 24px;
	}
}
