/* Jeduthun Agenda — list matching site black & gold style */

.jeduthun-agenda {
	--jeduthun-gold: #c5a059;
	--jeduthun-gold-dark: #a8843f;
	--jeduthun-ink: #0a0a0a;
	--jeduthun-muted: #5a5a5a;
	--jeduthun-serif: "Cormorant Garamond", "Times New Roman", serif;
	--jeduthun-sans: "Montserrat", "Helvetica Neue", sans-serif;
	--jeduthun-ease: cubic-bezier(0.22, 1, 0.36, 1);

	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
}

.jeduthun-agenda *,
.jeduthun-agenda *::before,
.jeduthun-agenda *::after {
	box-sizing: border-box;
}

.jeduthun-agenda--empty {
	margin: 2rem 0 0;
	font-family: var(--font-sans, var(--jeduthun-sans));
	font-size: 1rem;
	color: var(--color-text-muted, var(--jeduthun-muted));
}

.jeduthun-agenda__item {
	display: grid;
	grid-template-columns: 5.5rem 1fr;
	gap: 1.5rem;
	align-items: start;
	margin: 0;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(197, 160, 89, 0.2);
	animation: jeduthun-agenda-fade-up 0.6s var(--jeduthun-ease) both;
}

.jeduthun-agenda__item:last-child {
	border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.jeduthun-agenda__item:nth-child(1) { animation-delay: 0.05s; }
.jeduthun-agenda__item:nth-child(2) { animation-delay: 0.12s; }
.jeduthun-agenda__item:nth-child(3) { animation-delay: 0.19s; }
.jeduthun-agenda__item:nth-child(4) { animation-delay: 0.26s; }
.jeduthun-agenda__item:nth-child(5) { animation-delay: 0.33s; }

.jeduthun-agenda__item--past {
	opacity: 0.55;
}

.jeduthun-agenda__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 0.5rem;
	background: var(--color-black, var(--jeduthun-ink));
	color: #fff;
	text-align: center;
	line-height: 1.1;
	border-top: 2px solid var(--color-gold, var(--jeduthun-gold));
}

.jeduthun-agenda__day {
	font-family: var(--font-serif, var(--jeduthun-serif));
	font-size: 1.85rem;
	font-weight: 500;
	color: var(--color-gold, var(--jeduthun-gold));
}

.jeduthun-agenda__month {
	margin-top: 0.2rem;
	font-family: var(--font-sans, var(--jeduthun-sans));
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.jeduthun-agenda__year {
	margin-top: 0.15rem;
	font-family: var(--font-sans, var(--jeduthun-sans));
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.45);
}

.jeduthun-agenda__body {
	min-width: 0;
	padding-top: 0.15rem;
}

.jeduthun-agenda__title {
	margin: 0 0 0.4rem;
	font-family: var(--font-serif, var(--jeduthun-serif));
	font-size: clamp(1.25rem, 2.5vw, 1.55rem);
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black, var(--jeduthun-ink));
}

.jeduthun-agenda__meta {
	margin: 0;
	font-family: var(--font-sans, var(--jeduthun-sans));
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.55;
	color: var(--color-gold-dark, var(--jeduthun-gold-dark));
}

.jeduthun-agenda__sep {
	margin: 0 0.35rem;
	opacity: 0.7;
}

.jeduthun-agenda__desc {
	margin: 0.65rem 0 0;
	font-family: var(--font-sans, var(--jeduthun-sans));
	font-size: 0.98rem;
	line-height: 1.7;
	color: var(--color-text-muted, var(--jeduthun-muted));
}

@keyframes jeduthun-agenda-fade-up {
	from {
		opacity: 0;
		transform: translateY(0.6rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.jeduthun-agenda__item {
		animation: none;
	}
}

@media (max-width: 520px) {
	.jeduthun-agenda__item {
		grid-template-columns: 4.5rem 1fr;
		gap: 1rem;
		padding: 1.25rem 0;
	}

	.jeduthun-agenda__day {
		font-size: 1.5rem;
	}

	.jeduthun-agenda__meta {
		font-size: 0.7rem;
		letter-spacing: 0.04em;
	}
}
