.calendrier {
	list-style-type: none;
	margin: 0;
	padding: 0;
	column-width: 15em;
	width: 100%;
	column-gap: 2em;
	column-rule: dotted;

	>li {
		page-break-inside: avoid;
		margin-bottom: 1em;

		&.courant {
			outline: 2px solid #ff06;
			outline-offset: .5em;
		}

		>div {
			font-weight: bold;
		}

		>ul>li>div {
			font-style: italic;
		}
	}

	ul {
		margin: 0;
		padding-left: 1.5ch;
	}
}