.ct-numbered-cards {
	margin-top: var(--ct-numbered-cards-margin-top, 0px);
	margin-bottom: var(--ct-numbered-cards-margin-bottom, 0px);
}

@media (max-width: 768px) {
	.ct-numbered-cards {
		margin-top: var(--ct-numbered-cards-margin-top-mobile, var(--ct-numbered-cards-margin-top, 0px));
		margin-bottom: var(--ct-numbered-cards-margin-bottom-mobile, var(--ct-numbered-cards-margin-bottom, 0px));
	}
}

.ct-numbered-cards__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
}

.ct-numbered-cards__header-copy {
	min-width: 0;
}

.ct-numbered-cards__badge {
	flex: 0 0 auto;
}

.ct-numbered-cards__text {
	max-width: 660px;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: var(--color-neutral-700);
}

.ct-numbered-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ct-numbered-cards__card {
	display: flex;
	flex-direction: column;
	min-height: 236px;
	border-radius: 16px;
	padding: 24px;
	background: var(--color-light-100);
}

.ct-numbered-cards__card:nth-child(6n+1),
.ct-numbered-cards__card:nth-child(6n) {
	background: var(--color-white);
	border: 1px solid var(--color-light-200);
}

.ct-numbered-cards__card:nth-child(6n+5) {
	background: var(--color-light-50);
	border: 1px solid var(--color-light-200);
}

.ct-numbered-cards__card:nth-child(6n+1),
.ct-numbered-cards__card:nth-child(6n) {
	background-image: url('../../assets/img/vector-bg-2.png');
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
}

.ct-numbered-cards__card:nth-child(6n+2) {
	background-image: url('../../assets/img/vector-bg-3.png');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: auto 100%;
}

.ct-numbered-cards__card-body {
	margin-top: auto;
}

.ct-numbered-cards__card-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 10px;
	background: var(--color-white);
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--color-purple-deep);
	margin-bottom: 20px;
}

.ct-numbered-cards__card:nth-child(6n+1) .ct-numbered-cards__card-number,
.ct-numbered-cards__card:nth-child(6n+5) .ct-numbered-cards__card-number,
.ct-numbered-cards__card:nth-child(6n) .ct-numbered-cards__card-number {
	background: var(--color-light-100);
}

.ct-numbered-cards__card-title {
	font-weight: 700;
	font-size: 18px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--color-bg-deepest);
	margin: 0 0 12px;
}

.ct-numbered-cards__card-text {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--color-bg-deepest);
}

@media (min-width: 769px) and (max-width: 960px) {
	.ct-numbered-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.ct-numbered-cards__header {
		flex-direction: column-reverse;
		margin-bottom: 28px;
	}

	.ct-numbered-cards__text {
		font-size: 14px;
	}

	.ct-numbered-cards__grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.ct-numbered-cards__card {
		padding: 16px;
		min-height: 148px;
	}

	.ct-numbered-cards__card-number {
		width: 40px;
		height: 40px;
		border-radius: 8px;
		font-size: 18px;
	}

	.ct-numbered-cards__card-title {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.ct-numbered-cards__card-text {
		font-size: 12px;
	}
}
