/* Agenda — session card (.programme-item). */

.programme-item {
	display: flex;
	align-items: center;
	text-align: center;
	flex-direction: column;
	gap: 6rem;
	padding: 30rem 10rem 20rem 10rem;
	background: var(--colour-session);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
	position: relative;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	font-family: "Btp Normal";
	color: black;
	font-size: 14rem;
	line-height: 130%;
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
}

.programme-item:hover,
.programme-item:focus {
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.programme-item:focus:not(:focus-visible) {
	outline: none;
}

.programme-item__code {
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
}

.programme-item__code:hover {
}

.programme-item__title {
}

/* Touch/non-hover contexts stay compact and rely on the session detail page for speakers. */
.programme-item__speakers {
	display: none;
	list-style: none;
	margin: 5rem 0 0;
	padding: 0;
	font-size: 13rem;
	color: #555;
	text-align: left;
}

.programme-item__speakers li {
	margin: 2rem 0;
}

.programme-item__speakers strong {
	font-weight: 600;
	color: #222;
}

.programme-item__role {
	display: inline-block;
	background: #fff7c2;
	color: #5a4a00;
	padding: 0 5rem;
	border-radius: 2px;
	font-size: 11rem;
	margin-left: 3rem;
}

/* Workshops slightly more compact — override the padding variables only,
   so the badge anchor stays in sync automatically. */

.programme-row--workshops .programme-item {
	padding: 20px;
}
