/**
 * TechBBQ Agenda Calendar — reusable schedule grid.
 *
 * Figma refs in class-techbbq-agenda-calendar.php (desktop node 6686:65605).
 *
 * Breakpoints (mobile-first): 0–767 (base), 768–1023, 1024+.
 */

.techbbq-agenda-calendar {
	--techbbq-agenda-calendar-accent: var(--techbbq-content-accent-2);
	--techbbq-agenda-calendar-accent-border: rgb(250 112 0 / 0.5);
	--techbbq-agenda-calendar-slot-height: 200px;
	--techbbq-agenda-calendar-time-width: 72px;
	--techbbq-agenda-calendar-header-height: 56px;

	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	color: var(--techbbq-content-primary);
}

/* Figma 7848:112218 — calendar spans the full content frame; controls stay inset in section-inner. */
.techbbq-agenda-section-wrap .techbbq-agenda-calendar {
	box-sizing: border-box;
	width: calc(100% + (2 * var(--techbbq-container-padding)));
	max-width: var(--techbbq-content-max);
	margin-inline: calc(-1 * var(--techbbq-container-padding));
}

.techbbq-agenda-calendar__layout {
	display: grid;
	grid-template-columns: var(--techbbq-agenda-calendar-time-width) minmax(0, 1fr);
	align-items: stretch;
	max-width: 100%;
}

.techbbq-agenda-calendar__time {
	background-color: var(--techbbq-bg-surface);
}

.techbbq-agenda-calendar__time-spacer {
	height: 0;
}

.techbbq-agenda-calendar__time-slots {
	display: grid;
	grid-auto-rows: var(--techbbq-agenda-calendar-slot-height);
	align-items: start;
	padding: 0 8px 0 0;
}

.techbbq-agenda-calendar__time-label {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	min-height: var(--techbbq-agenda-calendar-slot-height);
	padding-top: 2px;
	font-family: var(--techbbq-font-family-body);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--techbbq-content-primary);
}

.techbbq-agenda-calendar__schedule {
	min-width: 0;
	max-width: 100%;
}

.techbbq-agenda-calendar__header {
	display: none;
	grid-template-columns: repeat(var(--techbbq-agenda-calendar-day-count, 2), minmax(0, 1fr));
	height: var(--techbbq-agenda-calendar-header-height);
	border-bottom: 0.8px solid #3e3e3e;
}

.techbbq-agenda-calendar__day-header {
	display: flex;
	align-items: center;
	padding: 8px 20px;
	border-right: 0.8px solid var(--techbbq-border-tertiary);
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-text-paragraph-s-size);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.techbbq-agenda-calendar__day-header:last-child {
	border-right: 0;
}

.techbbq-agenda-calendar__mobile-day {
	padding: 0 0 12px;
}

.techbbq-agenda-calendar__day-select-wrap {
	position: relative;
}

.techbbq-agenda-calendar__day-select {
	appearance: none;
	width: 100%;
	min-height: 44px;
	padding: 10px 44px 10px 16px;
	border: 0.8px solid var(--techbbq-border-tertiary);
	border-radius: var(--techbbq-radius-pill);
	background-color: transparent;
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-text-paragraph-s-size);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--techbbq-content-primary);
	cursor: pointer;
}

.techbbq-agenda-calendar__day-select-wrap::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	width: 12px;
	height: 12px;
	background-color: currentcolor;
	transform: translateY(-50%);
	-webkit-mask: url("../../images/icon-chevron-down-12.svg") center / contain no-repeat;
	mask: url("../../images/icon-chevron-down-12.svg") center / contain no-repeat;
	pointer-events: none;
}

.techbbq-agenda-calendar__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

.techbbq-agenda-calendar__day-column {
	display: none;
	position: relative;
	min-width: 0;
}

.techbbq-agenda-calendar__day-column.is-active {
	display: block;
}

.techbbq-agenda-calendar__slot-rows {
	display: grid;
	grid-template-rows: repeat(var(--techbbq-agenda-calendar-slot-count, 1), var(--techbbq-agenda-calendar-slot-height));
}

