.event-listing-wrap {
	padding: 20px 0;
	border-bottom: 3px solid var(--color-blue);
	color: var(--color-dark-blue);
	font-weight: 500;
	font-size: 20px;
	display: flex;
}

.event-listing-wrap:last-child {
	border-bottom: none;
}

.event-listing-wrap .time-wrap,
.event-listing-wrap .event-listing-content,
.event-listing-wrap .event-image {
	display: inline-block;
}

.event-listing-wrap .time-wrap {
	width: 13%;
	margin-right: 5%;
	vertical-align: top;
}

.event-listing-wrap .event-listing-content {
	width: 63%;
	margin-right: 5%;
}

.event-listing-wrap .special-event-ticket-link a {
	text-transform: uppercase;
	color: #fff;
	background-color: var(--color-blue);
	padding: 5px 10px;
	text-decoration: none;
	display: block;
	width: 160px;
    text-align: center;
}

.event-listing-wrap .event-title {
	font-weight: 700;
	text-transform: uppercase;
}

.event-listing-wrap .event-sponsors {
	font-style: italic;
}

.event-listing-wrap .event-image {
	vertical-align: super;
}

.event-listing-wrap .event-image img {
	max-width: 100px;
}

.event-listing-wrap .event-title-wrap {
	margin-bottom: 20px;
}

.event-listing-wrap .event-time {
	margin-bottom: 20px;
}

.event-snippet p {
	margin-bottom: 0;
}

.event-listing-wrap .special-event-ticket-link.general a {
	background-color: var(--color-orange);
}

@media screen and (max-width: 1125px) {
	
	.event-listing-wrap {
		display: block;
	}
	

	.event-listing-wrap .time-wrap, .event-listing-wrap .event-listing-content, .event-listing-wrap .event-image {
		width: 100%;
		display: block;
		margin-bottom: 15px;
	}

}