body {
	overflow-x: hidden;
}
@media (min-width: 1200px) {
	#events-section-wrap > div[class*="col-md-"] > section {
    	transform: translateX(-50%);
    	margin-left: 50%;
    	width: 100vw;
    	max-width: 1350px;
	}
}
#events-section-wrap > div[class*="col-md-"] > section {
    /*height: 480px;*/
    display: grid;
	grid-template-columns: minmax(700px, 1fr) minmax(auto, 240px) minmax(280px, 1fr);
	grid-template-columns: 700px 240px 1fr;
	grid-auto-rows: 240px;
}
.event-item {
	display: flex;
	position: relative;
	font-size: .9em;
	padding: 2em;
}
.event-item:nth-of-type(1) {
	background: #282561;
}
.event-item:nth-of-type(2) {
	background: #276F93;
}
.event-item:nth-of-type(3) {
	background: #198AFF;
}
.event-item:nth-of-type(4) {
	background: #483ab7;
}
@media (max-width: 1200px) {
	.event-item:nth-of-type(1),
	.event-item:nth-of-type(2) {
		grid-row: span 2;
	}
	.event-item:nth-of-type(2) {
		grid-column: span 2;
	}
	.event-item:nth-of-type(3) {
		/*grid-row-start: 3;*/
	}
	.event-item:nth-of-type(4) {
		grid-column: 2/-1;
	}
}
@media (max-width: 990px) {
	#events-section-wrap > div[class*="col-md-"] > section {
		grid-template-columns: 240px 1fr;
		grid-auto-rows: 120px;
	}
	.event-item:nth-of-type(even), 
	.event-item:nth-of-type(3) {
		grid-row: span 2;
	}
	.event-item:nth-of-type(1),
	.event-item:nth-of-type(2) {
		grid-column: 1/-1;
	}
	.event-item:nth-of-type(1) {
		grid-row: span 3;		
	}
}
@media (max-width: 500px) {
	.event-item:nth-of-type(even),
	.event-item:nth-of-type(odd) {
		grid-column: 1/-1;
	}
}
.event-item * {
	color: white;
}
.event-item h3 {
	font-weight: normal;
	margin-bottom: 5px;
	line-height: 1.3em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
.event-item:not(:first-of-type) h3 {
	font-size: 22px;
}
.event-item:nth-of-type(3) h3 {
	font-size: 20px;
}
.event-item h3::after {
	content: url(../images/calendar-icon.svg);
	margin-left: .5ch;
}
.event-item h3 a:hover {
	color: currentColor;
	text-decoration: underline;
}
.event-item time {
	display: block;
	font-size: 18px;
	font-weight: bold;
}
.event-item > section > span {
	display: block;
	display: -webkit-box;
	  -webkit-line-clamp: 3;
	  -webkit-box-orient: vertical;  
	  overflow: hidden;
}
.event-item .read-more {
	display: inline-block;
	font-size: 1.2em;
	padding: .75em 7ch 0.9em;;
	border: 2px solid white;
	margin-top: 1em;
	background: rgba(0,0,0,.1);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.event-item .read-more:hover {
	transition: .25s ease-in-out all;
	background: rgba(0,0,0,.5);
	backdrop-filter: blur(4px);
	color: currentColor;
}
.event-item .read-more {
	display: none;
}
.event-item:not(:first-of-type) .read-more {
	display: none;
}
.event-item .details:empty,
.event-item .details *:not(img:first-of-type) {
	display: none;
}
.event-item .details:not(:empty) {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	z-index: 1;
}
.event-item .details:not(:empty)::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	background-color: rgba(0,0,0,.6);
}
.event-item .details img {
	object-fit: cover;
	width: 130%;
	height: 100%;
}
@media screen and (min-width:0\0) {
	/*Target only IE because it sucks*/
	#events-section-wrap > div[class*='col-md-'] > section {
		display: flex;
	}
	.event-item {
		display: flex;
		width: 50%;
		height: 280px;
	}
	.event-item:nth-of-type(1) {
		padding: 2em;
	}
	.event-item:first-of-type > section {
		max-width: 100%;
	}
	.event-item .read-more {
		display: none;
	}
}
@media screen and (min-width:0\0) and (max-width: 1200px) {
	/*Target only IE, poor old IE*/
	#events-section-wrap > div[class*='col-md-'] > section {
		flex-wrap: wrap;
	}
}
@media screen and (min-width:0\0) and (max-width: 767px) {
	/*Target the relic that is Internet Explorer for the good old days when Firefox was but a distant dream and there was no such thing as extensions or opening links in new tabs*/
	#events-section-wrap > div[class*='col-md-'] > section {
		display: block;
	}
	.event-item {
		width: 100%;
	}
}