.legal {
	display: grid;
	grid-template-columns: 290px 1fr;
	gap: 64px;
	align-items: start;
}
.legal__toc {
	position: static;
}
.legal__toc-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 18px;
}
.legal__toc-list {
	counter-reset: toc;
	list-style: none;
	margin: 0;
	padding: 0;
}
.legal__toc-list li {
	counter-increment: toc;
}
.legal__toc-list li.is-plain {
	counter-increment: none;
}
.legal__toc-list a {
	display: block;
	padding: 11px 0;
	border-top: 1px solid var(--navy);
	color: var(--navy);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}
.legal__toc-list li:last-child a {
	border-bottom: 1px solid var(--navy);
}
.legal__toc-list a::before {
	content: counter(toc) ". ";
	font-weight: 700;
}
.legal__toc-list li.is-plain a::before {
	content: "";
}
.legal__toc-list a:hover {
	color: var(--orange);
}
.legal__body {
	counter-reset: legal;
	max-width: 760px;
}
.legal__body h2 {
	counter-increment: legal;
	position: relative;
	padding-left: 2.5em;
	scroll-margin-top: 100px;
	font-size: 1.7rem;
	font-weight: 700;
	margin: 56px 0 18px;
	padding-bottom: 14px;
}
.legal__body h2:first-child {
	margin-top: 0;
}
.legal__body h2::before {
	content: counter(legal, decimal-leading-zero);
	position: absolute;
	left: 0;
	color: var(--navy);
}
.legal__body h2::after {
	content: "/";
	position: absolute;
	left: 1.55em;
	color: var(--orange);
}
.legal__body h2.is-plain {
	counter-increment: none;
	padding-left: 0;
}
.legal__body h2.is-plain::before, .legal__body h2.is-plain::after {
	content: "";
}
.legal__body h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 28px 0 10px;
}
.legal__body p {
	margin: 0 0 16px;
	line-height: 1.7;
}
.legal__body ul {
	margin: 0 0 16px;
	padding-left: 20px;
}
.legal__body li {
	margin-bottom: 8px;
	line-height: 1.6;
}
.legal__body a {
	color: var(--orange);
}
.legal__body strong {
	font-weight: 700;
}
.legal__body table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 22px;
	font-size: 0.95rem;
}
.legal__body th, .legal__body td {
	text-align: left;
	padding: 12px 16px;
	border: 1px solid rgba(13, 27, 46, 0.14);
	vertical-align: top;
	line-height: 1.5;
}
.legal__body thead th {
	background: var(--navy);
	color: #fff;
	font-weight: 700;
}
.legal__body tbody tr:nth-child(even) {
	background: rgba(13, 27, 46, 0.03);
}

@media screen and (max-width: 1080px) {
	.legal {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.legal__toc {
		position: static;
	}
	/* Empêche le débordement horizontal du texte/URL/tableaux sur mobile
	   (min-width auto d'un élément grid ne rétrécit pas sous son contenu). */
	.legal, .legal__toc, .legal__body {
		min-width: 0;
	}
	.legal__body {
		overflow-wrap: break-word;
		word-break: break-word;
	}
	.legal__body table {
		display: block;
		width: 100%;
		overflow-x: auto;
	}
	.legal__body h2 {
		margin-top: 40px;
		line-height: 1.3;
		display: flex;
	}
}