.evx-event-agenda {
	margin: 0 0 32px;
}

.evx-event-agenda__days {
	display: grid;
	gap: 30px;
}

.evx-event-agenda__day-title {
	margin: 0 0 14px;
	font-size: 18px;
}

.evx-event-agenda__sessions {
	display: grid;
	gap: 14px;
}

.evx-event-agenda-session {
	display: grid;
	grid-template-columns: minmax(120px, 155px) minmax(0, 1fr);
	overflow: visible;
}

.evx-event-agenda-session__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
	background: var(--evx-surface-soft);
	color: var(--evx-text-muted);
}

.evx-event-agenda-session__time {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
}

.evx-event-agenda-session__location {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 12px;
	line-height: 1.45;
}

.evx-event-agenda-session__location .evx-icon {
	flex: 0 0 auto;
	margin-top: 1px;
	color: var(--evx-primary);
}

.evx-event-agenda-session__body {
	min-width: 0;
	padding: 18px 20px;
}

.evx-event-agenda-session__heading {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px 12px;
}

.evx-event-agenda-session__heading h4 {
	margin: 0;
	font-size: 18px;
}

.evx-event-agenda-session__type {
	color: var(--evx-primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.evx-event-agenda-session__participants {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
}

.evx-event-agenda-participant {
	position: relative;
	display: inline-flex;
	border-radius: 50%;
	text-decoration: none;
	outline: none;
}

.evx-event-agenda-participant__avatar {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	overflow: hidden;
	border: 2px solid var(--evx-surface);
	border-radius: 50%;
	background: var(--evx-surface-soft);
	color: var(--evx-primary);
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 0 0 1px color-mix(in srgb, currentColor 12%, transparent);
	transition: transform .16s ease, box-shadow .16s ease;
}

.evx-event-agenda-participant__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.evx-event-agenda-participant:hover .evx-event-agenda-participant__avatar,
.evx-event-agenda-participant:focus-visible .evx-event-agenda-participant__avatar {
	transform: translateY(-2px);
	box-shadow: 0 0 0 2px var(--evx-primary);
}

.evx-event-agenda-participant__tooltip {
	position: absolute;
	z-index: 20;
	left: 50%;
	bottom: calc(100% + 9px);
	display: grid;
	gap: 2px;
	min-width: max-content;
	max-width: 220px;
	padding: 7px 9px;
	border-radius: 6px;
	background: var(--evx-text-primary);
	color: var(--evx-text-inverse);
	font-size: 12px;
	line-height: 1.3;
	text-align: left;
	white-space: nowrap;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 4px);
	transition: opacity .14s ease, transform .14s ease;
}

.evx-event-agenda-participant__tooltip small {
	opacity: .8;
	font-size: 11px;
	font-weight: 400;
}

.evx-event-agenda-participant:hover .evx-event-agenda-participant__tooltip,
.evx-event-agenda-participant:focus-visible .evx-event-agenda-participant__tooltip {
	opacity: 1;
	transform: translate(-50%, 0);
}

.evx-event-agenda-session__description {
	margin-top: 12px;
	color: var(--evx-text-muted);
	font-size: 14px;
	line-height: 1.6;
}

.evx-event-agenda-session__description > :first-child {
	margin-top: 0;
}

.evx-event-agenda-session__description > :last-child {
	margin-bottom: 0;
}

@media (max-width: 640px) {
	.evx-event-agenda-session {
		grid-template-columns: 1fr;
	}

	.evx-event-agenda-session__meta {
		padding: 12px 16px;
	}

	.evx-event-agenda-session__body {
		padding: 16px;
	}

	.evx-event-agenda-participant__tooltip {
		display: none;
	}
}
