grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-auto-rows: 150px;
	grid-gap: 20px;
	margin-top:40px;
	margin-bottom: 90px;
	padding:20px;
/*	display: flex;*/
}
[taller] {
	grid-row: span 3;
	background-color: #ececec;
/*	background-color: blue;*/
}
grid-item {
	align-items: center;
	justify-content: center;
	font-size: 1.3em;
	font-weight: bold;
	color: #333333;
	transition: all 200ms ease-in-out;
	transform-origin: center;
	overflow: hidden;
}

grid-item:hover {
	transform: scale(1.05);
	cursor: pointer;
}

grid-item > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* or "contain" */
}

.knowledge-hub-grid-container {
	width:100%;max-width:1200px;margin:0 auto;
}
.knowledge-hub-image {
	height:150px;
	overflow:hidden;
}
.knowledge-hub-article-title {
	background-color:#cecece;height:150px;
	padding:15px;
	font-weight:200;
}
.knowledge-hub-intro {
	padding:15px;font-size:1rem;font-weight:300;height:135px;
}