.agenda-grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
}

.agenda-card {
	border: 1px solid #e2e8f0;
	padding: 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
	box-sizing: border-box;
}

.agenda-card-meta,
.agenda-block-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85em;
	font-weight: 600;
	color: #64748b;
	margin-bottom: 16px;
	border-bottom: 1px solid #f1f5f9;
	padding-bottom: 8px;
}

.agenda-block-meta {
	margin-bottom: 12px;
}

.agenda-time {
	color: #2563eb;
}

.agenda-headline {
	font-size: 1.25em;
	font-weight: 700;
	margin: 0 0 16px 0;
	color: #1e293b;
	line-height: 1.3;
}

.agenda-headline.secondary {
	font-size: 1.1em;
}

.agenda-description {
	font-size: 0.9em;
	color: #475569;
	line-height: 1.5;
	margin: 0 0 16px 0;
}

.agenda-description.secondary {
	font-size: 0.85em;
	margin-bottom: 12px;
}

.agenda-speakers-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.agenda-speaker {
	display: flex;
	align-items: center;
	gap: 12px;
}

.agenda-speaker-avatar img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.agenda-speaker-info {
	display: flex;
	flex-direction: column;
}

.agenda-speaker-name {
	font-weight: 600;
	color: #334155;
	font-size: 0.95em;
}

.agenda-speaker-title {
	font-size: 0.8em;
	color: #64748b;
}

/* Parallel Track Layout */
.agenda-parallel-container {
	display: flex;
	gap: 20px;
	width: 100%;
}

.agenda-parallel-block {
	flex: 1;
	background-color: #f8fafc;
	padding: 16px;
	border-radius: 6px;
	border-left: 3px solid #3b82f6;
	box-sizing: border-box;
}

.agenda-parallel-block.block-b {
	border-left: 3px solid #10b981;
}

@media (max-width: 768px) {
	.agenda-parallel-container {
		flex-direction: column;
		gap: 12px;
	}
}
