.program-event-list {
	margin: 0 auto;
	width: fit-content;
}

.program-event-item {
	color: #000;
	display: grid;
	grid-template-columns: 350px 1fr;
	align-items: flex-start;
}

.program-event-item:last-child .program-item-info::before {
	background: #fff;
}

.program-event-item:last-child .program-item-info2 {
	padding-bottom: 0
}

.program-event-name {
	font-size: 25px;
	font-weight: 600;
}

.program-event-address {
	font-size: 17px;
	font-weight: 600;
	margin-top: 16px;
}
.program-event-address::before {
	content: '';
	width: 12px;
	height: 14px;
	background: url('img/location.svg') no-repeat;
	display: inline-block;
	background-size: contain !important;
	vertical-align: -1px;
	margin-right: 13px;
}

.program-event-desc {
	font-size: 17px;
	font-weight: 600;
	line-height: 160%;
	margin-top: 13px;
}

.program-event-link {
	font-size: 17px;
	font-weight: 600;
	color: #1E51BA;
	margin-top: 16px;
	display: table;
}
.program-event-link::before {
	content: '';
	width: 20px;
	height: 14px;
	background: url('img/play.svg') no-repeat;
	display: inline-block;
	background-size: contain !important;
	vertical-align: -1px;
	margin-right: 13px;
}

li::marker {
	display: none;
}

.program-item-info {
	display: grid;
	grid-template-columns: 1px 1fr;
	align-items: flex-start;
	position: relative;
}

.program-item-info::before {
	content: '';
	width: 1px;
	height: 100%;
	background: #CECECE;
	display: table;
}

.program-item-info::after {
	content: '';
	width: 21px;
	height: 21px;
	background: #1E51BA;
	border-radius: 100%;
	display: table;
	position: absolute;
	top: 0;
	left: -10px;
}

.program-item-info2 {
	padding-left: 43px;
	padding-bottom: 60px;
	margin-top: -7px;
}

.program-event-time {
	color: #1E51BA;
	font-size: 24px;
	font-weight: 600;
	text-align: right;
	padding-right: 43px;
	margin-top: -5px;
}

.program-event-time.desktop {
	display: block;
}
.program-event-time.mobile {
	display: none;
}

@media (max-width: 768px) {
	.program-event-item {
		grid-template-columns: 1fr;
	}

	.program-event-time {
		text-align: left;
		margin-left: -2px;
		margin-bottom: 9px;
		margin-top: -13px;
	}

	.program-item-info {
		padding-top: 14px;
	}

	.program-event-name {
		font-size: 20px;
	}

	.program-event-address {
		font-size: 16px;
	}

	.program-item-info2 {
		padding-left: 30px;
	}

	.program-event-time.desktop {
		display: none;
	}
	.program-event-time.mobile {
		display: block;
	}
}