.techbbq-agenda-calendar__slot-row {
	border-top: 0.8px solid var(--techbbq-border-tertiary);
}

.techbbq-agenda-calendar__slot-row:first-child {
	border-top: 0;
}

.techbbq-agenda-calendar__slot-cell {
	min-height: var(--techbbq-agenda-calendar-slot-height);
}

.techbbq-agenda-calendar__events {
	position: absolute;
	inset: 0;
	padding: 0 4px;
	pointer-events: none;
}

.techbbq-agenda-calendar__event {
	position: absolute;
	box-sizing: border-box;
	min-height: 0;
	padding: 2px;
	pointer-events: auto;
	cursor: pointer;
}

.techbbq-agenda-calendar__event.is-hidden,
.techbbq-agenda-calendar__event.is-day-hidden {
	display: none;
}

.techbbq-agenda-tabs.has-agenda-search-query .techbbq-agenda-calendar__event.is-search-muted {
	opacity: 0.28;
}

.techbbq-agenda-tabs.has-agenda-search-query .techbbq-agenda-calendar__event.is-search-muted .techbbq-agenda-calendar__card {
	filter: grayscale(1);
}

.techbbq-agenda-tabs.has-agenda-search-query .techbbq-agenda-calendar__event:not( .is-search-muted ):not( .is-hidden ):not( .is-day-hidden ) {
	z-index: 4;
}

.techbbq-agenda-calendar__stage-header,
.techbbq-agenda-calendar__stage-column {
	position: relative;
	min-width: 0;
}

.techbbq-agenda-calendar__stage-column {
	display: block;
	isolation: isolate;
}

.techbbq-agenda-calendar__stage-header.is-column-hidden,
.techbbq-agenda-calendar__stage-column.is-column-hidden {
	display: none;
}

.techbbq-agenda-calendar__stage-header {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: var(--techbbq-agenda-calendar-header-height);
	padding: 8px 20px;
	border-right: 0.8px solid var(--techbbq-border-tertiary);
	font-family: var(--techbbq-font-family-body);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.techbbq-agenda-calendar__stage-header {
		font-size: var(--techbbq-text-paragraph-s-size);
	}
}

.techbbq-agenda-tabs--event-rooms .techbbq-agenda-calendar__stage-header {
	font-size: calc(12px * 0.8);
}

@media (min-width: 768px) {
	.techbbq-agenda-tabs--event-rooms .techbbq-agenda-calendar__stage-header {
		font-size: calc(var(--techbbq-text-paragraph-s-size) * 0.8);
	}
}

.techbbq-agenda-calendar__stage-header:last-child {
	border-right: 0;
}

.techbbq-agenda-calendar__stage-dot {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-radius: 99px;
	background-color: var(--techbbq-agenda-calendar-accent);
}

.techbbq-agenda-calendar__event.is_featured {
	--techbbq-agenda-calendar-accent: var(--techbbq-content-accent-featured);
	z-index: 20;
}

.techbbq-agenda-calendar__event.is_featured .techbbq-agenda-calendar__card {
	--techbbq-agenda-calendar-accent: var(--techbbq-content-accent-featured);
}

.techbbq-agenda-calendar__event.is-all-day {
	z-index: 0;
}

.techbbq-agenda-calendar__event.is-all-day.is-expandable:hover,
.techbbq-agenda-calendar__event.is-all-day.is-expandable:focus-within {
	z-index: 1;
}

.techbbq-agenda-calendar__event.is-all-day .techbbq-agenda-calendar__card {
	border: 1px dashed var(--techbbq-agenda-calendar-accent-border);
	background-color: rgb(25 25 25 / 25%);
}

.techbbq-agenda-calendar__event.is-all-day .techbbq-agenda-calendar__card::before {
	opacity: 0.05;
}

.techbbq-agenda-calendar__event.is-all-day .techbbq-agenda-calendar__card-all-day-label {
	flex-shrink: 0;
	margin: 0;
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-agenda-calendar-card-time-size);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--techbbq-content-primary);
}

