/**
 * School – Accueil École : styles du site public.
 * Les couleurs proviennent des réglages (variables injectées en ligne).
 */

.school,
.school * {
	box-sizing: border-box;
}

.school {
	--school-texte: #1b2a20;
	--school-doux: #5d6b62;
	--school-bord: rgba(var(--school-fonce-rgb), .1);
	--school-ombre: 0 18px 45px -22px rgba(var(--school-fonce-rgb), .45);

	position: relative;
	color: var(--school-texte);
	line-height: 1.65;
}

.school-conteneur {
	width: 100%;
	max-width: var(--school-largeur);
	margin: 0 auto;
	padding: 0 24px;
}

.school-section {
	padding: clamp(56px, 8vw, 104px) 0;
}

.school-fond-clair {
	background: #fff;
}

.school-fond-gris {
	background: linear-gradient(180deg, var(--school-primaire-pale), #fff);
}

.school-fond-fonce {
	background: var(--school-fonce);
	--school-texte: #f2f6f3;
	--school-doux: rgba(242, 246, 243, .72);
	--school-bord: rgba(255, 255, 255, .14);
}

/* ------------------------------------------------------------------ */
/* Titres                                                              */
/* ------------------------------------------------------------------ */

.school-titre {
	margin: 0 0 clamp(32px, 5vw, 52px);
}

.school-titre-centre {
	text-align: center;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.school-surtitre {
	margin: 0 0 10px;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--school-primaire);
}

.school-fond-fonce .school-surtitre {
	color: var(--school-accent);
}

.school-titre h2 {
	margin: 0;
	font-size: clamp(1.7rem, 3.4vw, 2.6rem);
	line-height: 1.2;
	letter-spacing: -.02em;
	color: inherit;
}

.school-chapeau {
	margin: 16px 0 0;
	font-size: 1.05rem;
	color: var(--school-doux);
}

.school-paragraphe {
	margin: 0 0 22px;
	color: var(--school-doux);
	font-size: 1.03rem;
}

/* ------------------------------------------------------------------ */
/* Boutons                                                             */
/* ------------------------------------------------------------------ */

.school-boutons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.school-boutons-centre {
	justify-content: center;
}

.school .school-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 30px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-size: .97rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.school .school-btn:hover {
	transform: translateY(-2px);
}

.school .school-btn-plein {
	background: var(--school-primaire);
	color: #fff;
	box-shadow: 0 14px 30px -14px rgba(var(--school-primaire-rgb), .85);
}

.school .school-btn-plein:hover {
	background: var(--school-primaire-sombre);
}

.school .school-btn-blanc {
	background: #fff;
	color: var(--school-primaire-sombre);
	box-shadow: 0 14px 30px -18px rgba(0, 0, 0, .6);
}

.school .school-btn-ligne {
	border-color: var(--school-primaire);
	color: var(--school-primaire);
	background: transparent;
}

.school .school-btn-ligne:hover {
	background: var(--school-primaire);
	color: #fff;
}

.school .school-btn-ligne-blanc {
	border-color: rgba(255, 255, 255, .6);
	color: #fff;
	background: transparent;
}

.school .school-btn-ligne-blanc:hover {
	background: rgba(255, 255, 255, .14);
}

.school .school-btn-inactif {
	background: rgba(var(--school-primaire-rgb), .18);
	color: var(--school-texte);
	cursor: not-allowed;
	opacity: .8;
}

.school .school-btn-inactif:hover {
	transform: none;
}

.school-mention {
	display: inline-flex;
	align-items: center;
	padding: 0 6px;
	font-size: .84rem;
	font-weight: 600;
	color: var(--school-accent);
}

.school-note {
	margin: 14px 0 0;
	font-size: .87rem;
	color: var(--school-doux);
}

.school-lien {
	display: inline-block;
	margin-top: 14px;
	font-weight: 600;
	color: var(--school-primaire);
	text-decoration: none;
	border-bottom: 2px solid rgba(var(--school-primaire-rgb), .3);
}

.school-lien:hover {
	border-bottom-color: var(--school-primaire);
}

/* ------------------------------------------------------------------ */
/* Bandeau d’en-tête                                                   */
/* ------------------------------------------------------------------ */

.school-hero {
	display: flex;
	align-items: center;
	position: relative;
	/*
	 * La marge basse doit rester supérieure au chevauchement de la carte
	 * d’accès, sinon celle-ci recouvre la fin du texte.
	 */
	padding: 100px 0 clamp(120px, 13vh, 180px);
	background-color: var(--school-fonce);
	background-size: cover;
	background-position: center;
	color: #fff;
	overflow: hidden;
}

.school-hero-uni {
	background-image: linear-gradient(135deg, var(--school-primaire-sombre), var(--school-fonce) 70%);
}

.school-hero-voile {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(var(--school-fonce-rgb), calc(var(--school-voile, .5) * .75)) 0%,
			rgba(var(--school-fonce-rgb), var(--school-voile, .5)) 55%,
			rgba(var(--school-fonce-rgb), calc(var(--school-voile, .5) + .18)) 100%);
}

