/*=========================
	GEELY CTA BANNER
=========================*/

/* ── Section wrapper ─────────────────────────────────────────────────────── */
.block-geely-cta-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 1000px;
}

/* ── Background image ────────────────────────────────────────────────────── */
.block-geely-cta-banner .background-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ── Dark overlay ────────────────────────────────────────────────────────── */
.block-geely-cta-banner .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

/* ── Container: full-height flex, position controlled by modifier ─────────── */
.block-geely-cta-banner .container {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 1000px;
	padding-top: 80px;
	padding-bottom: 80px;
}

/* ── Content block ───────────────────────────────────────────────────────── */
.block-geely-cta-banner .content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 560px;
}

.block-geely-cta-banner .content .top-title,
.block-geely-cta-banner .content .title,
.block-geely-cta-banner .content .copy {
	color: #fff;
	margin: 0;
}

/* ── Position modifiers ──────────────────────────────────────────────────── */
.block-geely-cta-banner .container.position-top-left {
	align-items: flex-start;
	justify-content: flex-start;
}

.block-geely-cta-banner .container.position-top-right {
	align-items: flex-start;
	justify-content: flex-end;
}

.block-geely-cta-banner .container.position-bottom-left {
	align-items: flex-end;
	justify-content: flex-start;
}

.block-geely-cta-banner .container.position-bottom-right {
	align-items: flex-end;
	justify-content: flex-end;
}

/* ── Stats row ───────────────────────────────────────────────────────────── */
.block-geely-cta-banner .stats-row {
	display: flex;
	flex-direction: row;
	gap: 0;
}

.block-geely-cta-banner .stat-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-left: 16px;
	padding-right: 24px;
	border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.block-geely-cta-banner .stat-top,
.block-geely-cta-banner .stat-value,
.block-geely-cta-banner .stat-copy {
	color: #fff;
	margin: 0;
}

/* ── Button group ────────────────────────────────────────────────────────── */
.block-geely-cta-banner .link-group {
	display: flex;
	flex-direction: row;
	gap: 16px;
	align-items: center;
}

.block-geely-cta-banner .link-group a:first-child:not(:last-child) {
	background: transparent;
	color: #fff !important;
}

.block-geely-cta-banner .link-group a:last-child:not(:first-child) {
	background: #000 !important;
	border-color: #000 !important;
	color: #fff !important;
}

/* ── Tablet (max-width: 991px) ───────────────────────────────────────────── */
@media only screen and (max-width: 991px) {
	.block-geely-cta-banner .container {
		padding-top: 64px;
		padding-bottom: 64px;
	}
}

/* ── Mobile (max-width: 768px) ───────────────────────────────────────────── */
@media only screen and (max-width: 768px) {
	.block-geely-cta-banner .container {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.block-geely-cta-banner .content {
		max-width: 100%;
		width: 100%;
	}

	.block-geely-cta-banner .link-group {
		flex-direction: column;
		width: 100%;
	}

	.block-geely-cta-banner .link-group a {
		width: 100%;
		text-align: center;
	}
}
