
/* Canonical Why Switch stylesheet. */
.why-switch {
	padding: var(--ns-desktop-padding-top, 80px) 0 var(--ns-desktop-padding-bottom, 80px);
	background: #fff;
}

.why-switch .container {
	box-sizing: border-box;
	width: 100%;
	max-width: 1218px;
	margin: 0 auto;
	padding: 0 20px;
}

.why-switch__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.why-switch__header {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
}

.why-switch__copy {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.why-switch__title {
	width: 100%;
	margin: 0;
	color: #262626;
}

.why-switch__text {
	width: 100%;
	max-width: 640px;
	margin: 0;
	color: rgba(0, 0, 0, .75);
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0;
}

.why-switch__grid {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: radial-gradient(ellipse at center, #dfdfdf 0, #fff 64%);
}

.why-switch__card {
	display: flex;
	min-height: 244px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	padding: 48px;
	background: #fff;
	text-align: center;
}

.why-switch__icon {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.why-switch__card-copy {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.why-switch__card-title {
	width: 100%;
	margin: 0;
	color: #262626;
}

.why-switch__card-text {
	width: 100%;
	margin: 0;
	color: rgba(0, 0, 0, .75);
}

@media (max-width:991px) {
	.why-switch__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.why-switch__card {
		min-height: 220px;
		padding: 40px 32px;
	}
}

@media (max-width:767px) {
	.why-switch {
		padding: var(--ns-mobile-padding-top, 56px) 0 var(--ns-mobile-padding-bottom, 56px);
	}
	
	.why-switch__header {
		display: contents;
		align-items: flex-start;
		text-align: left;
	}
	
	.why-switch__copy {
		align-items: flex-start;
		gap: 16px;
		order: 1;
	}
	
	.why-switch__text {
		font-size: 16px;
		line-height: 24px;
	}
	
	.why-switch__button {
		width: auto;
		align-self: flex-start;
		order: 3;
	}
	
	.why-switch__grid {
		grid-template-columns: 1fr;
		background: none;
		order: 2;
		gap: 20px;
	}
	
	.why-switch__card {
		min-height: auto;
		align-items: flex-start;
		gap: 16px;
		padding: 0;
		text-align: left;
		flex-direction: row;
	}
	
	.why-switch__icon {
		width: 24px;
		height: 24px;
	}
	
	.why-switch__card-title {
		font-size: 18px !important;
		line-height: 26px !important;
	}
	
	.why-switch__card-copy {
		align-items: flex-start;
		gap: 4px;
	}
}