.school-hero-uni .school-hero-voile {
	background: none;
}

.school-hero-contenu {
	position: relative;
	max-width: 860px;
	text-align: center;
}

.school-hero-logo {
	display: block;
	width: auto;
	max-width: 150px;
	max-height: 110px;
	margin: 0 auto 26px;
}

.school-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 20px;
	padding: 8px 18px 8px 14px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(6px);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: #fff;
}

.school-badge span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--school-accent);
	box-shadow: 0 0 0 0 rgba(var(--school-accent-rgb), .8);
	animation: school-pulse 2.2s infinite;
}

@keyframes school-pulse {
	70% { box-shadow: 0 0 0 10px rgba(var(--school-accent-rgb), 0); }
	100% { box-shadow: 0 0 0 0 rgba(var(--school-accent-rgb), 0); }
}

.school-hero-surtitre {
	margin: 0 0 8px;
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .82);
}

.school-hero-titre {
	margin: 0;
	font-size: clamp(2.2rem, 6vw, 4.1rem);
	line-height: 1.06;
	letter-spacing: -.03em;
	color: #fff;
	text-wrap: balance;
}

.school-hero-texte {
	max-width: 620px;
	margin: 22px auto 0;
	font-size: clamp(1rem, 1.7vw, 1.18rem);
	color: rgba(255, 255, 255, .88);
}

.school-hero .school-boutons {
	justify-content: center;
	margin-top: 36px;
}

/* Quand la carte d’accès suit le bandeau, la flèche fait doublon. */
.school-hero:has( + .school-acces ) .school-hero-fleche {
	display: none;
}

.school-hero-fleche {
	position: absolute;
	left: 50%;
	bottom: 34px;
	width: 22px;
	height: 22px;
	margin-left: -11px;
	border-right: 2px solid rgba(255, 255, 255, .6);
	border-bottom: 2px solid rgba(255, 255, 255, .6);
	transform: rotate(45deg);
	animation: school-flotte 2s ease-in-out infinite;
}

@keyframes school-flotte {
	0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .8; }
	50% { transform: rotate(45deg) translate(5px, 5px); opacity: .35; }
}

/* ------------------------------------------------------------------ */
/* Raccourci « espace parents » posé sur le bandeau                     */
/* ------------------------------------------------------------------ */

.school-acces {
	padding: 0;
	background: transparent;
}

.school-acces-carte {
	position: relative;
	z-index: 4;
	margin-top: clamp(-62px, -3.6vw, -38px);
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.6fr);
	overflow: hidden;
	border-radius: var(--school-rayon);
	background: #fff;
	box-shadow: 0 34px 70px -30px rgba(var(--school-fonce-rgb), .65);
}

.school-acces-panneau {
	position: relative;
	min-height: 240px;
	background: linear-gradient(150deg, var(--school-primaire), var(--school-primaire-sombre));
}

