/* ============================ Get involved CTA ========================== */

.bb-cta {
	--bb-text-w: 33%;

	display: flex;
	align-items: center;
	gap: 40px;
	padding-block: 56px;
}

.bb-cta__text {
	flex: 0 0 var(--bb-text-w);
	max-width: var(--bb-text-w);
	min-width: 0;
	color: #fff;
}

.bb-cta__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(24px, 2.8vw, 32px);
	font-weight: 700;
	line-height: 1.3;
}

.bb-cta__text-body {
	margin: 0 0 22px;
	color: rgba(255, 255, 255, .78);
	font-size: 14.5px;
	line-height: 1.8;
}

/* ---------------------------------------------------------------- cards */

.bb-cta__cards {
	flex: 1 1 auto;
	min-width: 0;
}

.bb-cta__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 26px 18px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--bb-radius);
	background: rgba(255, 255, 255, .05);
	text-align: center;
	transition: background-color .28s var(--bb-ease), border-color .28s var(--bb-ease), transform .28s var(--bb-ease);
}

.bb-cta__card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, .1);
	border-color: rgba(232, 149, 43, .55);
}

.bb-cta__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--bb-saffron);
	font-size: 24px;
	transition: transform .28s var(--bb-ease);
}

.bb-cta__card-icon .bb-icon,
.bb-cta__card-icon svg {
	width: 1em;
	height: 1em;
}

.bb-cta__card:hover .bb-cta__card-icon {
	transform: scale(1.1);
}

.bb-cta__card-title {
	color: #fff;
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.4;
}

.bb-cta__card-text {
	color: rgba(255, 255, 255, .62);
	font-size: 12.5px;
	line-height: 1.5;
}

/* ------------------------------------------------------------ breakpoints */

@media (max-width: 991px) {
	.bb-cta {
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
		padding-block: 44px;
	}

	.bb-cta__text {
		flex: none;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.bb-cta__card {
		padding: 22px 16px;
	}
}
