/* Wrapper */
.sel-events-listing {
	display: grid;
	gap: 1.5rem;
}

/* Each event row/card */
.sel-event-item {
	padding: 0 0 1.5rem;
	border-bottom: 1px solid #d9d9d9;
}

/* Remove divider after the last item */
.sel-event-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

/* Title */
.sel-event-title {
	margin: 0 0 0.35rem;
	color: #14172b;
	font-family: "Source Serif Pro", serif;
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 600;
}

/* Date */
.sel-event-date {
	margin: 0.5rem 0 0;
	color: #14172b;
	font-size: 0.95rem;
	line-height: 1.4;
}

/* Summary text */
.sel-event-summary {
	margin: 0;
}

.sel-event-summary p {
	margin: 0 0 0.75rem;
}

.sel-event-summary p:last-child {
	margin-bottom: 0;
}

.sel-event-summary a {
	text-decoration: underline;
	color: #88a9c4 !important;
}

.sel-events-listing .sel-event-item .sel-event-summary a:hover {
	color: #14172b !important;
}