.school-acces-panneau .school-acces-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Voile de couleur : la photo reste lisible et prend la teinte de l’école. */
.school-acces-panneau::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(150deg, rgba(var(--school-primaire-rgb), .55), rgba(var(--school-fonce-rgb), .6));
}

.school-acces-panneau-vide::after {
	background: none;
}

.school-acces-icone {
	position: absolute;
	left: 26px;
	bottom: 24px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: calc(var(--school-rayon) * .8);
	background: rgba(255, 255, 255, .92);
	color: var(--school-primaire-sombre);
	box-shadow: 0 12px 30px -14px rgba(0, 0, 0, .8);
}

.school-acces-icone svg {
	width: 32px;
	height: 32px;
}

.school-acces-corps {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(28px, 3.2vw, 42px);
}

.school-acces-sur {
	margin: 0 0 7px;
	font-size: .73rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--school-primaire);
}

.school-acces-corps h2 {
	margin: 0;
	font-size: clamp(1.25rem, 2.3vw, 1.75rem);
	line-height: 1.22;
	letter-spacing: -.02em;
	color: #1b2a20;
	text-wrap: balance;
}

.school-acces-pastilles {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.school-acces-pastilles li {
	position: relative;
	padding: 6px 14px 6px 26px;
	border-radius: 999px;
	background: rgba(var(--school-primaire-rgb), .09);
	font-size: .78rem;
	font-weight: 600;
	color: var(--school-primaire-sombre);
}

.school-acces-pastilles li::before {
	content: "";
	position: absolute;
	left: 11px;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-radius: 50%;
	background: var(--school-primaire);
}

.school-acces-action {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.school-acces-mention {
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(var(--school-accent-rgb), .24);
	font-size: .74rem;
	font-weight: 700;
	color: var(--school-primaire-sombre);
}

.school-acces-note {
	margin: 14px 0 0;
	font-size: .84rem;
	color: #7a877f;
}

/* ------------------------------------------------------------------ */
/* Chiffres clés                                                       */
/* ------------------------------------------------------------------ */

.school-chiffres {
	padding: 0 0 clamp(48px, 7vw, 88px);
}

.school-grille-chiffres {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 4px;
	padding: 30px 10px;
	border-top: 1px solid rgba(var(--school-fonce-rgb), .12);
	border-bottom: 1px solid rgba(var(--school-fonce-rgb), .12);
}

.school-chiffre {
	text-align: center;
	padding: 8px 14px;
	border-right: 1px solid rgba(var(--school-fonce-rgb), .08);
}

.school-chiffre:last-child {
	border-right: 0;
}

.school-chiffre-val {
	display: block;
	font-size: clamp(1.9rem, 3.6vw, 2.7rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.03em;
	color: var(--school-primaire);
}

.school-chiffre-lib {
	display: block;
	margin-top: 6px;
	font-size: .88rem;
	color: #5d6b62;
}

/* ------------------------------------------------------------------ */
/* Blocs deux colonnes                                                 */
/* ------------------------------------------------------------------ */

.school-duo {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 72px);
	align-items: center;
}

.school-duo-inverse .school-duo-media {
	order: 2;
}

.school-duo-media {
	position: relative;
}

.school-cadre {
	position: relative;
	border-radius: var(--school-rayon);
	overflow: hidden;
	box-shadow: var(--school-ombre);
}

.school-cadre img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3.2;
}

.school-cadre-vide {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3.2;
	background: linear-gradient(140deg, rgba(var(--school-primaire-rgb), .9), var(--school-primaire-sombre));
	font-size: 5rem;
}

.school-cadre-petit {
	position: absolute;
	right: -18px;
	bottom: -28px;
	width: 46%;
	max-width: 220px;
	border: 6px solid #fff;
	border-radius: calc(var(--school-rayon) * .8);
	overflow: hidden;
	box-shadow: var(--school-ombre);
}

.school-fond-fonce .school-cadre-petit {
	border-color: var(--school-fonce);
}

.school-cadre-petit img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.school-duo-texte .school-titre {
	margin-bottom: 22px;
}

/* Listes à coches */

.school-points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.school-points li {
	position: relative;
	padding-left: 34px;
	color: var(--school-texte);
}

.school-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: rgba(var(--school-primaire-rgb), .14);
}

