.events-block {
	padding: 20px;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	box-shadow: inset 0 0 0 2000px rgb(44 44 44 / 60%);
    position: relative;
	margin-top: 1px;
	margin-bottom: 1px;
}
.events-block-header {
    padding-left: 10px;
    color: #FFF !important;
    display: flex;
	margin-top: 0.75em !important;
	margin-bottom: 1em !important;
}
.events-block-filler {
    background-color: white;
    display: inline-flex;
    height: .75em;
    margin-top: 4px;
    margin-left: 10px;
    margin-right: 15px;
    flex-grow: 1;
}
.events-container {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 20px;
}
.event-container {
    display: flex;
    flex-direction: column;
    background-color: #FFF;
	color: #222;
    border-radius: 1em;
    margin: 5px;
    padding: 20px;
}
.event-info {
    position: relative;
	padding-top: 1em;
	flex-grow: 1;
	align-content: end;
}
.event-title {
	font-size: 1.3em;
    display: inline-block;
	position: relative;
	bottom: 0;
	margin: 0!important;
	max-width: 65%;
    text-wrap: balance;
}
.event-button {
    display: inline-block;
    position: absolute;
	right: 0;
	bottom: 0;
}
@media screen and (max-width: 850px)  {
	.events-container {
		grid-template-columns: repeat(1,1fr);
	}
	.event-container {
		padding: 15px;
	}
	.event-desc {
		display: none;
	}
}
.event-dates {
    width: fit-content;
    background-color: #2b5f40;
    padding: 5px 8px;
    line-height: normal;
    color: #FFF;
	font-weight: bold;
}
.events-container > h4 {
	color: black;
}
.event-desc {
    padding-bottom: 1em;
	flex-grow: 1;
}
.event-button > a {
    color: #500000;
    font-weight: 800 !important;
	font-size: 1.1em;
}
span.event-none {
    color: #FFF;
    text-align: center;
    display: block;
    margin-left: auto;
    font-weight: bold;
}