/**
    Styling for the events archive page
*/

.event {
	display: flex;
	margin-bottom: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	backface-visibility: hidden;
	text-transform: none;
	border: 1px solid #CCC;
	padding: 1em;
}
.event:hover {
    text-decoration: none;
}
.event .thumbnail {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
}
.event .title {
    flex: 2;
    display: flex;
    align-items: center;
}
.event .title h4 {
    margin-bottom: 0;
	line-height: 1.2;
}
.event .dates {
    flex: 2;
    display: flex;
    margin: 0 20px;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.event .dates .separator {
    margin: 0 10px;
}
.event .dates .date,
.event .dates .location {
    font-size: 18px;
    color: #222;
    background-color: #fff;
    flex: 1;
}
.event .dates .date .start {
	text-align: right;
}
.event .dates .location {
	text-align: left;
}
.event .find-out-more {
    display: flex;
    align-items: center;
}
.event .find-out-more span {
    background-color: #27ae60;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
	.event .find-out-more span:hover {
		background-color: #209b53;
		border-color: #209b53;
		color: #fff;
	}