ul.three-column-list {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 1em;
	list-style: none;
	padding: 5px !important;
	margin: 0;
	box-sizing: border-box;
	width: 100%;
}

ul.three-column-list li {
	margin: 0;
	box-sizing: border-box;
	width: 100%;
}

@media screen and (max-width: 1024px) {
	ul.three-column-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 768px) {
	ul.three-column-list {
		grid-template-columns: 1fr;
	}
}