.current-events {
	position: relative;
	padding: var(--k2-space-large) 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.current-events h2 {
	text-align: center;
}

.current-events a {
	width: 100%;
}

.current-events__post {
	text-align: center;
	border-bottom: 1px solid var(--primary-color);
	padding: var(--k2-space-small) 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.current-events__post h3 {
	font-size: 26px;
	color: var(--primary-color);
	font-family: var(--k2-serif-font);
	margin-bottom: 1em;
	display: inline-block;
}

.current-events__date {
	color: #000;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 0.5em;
	display: inline-block;
}

.current-events .current-events__bottom-link {
	margin-top: var(--k2-space-small);
	width: auto;
}

@media (max-width: 768px) {
	.current-events {
		padding: calc(var(--k2-space-large) * 0.75) 0;
	}

	.current-events__post {
		padding: calc(var(--k2-space-small) * 0.75) 0;
	}

	.current-events__post h3 {
		font-size: 22px;
	}

	.current-events__date {
		font-size: 18px;
	}

	.current-events .current-events__bottom-link {
		margin-top: calc(var(--k2-space-small) * 0.75);
	}
}

@media (max-width: 500px) {
	.current-events {
		padding: calc(var(--k2-space-large) * 0.5) 0;
	}

	.current-events__post {
		padding: calc(var(--k2-space-small) * 0.5) 0;
	}

	.current-events__post h3 {
		font-size: 20px;
	}

	.current-events__date {
		font-size: 16px;
	}

	.current-events .current-events__bottom-link {
		margin-top: calc(var(--k2-space-small) * 0.5);
	}
}