.school-points li::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 8px;
	width: 6px;
	height: 10px;
	border-right: 2px solid var(--school-primaire);
	border-bottom: 2px solid var(--school-primaire);
	transform: rotate(42deg);
}

.school-fond-fonce .school-points li::before {
	background: rgba(var(--school-accent-rgb), .2);
}

.school-fond-fonce .school-points li::after {
	border-color: var(--school-accent);
}

.school-points-petit li {
	font-size: .92rem;
	padding-left: 28px;
}

.school-points-petit li::before {
	width: 17px;
	height: 17px;
	top: 4px;
}

.school-points-petit li::after {
	left: 5px;
	top: 8px;
	width: 5px;
	height: 8px;
}

/* Liste « services » de l’espace parents */

.school-services {
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 12px;
}

.school-services li {
	padding: 16px 18px;
	border: 1px solid var(--school-bord);
	border-radius: calc(var(--school-rayon) * .6);
	background: rgba(255, 255, 255, .05);
	font-size: .95rem;
	font-weight: 600;
}

.school-fond-clair .school-services li,
.school-fond-gris .school-services li {
	background: #fff;
	box-shadow: 0 6px 20px -14px rgba(var(--school-fonce-rgb), .5);
}

/* ------------------------------------------------------------------ */
/* Grilles de cartes                                                   */
/* ------------------------------------------------------------------ */

.school-grille {
	display: grid;
	gap: 26px;
}

.school-grille-3 {
	grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
}

.school-carte {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--school-bord);
	border-radius: var(--school-rayon);
	background: #fff;
	transition: transform .22s ease, box-shadow .22s ease;
}

.school-carte:hover {
	transform: translateY(-5px);
	box-shadow: var(--school-ombre);
}

.school-carte-visuel {
	position: relative;
	background: linear-gradient(140deg, rgba(var(--school-primaire-rgb), .16), rgba(var(--school-accent-rgb), .16));
	display: grid;
	place-items: center;
	min-height: 90px;
}

.school-carte-photo {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.school-carte-icone {
	font-size: 3rem;
	padding: 34px 0;
	line-height: 1;
}

.school-puce {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	font-size: .78rem;
	font-weight: 700;
	color: var(--school-primaire-sombre);
	box-shadow: 0 6px 18px -10px rgba(0, 0, 0, .7);
}

.school-date {
	position: absolute;
	right: 14px;
	top: 14px;
	display: grid;
	place-items: center;
	width: 58px;
	padding: 8px 0;
	border-radius: calc(var(--school-rayon) * .5);
	background: rgba(255, 255, 255, .95);
	line-height: 1.1;
	box-shadow: 0 8px 22px -12px rgba(0, 0, 0, .8);
}

.school-date strong {
	font-size: 1.35rem;
	color: var(--school-primaire-sombre);
}

.school-date span {
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #5d6b62;
}

.school-carte-corps {
	flex: 1;
	padding: 24px;
	color: #1b2a20;
}

.school-carte-corps h3 {
	margin: 0 0 10px;
	font-size: 1.2rem;
	line-height: 1.3;
	color: #1b2a20;
}

.school-carte-corps p {
	margin: 0 0 12px;
	font-size: .95rem;
	color: #5d6b62;
}

.school-etiquettes {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 12px;
}

.school-etiquette {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(var(--school-primaire-rgb), .1);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--school-primaire-sombre);
}

.school-etiquette-accent {
	background: rgba(var(--school-accent-rgb), .2);
	color: #6b4b00;
}

.school-lieu {
	font-size: .88rem !important;
	color: #7a877f !important;
}

/* ------------------------------------------------------------------ */
/* Galerie                                                             */
/* ------------------------------------------------------------------ */

.school-mosaique {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-auto-rows: 190px;
	gap: 14px;
}

