/* ==========================================================================
   events.css — /events and /event/:slug
   These pages were out of the redesign scope; this file ports their old
   styles onto the new token system so they stay coherent, nothing more.
   ========================================================================== */

.events-container {
	margin-block: var(--s-4) var(--s-6);
	padding: var(--s-5);
	background: var(--surface);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
}

.event {
	display: flex;
	align-items: flex-start;
	gap: var(--s-4);
	padding-block: var(--s-4);
	border-bottom: 1px solid var(--line);
}

.event:first-child {
	padding-top: 0;
}

.event:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.event-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 4.25rem;
	padding: var(--s-3) var(--s-2);
	border-radius: var(--r-md);
	background: var(--ink);
	color: var(--surface);
	line-height: 1.25;
}

.event-date .day {
	font-size: var(--t-lg);
	font-weight: 700;
}

.event-date .month {
	font-size: var(--t-xs);
	font-weight: 600;
	letter-spacing: var(--track-wide);
	text-transform: uppercase;
	opacity: .85;
}

.event .details {
	flex: 1;
	min-width: 0;
}

.event-title {
	font-size: var(--t-lg);
	margin-bottom: var(--s-2);
}

.event-description {
	color: var(--ink-muted);
	margin-block: var(--s-4);
}

#map iframe {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--r-md);
}
