.sl-event-list__ul {
	list-style: none !important;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.sl-event-list__ul li {
	list-style: none !important;
}

.sl-event-list__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
	text-decoration: none !important;
}

.sl-event-list__title {
	font-weight: 800;
	color: #111;
}

.sl-event-list__date {
	font-weight: 800;
	color: #005166;
	white-space: nowrap;
}

.sl-event-list__more {
	display: flex;
	justify-content: flex-start;
}

.sl-event-list__more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	padding: 12px 22px;
	border-radius: 999px;
	background: linear-gradient(180deg, #00647e 0%, #005166 100%);
	color: #fff !important;
	font-weight: 800;
	text-decoration: none !important;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
	cursor: pointer;
}

.sl-event-list__more-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.sl-event-list__status {
	display: none;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	font-weight: 700;
	color: #005166;
}

.sl-event-list__status.is-active {
	display: inline-flex;
}

.sl-event-list__spinner {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid rgba(0, 81, 102, 0.22);
	border-top-color: #005166;
	animation: slSpin 0.8s linear infinite;
}

@keyframes slSpin {
	to {
		transform: rotate(360deg);
	}
}