.school-tuile {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: calc(var(--school-rayon) * .7);
	overflow: hidden;
	cursor: zoom-in;
	background: rgba(var(--school-primaire-rgb), .08);
}

.school-tuile-large {
	grid-column: span 2;
	grid-row: span 2;
}

.school-tuile img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.school-tuile:hover img {
	transform: scale(1.06);
}

.school-loupe {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: 30px;
	background: rgba(0, 0, 0, .88);
	opacity: 0;
	transition: opacity .2s ease;
}

.school-loupe.school-ouvert {
	opacity: 1;
}

.school-loupe img {
	max-width: 100%;
	max-height: 90vh;
	border-radius: calc(var(--school-rayon) * .5);
}

.school-loupe-fermer {
	position: absolute;
	top: 18px;
	right: 22px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .16);
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

/* ------------------------------------------------------------------ */
/* Témoignages                                                         */
/* ------------------------------------------------------------------ */

.school-temoignage {
	padding: 30px 28px;
	margin: 0;
}

.school-temoignage:hover {
	transform: none;
}

.school-etoiles {
	margin-bottom: 12px;
	font-size: 1.05rem;
	letter-spacing: .12em;
	color: var(--school-accent);
}

.school-temoignage blockquote {
	flex: 1;
	margin: 0 0 22px;
	padding: 0;
	border: 0;
	font-size: 1rem;
	font-style: italic;
	color: #3c4b42;
	quotes: "«\00a0" "\00a0»";
}

.school-temoignage blockquote::before {
	content: open-quote;
}

.school-temoignage blockquote::after {
	content: close-quote;
}

.school-temoignage figcaption {
	display: flex;
	align-items: center;
	gap: 13px;
}

.school-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 48px;
}

.school-avatar-lettre {
	display: grid;
	place-items: center;
	background: rgba(var(--school-primaire-rgb), .14);
	color: var(--school-primaire-sombre);
	font-weight: 800;
	font-size: 1.2rem;
	text-transform: uppercase;
}

.school-temoignage figcaption strong {
	display: block;
	font-size: .98rem;
	color: #1b2a20;
}

.school-temoignage figcaption em {
	display: block;
	font-size: .85rem;
	font-style: normal;
	color: #7a877f;
}

/* ------------------------------------------------------------------ */
/* Appel à l’action                                                    */
/* ------------------------------------------------------------------ */

.school-cta {
	position: relative;
	padding: clamp(56px, 8vw, 96px) 0;
	background-color: var(--school-primaire);
	background-image: linear-gradient(135deg, var(--school-primaire), var(--school-primaire-sombre));
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
	overflow: hidden;
}

.school-cta-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(var(--school-primaire-rgb), .93), rgba(var(--school-fonce-rgb), .9));
}

.school-cta-contenu {
	position: relative;
	max-width: 760px;
}

.school-cta h2 {
	margin: 0;
	font-size: clamp(1.7rem, 3.6vw, 2.6rem);
	line-height: 1.18;
	letter-spacing: -.02em;
	color: #fff;
}

.school-cta p {
	margin: 16px 0 0;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, .9);
}

/* ------------------------------------------------------------------ */
/* Apparition au défilement                                            */
/* ------------------------------------------------------------------ */

.school-anim {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .6s ease, transform .6s ease;
}

.school-vu {
	opacity: 1;
	transform: none;
}

/* ------------------------------------------------------------------ */
/* Écrans étroits                                                      */
/* ------------------------------------------------------------------ */

@media (max-width: 960px) {

	.school-acces-carte {
		grid-template-columns: 1fr;
	}

	.school-acces-panneau {
		min-height: 190px;
	}
}

@media (max-width: 900px) {

	.school-duo {
		grid-template-columns: 1fr;
	}

	.school-duo-inverse .school-duo-media {
		order: 0;
	}

	.school-cadre-petit {
		right: 12px;
		bottom: -22px;
		width: 40%;
	}

	.school-tuile-large {
		grid-column: span 1;
		grid-row: span 1;
	}
}

