.cs-schedule-wrapper {
	width: 100%;
	display: block;
	font-family: inherit;
}

.cs-schedule-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.cs-item {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 1.5rem;
	transition: box-shadow 0.3s ease;
}

.cs-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cs-datetime-col, .cs-content-col, .cs-location-col {
	margin-bottom: 1rem;
}

.cs-date {
	font-weight: 700;
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 0.25rem;
}

.cs-time {
	font-size: 0.9rem;
	color: #0073e6;
	font-weight: 500;
}

.cs-title {
	margin: 0 0 0.5rem 0;
	font-size: 1.25rem;
	color: #222;
}

.cs-info {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
}

.cs-location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: #555;
	font-weight: 500;
}

.cs-location svg {
	color: #999;
}

@media (min-width: 768px) {
	.cs-item {
		flex-direction: row;
		align-items: flex-start;
		padding: 2rem;
	}
	
	.cs-datetime-col {
		flex: 0 0 150px;
		margin-bottom: 0;
		padding-right: 1.5rem;
		border-right: 1px solid #eee;
	}
	
	.cs-content-col {
		flex: 1;
		padding: 0 1.5rem;
		margin-bottom: 0;
	}
	
	.cs-location-col {
		flex: 0 0 180px;
		margin-bottom: 0;
		text-align: right;
		display: flex;
		justify-content: flex-end;
	}
}