/* Schedule Listing Styles */
.schedule-listing {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.schedule-item {
	display: flex;
	gap: 20px;
	padding: 20px;
	background: none;
	border-radius: 8px;
}
.schedule-image {
	flex: 0 0 300px;
	overflow: hidden;
	border-radius: 4px;
}
.schedule-image a {
	display: block;
}
.schedule-image a:before,
.schedule-image a:after,
.schedule-image .image-overlay {
	display: none !important;
}
.schedule-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	transition: transform 0.3s ease;
}
.schedule-image:hover img {
	transform: scale(1.05);
}
.schedule-content {
	flex: 1;
}
.schedule-title {
	margin: 0 0 0 0;
}
.schedule-title a {
	text-decoration: none;
	color: inherit;
}
.schedule-title a:hover {
	opacity: 0.8;
}
.schedule-subtitle {
	font-style: normal;
	margin: 0 0 10px 0;
}
.schedule-date {
	margin: 0 0 2px 0;
}
.schedule-location {
	margin: 0;
}
.schedule-excerpt {
	margin: 15px 0;
}
.schedule-buttons {
	margin-top: 15px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.schedule-read-more,
.schedule-pdf-download {
	display: inline-block;
	padding: 8px 16px;
	text-decoration: none;
	border-radius: 4px;
}
.schedule-read-more {
	background: #5f7d1e;
	color: #fff !important;
}
.schedule-read-more:hover {
	background: #4e6c0d;
	color: #fff !important;
}
.schedule-pdf-download {
	background: #5f7d1e;
	color: #fff !important;
}
.schedule-pdf-download:hover {
	background: #4e6c0d;
	color: #fff !important;
}

@media (max-width: 600px) {
	.schedule-item {
		flex-direction: column;
	}
	.schedule-image {
		flex: none;
	}
}

/* Single Schedule - remove overlay */
.schedule-single .schedule-featured-image a:before,
.schedule-single .schedule-featured-image a:after,
.schedule-single .schedule-featured-image .image-overlay {
	display: none !important;
}

/* Schedule Archive Toggle */
.schedule-toggle {
	margin-bottom: 30px;
}
.schedule-toggle a {
	display: inline-block;
	padding: 8px 16px;
	background: #5f7d1e;
	color: #fff !important;
	text-decoration: none;
	border-radius: 4px;
}
.schedule-toggle a:hover {
	background: #4e6c0d;
	color: #fff !important;
}