@media (max-width: 700px) {

	.school-conteneur {
		padding: 0 18px;
	}

	.school-grille-chiffres {
		padding: 14px 8px;
	}

	.school-chiffre {
		border-right: 0;
		border-bottom: 1px solid rgba(var(--school-fonce-rgb), .08);
		padding: 14px;
	}

	.school-chiffre:last-child {
		border-bottom: 0;
	}

	.school-hero .school-boutons,
	.school-cta .school-boutons {
		flex-direction: column;
		align-items: stretch;
	}

	.school-mosaique {
		grid-auto-rows: 150px;
	}

	.school-acces-carte {
		margin-top: -40px;
	}

	.school-acces-panneau {
		min-height: 150px;
	}

	.school-acces-icone {
		left: 20px;
		bottom: -31px;
		width: 54px;
		height: 54px;
	}

	.school-acces-corps {
		padding-top: 34px;
	}

	.school-acces-action .school-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {

	.school *,
	.school-anim {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ------------------------------------------------------------------ */
/* Finitions                                                           */
/* ------------------------------------------------------------------ */

/* Petit trait décoratif après le sur-titre de section. */
.school-titre .school-surtitre::after {
	content: "";
	display: inline-block;
	width: 30px;
	height: 2px;
	margin-left: 13px;
	vertical-align: middle;
	background: currentColor;
	opacity: .45;
}

.school-titre-centre .school-surtitre::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 2px;
	margin-right: 13px;
	vertical-align: middle;
	background: currentColor;
	opacity: .45;
}

/* Liseré d’accent qui se déploie au survol d’une carte. */
.school-carte::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 2;
	background: var(--school-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s ease;
}

.school-carte:hover::before {
	transform: scaleX(1);
}

.school-carte {
	position: relative;
}

/* Léger assombrissement des bords du bandeau : le regard va au centre. */
.school-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(115% 85% at 50% 42%, transparent 45%, rgba(0, 0, 0, .38) 100%);
}

.school-hero-contenu {
	z-index: 2;
}

.school-hero-fleche {
	z-index: 2;
}

/* Cartes posées sur une section sombre (témoignages). */
.school-fond-fonce .school-carte {
	background: rgba(255, 255, 255, .05);
	border-color: rgba(255, 255, 255, .13);
}

.school-fond-fonce .school-carte-corps {
	color: #f2f6f3;
}

.school-fond-fonce .school-carte-corps h3 {
	color: #fff;
}

.school-fond-fonce .school-carte-corps p {
	color: rgba(242, 246, 243, .72);
}

.school-fond-fonce .school-temoignage blockquote {
	color: rgba(242, 246, 243, .9);
}

.school-fond-fonce .school-temoignage figcaption strong {
	color: #fff;
}

.school-fond-fonce .school-temoignage figcaption em {
	color: rgba(242, 246, 243, .6);
}

.school-fond-fonce .school-avatar-lettre {
	background: rgba(var(--school-accent-rgb), .22);
	color: var(--school-accent);
}

.school-fond-fonce .school-etiquette {
	background: rgba(255, 255, 255, .12);
	color: #f2f6f3;
}

.school-acces-texte {
	margin: 12px 0 0;
	font-size: .97rem;
	line-height: 1.55;
	color: #5d6b62;
}

/* ------------------------------------------------------------------ */
/* Sortie de la colonne de contenu                                     */
/* ------------------------------------------------------------------ */

/*
 * Les thèmes et les constructeurs de pages enferment le contenu dans une
 * colonne centrée (1140 px chez Elementor). Une landing page doit occuper
 * toute la largeur : on sort de cette colonne. Le script affine ensuite la
 * valeur pour éviter la barre de défilement horizontale.
 */
.school-page {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	align-self: stretch;
	flex: 0 0 auto;
	text-align: left;
}

.school-page > * {
	max-width: none;
}

/* ------------------------------------------------------------------ */
/* Protections contre les styles du thème                              */
/* ------------------------------------------------------------------ */

.school-page img {
	max-width: 100%;
}

.school-page .school-cadre img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3.2;
}

