.events-content {
	padding: 60px 0;
}

.events-content a {
	color: #111;
}


.events-content a:hover {
	text-decoration: none;
	color: #111;
	opacity: 0.9;
}

.events-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 42px;
	margin: 0 0 0 0;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	letter-spacing: 0.5px;
}

.events-subtitle {
	font-size: 20px;
	font-weight: 300;
	line-height: 42px;
	margin: 0 0 40px 0;
	text-transform: uppercase;	
	text-align: center;	
	color: #fff;
	letter-spacing: 1px;	
}



.events-content {
	background-size: cover;
	background-position: top center;
}

.eventCard {
	width: 33%;
	padding: 0 15px;
	box-sizing: border-box;
	margin-bottom: 30px;
}

@media (max-width: 992px) {
	.eventCard {
		width: 50%;
	}	
}

@media (max-width: 572px) {
	.eventCard {
		width: 100%;
		padding: 0;
	}	
}

.eventCard-inner {
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.events-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.eventCard-photo {
	height: 190px;
	position: relative;
}

.eventCard-photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eventCard-date {
	position: absolute;
	right: 0;
	top: 12px;
	background: red;
	color: #fff;
	padding: 8px 12px;
}

.eventCard-content {
	padding: 15px 20px;
	box-sizing: border-box;	
	flex-grow: 1;
}

.eventCard-type {
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 0 0 0;
}

.eventCard-title {
	font-size: 24px;
	line-height: 28px;
	text-transform: uppercase;
	font-weight: 300;
	margin: 6px 0 6px 0;
}

.eventCard-authors {
	padding: 15px 20px;
	position: relative;
}

.eventCard-author-img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	display: inline-block;
	margin-right: 8px;
}
.eventCard-author-name {
	display: none;
	bottom: 60px;
}

.eventCard-author-name.num__1 {
	left: 20px;
}

.eventCard-author-name.num__2 {
	left: 72px;
}

.eventCard-author-name.num__3 {
	left: 114px;
}

.eventCard-author-name.num__4 {
	left: 166px;
}

.eventCard-author-img:hover+.eventCard-author-name {
	display: block;
	position: absolute;
	font-size: 12px;
	background: #fff;
	border: 1px solid #e6e6e6;
	transform: translate(calc(-50% + 20px),0);
}