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;*/
}

[short] {
	grid-row: span 1;
	background-color: #ececec;
/*	background-color: green;*/
}

[tall] {
	grid-row: span 2;
	background-color: #ececec;
/*	background-color: crimson;*/
}

[taller] {
	grid-row: span 3;
	background-color: #ececec;
/*	background-color: blue;*/
}

[tallest] {
	grid-row: span 4;
	background-color: #ececec;
/*	background-color: gray;*/
}

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);
}

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

.recent-event-article {
	font-size:1rem;
	font-weight:400;
	color: #909090;
	text-align: justify;
	max-width:1000px;
	padding:0 10px;
	margin:0 auto 120px;
}

.recent-events-image {
	height:150px;
	overflow:hidden;
}

.recent-event-title {
	padding:15px;
	height:140px;
	font-weight:200;
}

.recent-event-intro {
	padding:15px;font-size:1rem;font-weight:300;
}

.recent-event-authors {
	font-size:.85rem;
	font-weight:700;
	margin-bottom: 40px;
}

.recent-event-article-img {
	width: 100%;
	height: 100%;
	border:1px solid #ececec;
	object-fit: contain; /* or "contain" */
}

.recent-event-article-heading {
	font-size:1.75rem;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 5px;
	font-weight: 200;
}

.recent-event-quote {
	font-style: italic;
	font-size: 1.15rem;
	font-weight: 150;
}

.recent-event-text-title {
	font-size:2rem;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 5px;
	font-weight: 200;
}

.recent-event-caption {
	font-size: .85rem;
	padding:0;
	margin: 0;
}

.recent-list-item-header {
	font-size: 1.2rem;
	font-weight: 400;
}