.school-page .school-cadre-petit img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.school-page .school-acces-panneau .school-acces-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.school-page .school-carte-photo {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.school-page .school-tuile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.school-page .school-avatar {
	width: 48px;
	height: 48px;
	object-fit: cover;
}

.school-page .school-hero-logo {
	width: auto;
	height: auto;
	max-height: 110px;
}

.school-page h1,
.school-page h2,
.school-page h3 {
	padding: 0;
	text-transform: none;
}

.school-page ul {
	list-style: none;
}

.school-page a {
	box-shadow: none;
}

.school-page .school-btn {
	text-decoration: none;
}

/*
 * La bande de chiffres s’adapte au nombre réellement saisi : avec un ou deux
 * chiffres, on centre au lieu d’étirer les cases sur toute la largeur.
 */
.school-chiffres-1 .school-grille-chiffres,
.school-chiffres-2 .school-grille-chiffres,
.school-chiffres-3 .school-grille-chiffres {
	grid-template-columns: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
}

.school-chiffres-1 .school-chiffre,
.school-chiffres-2 .school-chiffre,
.school-chiffres-3 .school-chiffre {
	flex: 0 1 260px;
	padding: 8px 30px;
}

/* ------------------------------------------------------------------ */
/* Annonces : une liste lisible, contenu affiché en entier             */
/* ------------------------------------------------------------------ */

.school-annonces-liste {
	display: grid;
	gap: 22px;
	max-width: 820px;
	margin: 0 auto;
}

.school-annonce {
	position: relative;
	padding: 26px 28px;
	border: 1px solid var(--school-bord);
	border-radius: var(--school-rayon);
	background: #fff;
}

.school-fond-fonce .school-annonce {
	background: rgba(255, 255, 255, .05);
}

/* La photo est une petite carte, pas une bannière. */
.school-annonce-visuel {
	position: relative;
	width: 100%;
	max-width: 320px;
	margin-bottom: 18px;
	border-radius: calc(var(--school-rayon) * .6);
	overflow: hidden;
}

.school-annonce-photo {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.school-annonce-visuel .school-date {
	right: 12px;
	top: 12px;
	width: 54px;
	padding: 7px 0;
}

.school-annonce-corps h3 {
	margin: 0 0 12px;
	font-size: clamp(1.15rem, 2.2vw, 1.4rem);
	line-height: 1.3;
	letter-spacing: -.01em;
	color: #1b2a20;
}

.school-fond-fonce .school-annonce-corps h3 {
	color: #fff;
}

.school-annonce-texte {
	color: #4a5a50;
	font-size: 1rem;
	line-height: 1.7;
}

.school-fond-fonce .school-annonce-texte {
	color: rgba(242, 246, 243, .82);
}

.school-annonce-texte > *:first-child {
	margin-top: 0;
}

.school-annonce-texte > *:last-child {
	margin-bottom: 0;
}

.school-annonce-texte p {
	margin: 0 0 1em;
}

.school-annonce-texte ul,
.school-annonce-texte ol {
	margin: 0 0 1em;
	padding-left: 1.4em;
}

.school-annonce-texte ul {
	list-style: disc;
}

.school-annonce-texte ol {
	list-style: decimal;
}

.school-annonce-texte li {
	margin-bottom: .35em;
}

.school-annonce-texte img {
	max-width: 100%;
	height: auto;
	border-radius: calc(var(--school-rayon) * .5);
}

.school-annonce-texte a {
	color: var(--school-primaire);
	text-decoration: underline;
}

.school-annonce .school-lieu {
	margin: 14px 0 0;
	font-size: .88rem;
	color: #7a877f;
}

.school-annonces-plus[disabled] {
	opacity: .6;
	cursor: wait;
}

@media (max-width: 600px) {

	.school-annonce {
		padding: 20px 20px;
	}

	.school-annonce-visuel {
		max-width: none;
	}
}
