/* =========================================
   Cambr Hero
   ========================================= */

.cambr-hero {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* --- Heading --- */

.cambr-hero__heading {
	font-family: 'Figtree', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 1.15;
	text-transform: capitalize;
	color: #1f1f1f;
	margin: 0 0 0 0;
}

@media (min-width: 768px) {
	.cambr-hero__heading {
		font-size: 56px;
		line-height: 60px;
	}
}

/* Highlight span */
.cambr-hero__highlight {
	color: #488af3;
}

/* --- Description --- */

.cambr-hero__desc {
	font-family: 'Figtree', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 36px;
	letter-spacing: .02em;
	color: #575757;
	margin: 20px 0 30px 0 !important;
}

/* --- Buttons --- */

.cambr-hero__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	margin-top: 0;
}

@media (min-width: 640px) {
	.cambr-hero__buttons {
		flex-direction: row;
		justify-content: center;
	}
}

/* --- Left alignment --- */

.cambr-hero--align-left {
	text-align: left;
	align-items: flex-start;
}

.cambr-hero--align-left .cambr-hero__desc {
	padding-right: 100px;
}

@media (min-width: 640px) {
	.cambr-hero--align-left .cambr-hero__buttons {
		justify-content: flex-start;
	}
}

/* --- Dark color scheme --- */

.cambr-hero--dark .cambr-hero__heading {
	color: #ffffff;
}

.cambr-hero--dark .cambr-hero__desc {
	color: #ffffff;
}

/* --- Subpage variant --- */

.cambr-hero--subpage .cambr-hero__heading {
	font-size: 30px;
}

@media (min-width: 768px) {
	.cambr-hero--subpage .cambr-hero__heading {
		font-size: 44px;
		line-height: 1.2;
	}
}

.cambr-hero--subpage .cambr-hero__desc {
	font-size: 18px;
	line-height: 1.5;
}

/* --- Responsive --- */

@media (max-width: 767px) {
	.cambr-hero__heading {
		font-size: 40px;
		line-height: 120%;
	}

	.cambr-hero__desc {
		padding-right: 0;
		font-size: 24px;
		line-height: 150%;
	}
}
