.events-single {
	margin-bottom: 40px;
}

.events-single .header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 420px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 40px;
	position: relative;
	padding-right: 20px;
	padding-left: 20px;
}

.events-single .header::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	z-index: 1;
}

.events-single .header .title,
.events-single .header .date {
	color: #FFF;
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 2;
}

.events-single .content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 40px;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}

.events-single .details {
	background-color: #eeeeee;
	padding: 20px;
}

.events-single .details h2 {
	margin-top: 0;
	line-height: 2.647rem;
	margin-bottom: 20px;
}

.events-single .details .date,
.events-single .location,
.events-single .street-address {
	margin-bottom: 0;
}

@media (max-width: 768px) {

	.events-single .content {
		grid-template-columns: 1fr

	}

}