.techbbq-agenda-calendar__event.is-programme-all-day {
	cursor: default;
	pointer-events: none;
}

.techbbq-agenda-calendar__event.is-programme-all-day .techbbq-agenda-calendar__card {
	justify-content: flex-start;
}

.techbbq-agenda-calendar__event.is-programme-all-day .techbbq-agenda-calendar__card-body {
	flex: 0 0 auto;
}

.techbbq-agenda-calendar__event.is-programme-all-day .techbbq-agenda-calendar__card-title {
	display: block;
	overflow: visible;
	max-height: none;
	-webkit-line-clamp: unset;
	white-space: normal;
}

.techbbq-agenda-calendar__event.is-expandable {
	cursor: pointer;
}

.techbbq-agenda-calendar__event.is-expandable:hover,
.techbbq-agenda-calendar__event.is-expandable:focus-within {
	z-index: 100 !important;
}

.techbbq-agenda-calendar__event.is-lane-narrow:hover,
.techbbq-agenda-calendar__event.is-lane-narrow:focus-within {
	left: 0 !important;
	width: 100% !important;
}

.techbbq-agenda-calendar__event.is-overflowing:hover,
.techbbq-agenda-calendar__event.is-overflowing:focus-within,
.techbbq-agenda-calendar__event.is-card-layout-compact:hover,
.techbbq-agenda-calendar__event.is-card-layout-compact:focus-within,
.techbbq-agenda-calendar__event.is-card-layout-tiny:hover,
.techbbq-agenda-calendar__event.is-card-layout-tiny:focus-within {
	height: auto !important;
}

.techbbq-agenda-calendar__event.is-lane-narrow:not( .is-overflowing ):not( .is-card-layout-compact ):not( .is-card-layout-tiny ):hover .techbbq-agenda-calendar__card,
.techbbq-agenda-calendar__event.is-lane-narrow:not( .is-overflowing ):not( .is-card-layout-compact ):not( .is-card-layout-tiny ):focus-within .techbbq-agenda-calendar__card {
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	box-shadow: 0 8px 24px rgb(0 0 0 / 35%);
}

.techbbq-agenda-calendar__event.is-overflowing:hover .techbbq-agenda-calendar__card,
.techbbq-agenda-calendar__event.is-overflowing:focus-within .techbbq-agenda-calendar__card,
.techbbq-agenda-calendar__event.is-card-layout-compact:hover .techbbq-agenda-calendar__card,
.techbbq-agenda-calendar__event.is-card-layout-compact:focus-within .techbbq-agenda-calendar__card,
.techbbq-agenda-calendar__event.is-card-layout-tiny:hover .techbbq-agenda-calendar__card,
.techbbq-agenda-calendar__event.is-card-layout-tiny:focus-within .techbbq-agenda-calendar__card {
	width: 100%;
	height: auto;
	max-height: none;
	overflow: hidden;
	justify-content: flex-start;
	box-shadow: 0 8px 24px rgb(0 0 0 / 35%);
}

