.ndlh-events-section + .ndlh-events-section {
	margin-top: 3rem;
}

.ndlh-events-section__title {
	margin: 0 0 1.25rem;
}

.ndlh-events {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

.ndlh-event-card {
	align-items: flex-start;
	background: #111;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	min-height: 15rem;
	padding: 2rem;
	position: relative;
}

.ndlh-event-card::before {
	border-right: 3.25rem solid transparent;
	border-top: 3.25rem solid #ff6634;
	content: "";
	left: 0;
	position: absolute;
	top: 0;
}

.ndlh-event-card__title {
	font-size: 1.5rem;
	line-height: 1.2;
	margin: 1rem 0 0.75rem;
}

.ndlh-event-card__title a,
.ndlh-event-card__title a:hover,
.ndlh-event-card__title a:focus {
	color: #fff;
}

.ndlh-event-card__date {
	color: #ffd28e;
	margin: 0 0 1.5rem;
}

.ndlh-event-card__button {
	background: #ff6634;
	color: #fff !important;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin-top: auto;
	padding: 0.75rem 1.5rem;
	text-decoration: none;
	text-transform: uppercase;
}

.ndlh-event-card__button:hover,
.ndlh-event-card__button:focus {
	background: #e95426;
	color: #fff;
}

.ndlh-events--list {
	display: block;
}

.ndlh-event-list-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	padding: 0.7rem 0;
	text-decoration: none;
}

.ndlh-event-list-item:first-child {
	padding-top: 0;
}

.ndlh-event-list-item__title {
	font-weight: 700;
}

.ndlh-event-list-item__date {
	color: #ffd28e;
	flex: 0 0 auto;
}

.ndlh-event-list-item:hover .ndlh-event-list-item__title,
.ndlh-event-list-item:focus .ndlh-event-list-item__title {
	text-decoration: underline;
}

.ndlh-single-event__date {
	color: #ff6634;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.ndlh-events-pagination {
	margin-top: 1.5rem;
}

.ndlh-events-pagination ul.page-numbers {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ndlh-events-pagination .page-numbers li {
	margin: 0;
}

.ndlh-events-pagination a.page-numbers,
.ndlh-events-pagination span.page-numbers {
	background: #506b7d;
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	min-width: 2.5rem;
	padding: 0.8rem 1rem;
	text-align: center;
	text-decoration: none;
}

.ndlh-events-pagination a.next,
.ndlh-events-pagination span.current {
	background: #3f7653;
}

.ndlh-events-pagination a.page-numbers:hover,
.ndlh-events-pagination a.page-numbers:focus {
	filter: brightness(0.9);
	color: #fff;
}

.ndlh-events-pagination .dots {
	background: transparent;
	color: #506b7d;
	min-width: auto;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}

@media (min-width: 48rem) {
	.ndlh-events--columns-2,
	.ndlh-events--columns-3,
	.ndlh-events--columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 64rem) {
	.ndlh-events--columns-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ndlh-events--columns-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 35rem) {
	.ndlh-event-list-item {
		align-items: flex-start;
		flex-direction: column;
	}
}
