/* ==========================================================================
   Schedule Page
   ========================================================================== */

/* Schedule List */
.schedule-list {
	max-width: 900px;
	margin: 0 auto;
}

.schedule-list__item {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--color-border);
}

.schedule-list__item:first-child {
	padding-top: 0;
}

/* Date Block */
.schedule-list__date-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 80px;
	padding: 1rem;
	background-color: rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
}

.schedule-list__month {
	color: var(--color-accent-gold);
	font-size: var(--fs-small);
	font-weight: 700;
}

.schedule-list__day {
	color: var(--color-text-main);
	font-size: 2rem;
	font-weight: 700;
	font-family: var(--font-heading);
	line-height: 1.2;
}

.schedule-list__weekday {
	color: var(--color-text-sub);
	font-size: var(--fs-small);
}

/* Content */
.schedule-list__content {
	flex: 1;
}

.schedule-list__title {
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}

.schedule-list__title a {
	color: var(--color-text-main);
	text-decoration: none;
}

.schedule-list__title a:hover {
	color: var(--color-accent-gold);
}

.schedule-list__time {
	color: var(--color-accent-gold);
	font-size: var(--fs-small);
	font-weight: 500;
}

.schedule-list__desc {
	color: var(--color-text-sub);
	font-size: var(--fs-small);
	margin-top: 0.5rem;
}

/* Image */
.schedule-list__image {
	flex-shrink: 0;
	width: 120px;
}

.schedule-list__image img {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
}

/* Empty State */
.schedule-empty {
	text-align: center;
	color: var(--color-text-sub);
	padding: 4rem 0;
}

.schedule-empty p {
	margin-bottom: 0.5rem;
}

/* Past Events Grid */
.schedule-past__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.schedule-past__card {
	background-color: #faf7f3;
	border: 1px solid #ddd8cf;
	border-radius: 8px;
	overflow: hidden;
	opacity: 0.8;
}

.schedule-past__image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.schedule-past__content {
	padding: 1.25rem;
}

.schedule-past__date {
	color: var(--color-text-sub);
	font-size: var(--fs-small);
}

.schedule-past__title {
	font-size: 1rem;
	margin-top: 0.25rem;
}

.schedule-past__empty {
	text-align: center;
	color: var(--color-text-sub);
	padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
	.schedule-list__item {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.schedule-list__image {
		width: 100%;
	}

	.schedule-list__image img {
		height: 160px;
	}

	.schedule-past__grid {
		grid-template-columns: 1fr;
	}
}
