/*=========================
	BANNER - SECONDARY
=========================*/

/* ── Section wrapper ─────────────────────────────────────────────────────── */
.block-geely-banner-secondary {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: calc(100vh - var(--header-height, 84px));
}

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

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

/* ── Inner layout (full-height flex column, space-between) ───────────────── */
.block-geely-banner-secondary .banner-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: calc(100vh - var(--header-height, 84px));
	padding-top: 80px;
	padding-bottom: 80px;
	gap: 40px;
}

/* ── Top: eyebrow + heading + copy ───────────────────────────────────────── */
.block-geely-banner-secondary .content-top {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

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

/* ── Bottom: stats + buttons ─────────────────────────────────────────────── */
.block-geely-banner-secondary .content-bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	gap: 56px;
}

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

.block-geely-banner-secondary .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-banner-secondary .stat-label,
.block-geely-banner-secondary .stat-value,
.block-geely-banner-secondary .stat-sub {
	color: #fff;
	margin: 0;
}

.block-geely-banner-secondary .stat-value {
	font-size: 32px !important;
}

.block-geely-banner-secondary .stat-label,
.block-geely-banner-secondary .stat-sub {
	font-size: 12px !important;
}

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

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

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

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

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

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

	.block-geely-banner-secondary .content-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
}

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

	.block-geely-banner-secondary .stats-row {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.block-geely-banner-secondary .stat-item {
		padding-left: 0;
		padding-right: 0;
		padding-top: 16px;
		padding-bottom: 16px;
		border-left: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}

	.block-geely-banner-secondary .stat-item:last-child {
		border-bottom: none;
	}

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

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