/* Agenda — day & social headers.
   Media queries use `em` so they respect the browser font-size (37.5em ≈ 600px),
   and are kept inline directly after the rule they modify. */

.programme_day {
	font-size: 32rem;
	padding: 20rem;
	text-align: center;
}

@media (max-width: 37.5em) {
	.programme_day {
		font-size: 19rem;
	}
}