.techbbq-agenda-calendar__event.is-overflowing:hover .techbbq-agenda-calendar__card-spacer,
.techbbq-agenda-calendar__event.is-overflowing:focus-within .techbbq-agenda-calendar__card-spacer,
.techbbq-agenda-calendar__event.is-card-layout-compact:hover .techbbq-agenda-calendar__card-spacer,
.techbbq-agenda-calendar__event.is-card-layout-compact:focus-within .techbbq-agenda-calendar__card-spacer,
.techbbq-agenda-calendar__event.is-card-layout-tiny:hover .techbbq-agenda-calendar__card-spacer,
.techbbq-agenda-calendar__event.is-card-layout-tiny:focus-within .techbbq-agenda-calendar__card-spacer {
	flex: 0 0 6px;
	display: block;
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-layout-compact,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-layout-compact,
.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-layout-tiny,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-layout-tiny {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-body {
	flex: 0 0 auto;
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__card-speakers,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__card-speakers,
.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-speakers,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-speakers {
	flex: 0 1 auto;
	gap: var(--techbbq-space-1);
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-time,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-time {
	display: block;
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__speaker-count,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__speaker-count,
.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__speaker-count,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__speaker-count {
	display: block;
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__speaker-avatar,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__speaker-avatar {
	display: flex;
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__speaker-overflow,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__speaker-overflow {
	display: none !important;
}

.techbbq-agenda-calendar__event.is-overflowing:hover .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__event.is-overflowing:focus-within .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__event.is-overflowing:hover .techbbq-agenda-calendar__card-speakers,
.techbbq-agenda-calendar__event.is-overflowing:focus-within .techbbq-agenda-calendar__card-speakers,
.techbbq-agenda-calendar__event.is-card-layout-compact:hover .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__event.is-card-layout-compact:focus-within .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__event.is-card-layout-compact:hover .techbbq-agenda-calendar__card-speakers,
.techbbq-agenda-calendar__event.is-card-layout-compact:focus-within .techbbq-agenda-calendar__card-speakers,
.techbbq-agenda-calendar__event.is-card-layout-tiny:hover .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__event.is-card-layout-tiny:focus-within .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__event.is-card-layout-tiny:hover .techbbq-agenda-calendar__card-speakers,
.techbbq-agenda-calendar__event.is-card-layout-tiny:focus-within .techbbq-agenda-calendar__card-speakers {
	flex-shrink: 0;
	overflow: unset;
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card-title,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card-title {
	display: block;
	overflow: visible;
	max-height: none;
	white-space: normal;
	text-overflow: unset;
	-webkit-line-clamp: unset;
}

.techbbq-agenda-calendar__card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0;
	height: 100%;
	min-height: 0;
	max-height: 100%;
	padding: var(--techbbq-space-2);
	border: 0.8px solid rgb(255 255 255 / 10%);
	border-radius: 8px;
	background-color: var(--techbbq-bg-main);
	overflow: hidden;
	--techbbq-agenda-calendar-card-title-scale: 1;
	--techbbq-agenda-calendar-card-time-scale: 1;
	--techbbq-agenda-calendar-card-title-size: calc(var(--techbbq-text-paragraph-m-size) * var(--techbbq-agenda-calendar-card-title-scale));
	--techbbq-agenda-calendar-card-time-size: calc(var(--techbbq-text-paragraph-xs-size) * var(--techbbq-agenda-calendar-card-time-scale));
}

.techbbq-agenda-calendar.is-card-text-sm .techbbq-agenda-calendar__card:not( .is-card-text-xs ) {
	--techbbq-agenda-calendar-card-title-scale: 0.8;
	--techbbq-agenda-calendar-card-time-scale: 0.8;
}

.techbbq-agenda-calendar__card.is-card-text-xs {
	--techbbq-agenda-calendar-card-title-scale: 0.7;
	--techbbq-agenda-calendar-card-time-scale: 0.7;
	padding-top: var(--techbbq-space-1);
}

.techbbq-agenda-calendar__card.is-card-text-xs .techbbq-agenda-calendar__card-title {
	font-weight: 700;
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-card-text-xs,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-card-text-xs {
	--techbbq-agenda-calendar-card-title-scale: 1;
	--techbbq-agenda-calendar-card-time-scale: 1;
	padding-top: var(--techbbq-space-2);
}

.techbbq-agenda-calendar__event.is-expandable:hover .techbbq-agenda-calendar__card.is-card-text-xs .techbbq-agenda-calendar__card-title,
.techbbq-agenda-calendar__event.is-expandable:focus-within .techbbq-agenda-calendar__card.is-card-text-xs .techbbq-agenda-calendar__card-title {
	font-weight: 500;
}

.techbbq-agenda-calendar__card.is-layout-compact,
.techbbq-agenda-calendar__card.is-layout-tiny {
	flex-direction: row;
	gap: var(--techbbq-space-1);
}

.techbbq-agenda-calendar__card.is-layout-compact {
	align-items: center;
}

.techbbq-agenda-calendar__card.is-layout-tiny {
	align-items: flex-start;
}

.techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__card-spacer,
.techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-spacer {
	display: none;
}

.techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__card-body,
.techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-body {
	flex: 1 1 0;
	min-width: 0;
}

.techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__card-speakers,
.techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-speakers {
	flex: 0 0 auto;
	gap: 0;
}

.techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__speaker-count,
.techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__speaker-count {
	display: none;
}

.techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-time {
	display: none;
}

.techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__card-title,
.techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__card-title {
	display: block;
	overflow: hidden;
	max-height: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-line-clamp: unset;
}

.techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__speaker-avatar:nth-child(n+2),
.techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__speaker-avatar:nth-child(n+3) {
	display: none;
}

.techbbq-agenda-calendar__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--techbbq-agenda-calendar-accent);
	opacity: 0.1;
	pointer-events: none;
}

.techbbq-agenda-calendar__card-accent {
	position: absolute;
	z-index: 1;
	top: 3px;
	right: 3px;
	left: 5px;
	height: 4px;
	border-radius: 6px;
	background-color: var(--techbbq-agenda-calendar-accent);
}

.techbbq-agenda-calendar__card-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 6px;
	overflow: hidden;
}

.techbbq-agenda-calendar__card-spacer {
	flex: 1 1 6px;
	min-height: 6px;
}

.techbbq-agenda-calendar__card-title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	max-height: 78px;
	font-family: var(--techbbq-font-family-heading);
	font-size: var(--techbbq-agenda-calendar-card-title-size);
	font-weight: 500;
	line-height: 1.32;
	color: var(--techbbq-content-primary);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.techbbq-agenda-calendar__card-time {
	flex-shrink: 0;
	margin: 0;
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-agenda-calendar-card-time-size);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--techbbq-content-primary);
}

.techbbq-agenda-calendar__card-speakers {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 0 1 auto;
	align-items: center;
	gap: 8px;
	min-height: 0;
	overflow: hidden;
}

.techbbq-agenda-calendar__speaker-stack {
	display: flex;
	align-items: center;
	height: 24px;
}

.techbbq-agenda-calendar__speaker-count {
	margin: 0;
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-text-paragraph-xs-size);
	font-weight: 400;
	line-height: var(--techbbq-text-paragraph-line-height);
	letter-spacing: var(--techbbq-text-paragraph-letter-spacing);
	color: var(--techbbq-content-secondary);
	white-space: nowrap;
}

.techbbq-agenda-calendar__speaker-avatar {
	position: relative;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	overflow: hidden;
	border: 2px solid var(--techbbq-bg-surface);
	border-radius: 99px;
}

.techbbq-agenda-calendar__speaker-avatar + .techbbq-agenda-calendar__speaker-avatar {
	margin-left: -4px;
}

.techbbq-agenda-calendar__speaker-overflow {
	display: none;
	position: relative;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-left: -4px;
	border: 2px solid var(--techbbq-bg-surface);
	border-radius: 99px;
	background-color: var(--techbbq-bg-surface);
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-text-paragraph-xs-size);
	font-weight: 400;
	line-height: var(--techbbq-text-paragraph-line-height);
	letter-spacing: var(--techbbq-text-paragraph-letter-spacing);
	color: var(--techbbq-content-primary);
	white-space: nowrap;
}

.techbbq-agenda-calendar__card.is-layout-compact .techbbq-agenda-calendar__speaker-overflow:not([hidden]),
.techbbq-agenda-calendar__card.is-layout-tiny .techbbq-agenda-calendar__speaker-overflow:not([hidden]) {
	display: flex;
}

.techbbq-agenda-calendar__speaker-avatar-initial {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: var(--techbbq-font-family-body);
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
	color: var(--techbbq-content-primary);
	background-color: var(--techbbq-bg-surface-alt);
	text-transform: uppercase;
}

.techbbq-agenda-calendar__speaker-avatar img,
.techbbq-agenda-calendar__speaker-avatar-image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.techbbq-agenda-calendar__speaker-avatar-image.is-hidden {
	display: none;
}

/* ── Stage columns layout (Figma 7848:112218) ───────────────── */
.techbbq-agenda-calendar--stage-columns {
	--techbbq-agenda-calendar-header-height: 64px;
	--techbbq-agenda-calendar-time-width: 100px;
}

.techbbq-agenda-calendar--stage-columns .techbbq-agenda-calendar__time {
	background-color: var(--techbbq-bg-surface-alt);
}

.techbbq-agenda-calendar--stage-columns .techbbq-agenda-calendar__time-spacer {
	height: 0;
	border-bottom: 0;
}

.techbbq-agenda-calendar--stage-columns .techbbq-agenda-calendar__time-label {
	font-size: 12px;
}

.techbbq-agenda-calendar--stage-columns .techbbq-agenda-calendar__header {
	display: none;
}

.techbbq-agenda-calendar--stage-columns .techbbq-agenda-calendar__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

/* Stage column picker lives in agenda tabs toolbar (compact). */
@media (min-width: 768px) {
	.techbbq-agenda-calendar {
		--techbbq-agenda-calendar-slot-height: 200px;
		--techbbq-agenda-calendar-time-width: 100px;
		--techbbq-agenda-calendar-header-height: 64px;
	}

	.techbbq-agenda-calendar__time-label {
		font-size: 12px;
	}

	.techbbq-agenda-calendar__time-spacer {
		height: var(--techbbq-agenda-calendar-header-height);
		border-bottom: 0.8px solid var(--techbbq-border-tertiary);
	}

	.techbbq-agenda-calendar__mobile-day {
		display: none;
	}

	.techbbq-agenda-calendar__header {
		display: grid;
		grid-template-columns: repeat(var(--techbbq-agenda-calendar-day-count, var(--techbbq-agenda-calendar-column-count, 2)), minmax(0, 1fr));
	}

	.techbbq-agenda-calendar__body {
		grid-template-columns: repeat(var(--techbbq-agenda-calendar-day-count, var(--techbbq-agenda-calendar-column-count, 2)), minmax(0, 1fr));
	}

	.techbbq-agenda-calendar__day-column {
		display: block;
	}
}

/* ── Desktop (1024+) — multi-column stage grid, tab buttons replace dropdown ── */
@media (min-width: 1024px) {
	.techbbq-agenda-calendar--stage-columns .techbbq-agenda-calendar__time-spacer {
		height: var(--techbbq-agenda-calendar-header-height);
		border-bottom: 0.8px solid var(--techbbq-border-tertiary);
	}

	.techbbq-agenda-calendar--stage-columns .techbbq-agenda-calendar__header {
		display: grid;
		grid-template-columns: repeat(var(--techbbq-agenda-calendar-column-count, 5), minmax(140px, 1fr));
		height: var(--techbbq-agenda-calendar-header-height);
		border-bottom: 0.8px solid #3e3e3e;
	}

	.techbbq-agenda-calendar--stage-columns .techbbq-agenda-calendar__body {
		grid-template-columns: repeat(var(--techbbq-agenda-calendar-column-count, 5), minmax(140px, 1fr));
	}

	.techbbq-agenda-calendar--stage-columns.is-single-stage-filter .techbbq-agenda-calendar__header,
	.techbbq-agenda-calendar--stage-columns.is-single-stage-filter .techbbq-agenda-calendar__body {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Side Events tab — 7-day week view; page scrolls when columns exceed viewport width. */
@media (min-width: 768px) {
	.techbbq-agenda-calendar--wide-days .techbbq-agenda-calendar__header,
	.techbbq-agenda-calendar--wide-days .techbbq-agenda-calendar__body {
		grid-template-columns: repeat(var(--techbbq-agenda-calendar-day-count, 7), minmax(140px, 1fr));
	}
}
