/* ---------- Schedule section (plugin: SchedulePlugin) ---------- */

.schedule {
	padding: var(--s12) 0;
	position: relative;
	background: var(--color-bg);
	overflow: hidden;
}

.schedule > .container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 var(--s3);
}

.schedule .deco {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.schedule .deco--mint {
	width: 220px;
	height: 220px;
	background: var(--mint-soft);
	top: 60px;
	right: -80px;
}

/* ---------- Two-column grid ---------- */

.schedule-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s8);
	align-items: center;
}

/* ---------- Head (left column) ---------- */

.schedule-head .kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	font-size: .82rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: var(--s2);
}

.schedule-head .kicker .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--yellow);
	display: inline-block;
}

.schedule-head h2 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.6vw, 2.6rem);
	line-height: 1.15;
	margin: 0 0 var(--s2);
	color: var(--color-text);
}

.schedule-head > p {
	color: var(--color-text-muted);
	font-size: 1.06rem;
	margin: 0;
}

/* ---------- Timeline ---------- */

.schedule .timeline {
	list-style: none;
	margin: var(--s4) 0 0;
	padding: 0;
	position: relative;
}

.schedule .timeline::before {
	content: "";
	position: absolute;
	left: 27px;
	top: 10px;
	bottom: 10px;
	width: 3px;
	border-radius: 3px;
	background: var(--gray);
}

.schedule .timeline li {
	position: relative;
	padding: 0 0 var(--s3) 76px;
}

.schedule .timeline li:last-child {
	padding-bottom: 0;
}

.schedule .timeline .t-dot {
	position: absolute;
	left: 13px;
	top: -4px;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: var(--shadow-sm);
}

.schedule .timeline .t-dot--pink { background: var(--pink); }
.schedule .timeline .t-dot--yellow { background: var(--yellow); }
.schedule .timeline .t-dot--mint { background: var(--mint); }
.schedule .timeline .t-dot--orange { background: var(--orange); }
.schedule .timeline .t-dot--slate { background: var(--slate); }

.schedule .timeline b {
	font-family: var(--font-display);
	color: var(--color-text);
}

.schedule .timeline span {
	display: block;
	color: var(--color-text-muted);
	font-size: .95rem;
}

/* ---------- Media (right column) ---------- */

.schedule-media .photo {
	overflow: hidden;
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-lg);
	aspect-ratio: 16 / 11;
}

.schedule-media .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.schedule-media-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s2);
	margin-top: var(--s2);
}

.schedule-media-row .photo {
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
}

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
	.schedule-grid {
		grid-template-columns: 1fr;
		gap: var(--s6);
	}
}
