/* Highlight Cards */

.dgl-highlight-cards {
	display: flex;
	flex-direction: column;
	gap: 47px;
}

.dgl-highlight-cards .dgl-highlight-cards__title {
	font-family: "Buenos Aires", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 40px;
	line-height: 1.04;
	letter-spacing: -0.88px;
	color: #171717;
	margin: 0;
}

.dgl-highlight-cards .dgl-highlight-cards__description {
	font-family: "Figtree", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	color: #171717;
	margin: 0;
}

.dgl-highlight-cards__cards {
	display: flex;
	align-items: stretch;
	gap: 24px;
}

.dgl-highlight-cards__card {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 40px;
	border-radius: 20px;
	background: var(--light-grey, #efefef);
	box-sizing: border-box;
}

.dgl-highlight-cards__card--blue {
	background: #dcfaff;
}

.dgl-highlight-cards__card-icon {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
}

.dgl-highlight-cards__card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.dgl-highlight-cards__card-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dgl-highlight-cards .dgl-highlight-cards__card-title {
	font-family: "Figtree", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.26;
	margin: 0;
	background: linear-gradient(to right, var(--digilant-purple, #7616df), var(--blue, #3fcce3));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dgl-highlight-cards__card--blue .dgl-highlight-cards__card-title {
	background: none;
	-webkit-text-fill-color: initial;
	color: #171717;
}

.dgl-highlight-cards .dgl-highlight-cards__card-description {
	font-family: "Figtree", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	color: #171717;
	margin: 0;
}

.dgl-highlight-cards__banner {
	display: flex;
	align-items: center;
	padding: 40px;
	border-radius: 20px;
	background: linear-gradient(to right, var(--digilant-purple, #7616df), var(--blue, #3fcce3));
	box-sizing: border-box;
}

.dgl-highlight-cards .dgl-highlight-cards__banner-text {
	flex: 1;
	font-family: "Buenos Aires", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 36px;
	line-height: 1.04;
	letter-spacing: -1.152px;
	color: var(--White, #fcfcfc);
	text-align: center;
	margin: 0;
}

@media only screen and (max-width: 1024px) {
	.dgl-highlight-cards__card {
		padding: 32px;
	}

	.dgl-highlight-cards .dgl-highlight-cards__banner-text {
		font-size: 28px;
	}
}

@media only screen and (max-width: 768px) {
	.dgl-highlight-cards {
		gap: 32px;
	}

	.dgl-highlight-cards .dgl-highlight-cards__title {
		font-size: 28px;
		letter-spacing: -0.6px;
	}

	.dgl-highlight-cards__cards {
		flex-direction: column;
	}

	.dgl-highlight-cards__banner {
		padding: 24px;
	}

	.dgl-highlight-cards .dgl-highlight-cards__banner-text {
		font-size: 22px;
	}
}
