.cards-grid-container {
	width: 100%;
	padding: 4rem 10rem;

	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 4rem;
}

.cards-grid-title-container {
	width: 100%;
}

.cards-grid-title {
	font-weight: 600;
	font-size: 28px;
	line-height: 130%;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 2rem;
	justify-items: center;
	width: 100%;
}

.cards-grid-card {
	width: 100%;
	
	display: flex;
	flex-flow: column;
	gap: .5rem;

	padding: 2rem;
	border-radius: 8px;
}

.icon-size {
	font-size: 24px;
}

.grid-card-title {
	font-weight: 700;
	font-size: 23px;
	padding-bottom: 5px;
}

.grid-card-content-container {
	font-size: 18px;
	line-height: 150%;
}

@media screen and (max-width: 800px) {
	.cards-grid-container {
		padding: 4rem 0;
	}

	.cards-grid-title-container {
		width: 90%;
	}

	.cards-grid-title {
		text-align: center;
	}

	.cards-grid {
		width: 90%;
		grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	}
}