/* ArbreMonde.net — feuille de style centrale du thème (MODELE) */

:root{
	--am-bg: #0a0b0f;
	--am-bg-alt: #0d0f14;
	--am-surface: #12141a;
	--am-border: #1c2028;
	--am-border-soft: #2a2f3a;
	--am-text: #dfe6ec;
	--am-text-body: #c3ccd6;
	--am-text-muted: #9aa4b0;
	--am-text-dim: #5a6270;
	--am-cyan: #35e0e0;
	--am-pink: #ff2f6e;
	--am-lime: #c9ff35;
	--am-font-head: 'Chakra Petch', sans-serif;
	--am-font-body: 'Segoe UI', sans-serif;
}

.am{
	color: #fff;
}
body.am{
	margin: 0;
	background: var(--am-bg);
	color: var(--am-text);
	font-family: var(--am-font-body);
	text-wrap: pretty;
}

.icone-16{width:16px;height:16px;vertical-align:center;}

.am a{ color: var(--am-cyan); text-decoration: none; }
.am a:hover{ color: var(--am-pink); }

.am-biseau{ clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px)); }
.am-ombre-conteneur { margin:0 auto; display: inline-block; filter: drop-shadow(0 5px 0 var(--am-cyan)); }
.am-img-biseau { clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px)); }
.am-affiche{ max-width: 150px; height: auto; }

.am-conteneur{ max-width: 1280px; margin: 0 auto; background: var(--am-bg); }

/* ---- Navigation ---- */
.am-navigation{ display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 28px; border-bottom: 1px solid var(--am-border); }
.am-navigation-logo-groupe{ display: flex; align-items: center; gap: 10px; }
.am-navigation-logo-img{ height: 40px; width: 40px; object-fit: contain; display: block; }

/* Glitch intermittent sur le logo, synchronisé sur le même cycle que le titre du site */
.am-logo-holo{ position: relative; display: inline-block; }
.am-logo-holo .am-navigation-logo-img{ animation: am-img-glitch 6s infinite steps(2, jump-none); }
.am-logo-holo:hover .am-navigation-logo-img{ animation-duration: 0.5s; }

@keyframes am-img-glitch{
	0%, 91%, 100%{ transform: translate(0, 0); filter: none; }
	92%{ transform: translate(-3px, 1px); filter: drop-shadow(-2px 0 var(--am-pink)) drop-shadow(2px 0 var(--am-cyan)); }
	93%{ transform: translate(3px, -1px); filter: drop-shadow(2px 0 var(--am-pink)) drop-shadow(-2px 0 var(--am-cyan)); }
	94%{ transform: translate(-2px, 0); filter: drop-shadow(-1px 0 var(--am-pink)) drop-shadow(1px 0 var(--am-cyan)); }
	95%{ transform: translate(0, 0); filter: none; }
}
.am-navigation-logo, a.am-navigation-logo{ position: relative; display: inline-block; font-family: var(--am-font-head); font-weight: 700; font-size: 22px; letter-spacing: 1px; color: #fff; }
.am-navigation-logo span{ color: var(--am-cyan); }
.am-navigation-logo .am-logo-tld{ color: var(--am-pink); }

/* Glitch intermittent sur le titre du site, + sursaut renforcé au survol */
.am-navigation-logo::before, .am-navigation-logo::after{
	content: attr(data-text);
	position: absolute;
	inset: 0;
	background: var(--am-bg);
	color: #fff;
	overflow: hidden;
	pointer-events: none;
	opacity: 0;
}
.am-navigation-logo::before{ text-shadow: -2px 0 var(--am-pink); animation: am-logo-glitch-1 6s infinite steps(2, jump-none); }
.am-navigation-logo::after{ text-shadow: 2px 0 var(--am-cyan); animation: am-logo-glitch-2 6s infinite steps(2, jump-none); }
.am-navigation-logo:hover::before{ animation-duration: 0.5s; }
.am-navigation-logo:hover::after{ animation-duration: 0.5s; }
.am-navigation-logo:hover{ animation: am-glitch-shift 0.3s steps(2, jump-none) infinite; }

@keyframes am-logo-glitch-1{
	0%, 91%, 100%{ opacity: 0; clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
	92%{ opacity: 1; clip-path: inset(10% 0 60% 0); transform: translate(-3px, 1px); }
	93%{ opacity: 1; clip-path: inset(55% 0 20% 0); transform: translate(3px, -1px); }
	94%{ opacity: 1; clip-path: inset(20% 0 65% 0); transform: translate(-2px, 0); }
	95%{ opacity: 0; clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
}
@keyframes am-logo-glitch-2{
	0%, 91%, 100%{ opacity: 0; clip-path: inset(100% 0 0 0); transform: translate(0, 0); }
	92%{ opacity: 1; clip-path: inset(65% 0 5% 0); transform: translate(3px, -1px); }
	93%{ opacity: 1; clip-path: inset(15% 0 60% 0); transform: translate(-3px, 1px); }
	94%{ opacity: 1; clip-path: inset(70% 0 10% 0); transform: translate(2px, 0); }
	95%{ opacity: 0; clip-path: inset(100% 0 0 0); transform: translate(0, 0); }
}
.am-navigation-liens{ display: flex; align-items: center; gap: 28px; font-family: var(--am-font-head); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.am-navigation-lien, a.am-navigation-lien{ color: var(--am-text-muted); }
.am-navigation-lien.is-active{ color: var(--am-cyan); }

.am-univers-menu-boite{ position: relative; }
/* Pont invisible entre le lien et le sous-menu, pour garder le survol sans agrandir
   la boîte du lien lui-même (un padding-bottom ici décentrerait son texte). */
.am-univers-menu-boite::after{ content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.am-univers-menu{ opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease; position: absolute; top: calc(100% + 14px); left: 0; margin-top: 0; background: var(--am-surface); border: 1px solid var(--am-border); min-width: 220px; padding: 8px; z-index: 30; }
.am-univers-menu-boite:hover .am-univers-menu{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.am-univers-menu a{ display: block; padding: 8px 12px; font-size: 13px; color: var(--am-text-muted); text-transform: none; letter-spacing: 0; font-weight: 500; transition: color 0.15s, background 0.15s; }
.am-univers-menu a:hover{ color: var(--am-cyan); background: #171a22; }
.am-univers-menu a.is-active{ color: var(--am-text); }

.am-navigation-compte, a.am-navigation-compte{ display: flex; align-items: center; gap: 8px; background: var(--am-surface); border: 1px solid var(--am-border-soft); color: var(--am-text); font-family: var(--am-font-head); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; padding: 8px 16px 8px 8px; }
.am-navigation-compte img{ width: 24px; height: 24px; clip-path: polygon(0 0, 0 0, 100% 100%, 100% 0, 10px 100%, 0 calc(100% - 10px)); object-fit: cover; }

/* ---- Boutons ---- */
.am-bouton, a.am-bouton{ position: relative; display: inline-block; border: none; cursor: pointer; font-family: var(--am-font-head); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; padding: 12px 22px; color: #fff; }
.am-bouton-mini{ padding: 5px 15px !important; }
.am-bouton--rose, a.am-bouton--rose, a.am-bouton--rose:hover{ background: var(--am-pink); color: #fff; }
.am-bouton--cyan, a.am-bouton--cyan, a.am-bouton--cyan:hover{ background: var(--am-cyan); color: #fff; }
.am-bouton--contour, a.am-bouton--contour, a.am-bouton--contour:hover{ background: transparent; border: 1px solid var(--am-cyan); color: #fff; }
.am-bouton--sm{ padding: 9px 18px; font-size: 12px; }
.am-bouton-icone{ display: none; vertical-align: middle; }

/* Effet glitch au survol */
.am-bouton:hover{ animation: am-glitch-shift 0.3s steps(2, jump-none) 1; }
.am-bouton:hover::before, .am-bouton:hover::after{
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.am-bouton:hover::before{ box-shadow: inset 3px 0 0 var(--am-pink); animation: am-glitch-slice-1 0.3s steps(2, jump-none) 1; }
.am-bouton:hover::after{ box-shadow: inset -3px 0 0 var(--am-cyan); animation: am-glitch-slice-2 0.3s steps(2, jump-none) 1; }

@keyframes am-glitch-shift{
	0%{ transform: translate(0, 0); }
	20%{ transform: translate(-2px, 1px); }
	40%{ transform: translate(2px, -1px); }
	60%{ transform: translate(-1px, 1px); }
	80%{ transform: translate(1px, -1px); }
	100%{ transform: translate(0, 0); }
}
@keyframes am-glitch-slice-1{
	0%{ clip-path: inset(0 0 0 0); opacity: 0; }
	15%{ clip-path: inset(10% 0 70% 0); opacity: 1; }
	35%{ clip-path: inset(60% 0 10% 0); opacity: 1; }
	55%{ clip-path: inset(30% 0 40% 0); opacity: 1; }
	75%{ clip-path: inset(80% 0 5% 0); opacity: 0.6; }
	100%{ clip-path: inset(0 0 0 0); opacity: 0; }
}
@keyframes am-glitch-slice-2{
	0%{ clip-path: inset(0 0 0 0); opacity: 0; }
	15%{ clip-path: inset(70% 0 10% 0); opacity: 1; }
	35%{ clip-path: inset(15% 0 55% 0); opacity: 1; }
	55%{ clip-path: inset(45% 0 20% 0); opacity: 1; }
	75%{ clip-path: inset(5% 0 80% 0); opacity: 0.6; }
	100%{ clip-path: inset(0 0 0 0); opacity: 0; }
}

/* ---- Étiquettes / badges ---- */
/* .article-corps-titre/-sstitre : générées par [titre]/[sstitre] dans le corps d'un billet (mep()/mep2() dans _fonctions.php) */
.am-surtitre, .article-corps-sstitre{ display: block; font-family: var(--am-font-head); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--am-cyan); margin-bottom: 8px; }
.am-surtitre--rose, .article-corps-titre{ color: var(--am-pink); font-size: 16px; }

.am-badge{ display: inline-block; font-family: var(--am-font-head); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--am-pink); color: var(--am-pink); }
.am-badge--flottant{ position: absolute; left: 12px; bottom: 12px; font-size: 11px; padding: 4px 10px; background: #0a0b0fcc; }
.am-badge--cyan{ border-color: var(--am-cyan); color: var(--am-cyan); }
.am-badge--rose{ border-color: var(--am-pink); color: var(--am-pink); }
.am-badge--lime{ border-color: var(--am-lime); color: var(--am-lime); }

.am-pilule, a.am-pilule{ font-family: var(--am-font-head); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; background: transparent; color: var(--am-text-muted); border: 1px solid var(--am-border-soft); padding: 8px 16px; cursor: pointer; }
.am-pilule.is-active, a.am-pilule.is-active:hover{ background: var(--am-cyan); color: var(--am-bg); border-color: var(--am-cyan); }

.am-etiquette, a.am-etiquette{ font-family: var(--am-font-head); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--am-text-muted); border: 1px solid var(--am-border-soft); padding: 5px 12px; display: inline-block; }

.am-meta{ font-family: var(--am-font-head); font-size: 12px; color: var(--am-text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

/* ---- Cartes ---- */
.am-carte{ background: var(--am-surface); border: 1px solid var(--am-border); overflow: hidden; display: flex; flex-direction: column; }
.am-carte-figure{ margin: 0; position: relative; }
.am-carte-corps{ padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.am-carte-titre{ font-family: var(--am-font-head); font-weight: 600; font-size: 18px; margin: 0; color: #fff; line-height: 1.3; }
.am-carte-extrait{ font-size: 14px; line-height: 1.6; color: var(--am-text-muted); margin: 0; flex: 1; }
.am-carte-etiquettes{ font-family: var(--am-font-head); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--am-pink); }
.am-carte-actions{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* ---- Frise chronologique (verticale) ---- */
.am-frise{ position: relative; display: flex; flex-direction: column; gap: 28px; padding-left: 28px; }
.am-frise::before{ content: ""; position: absolute; left: 4px; top: 6px; bottom: 6px; width: 2px; background: var(--am-border-soft); }
.am-frise-element{ position: relative; }
.am-frise-element::before{ content: ""; position: absolute; left: -28px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--am-bg); border: 2px solid var(--am-cyan); }
.am-frise-date{ font-family: var(--am-font-head); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--am-cyan); margin-bottom: 4px; }
.am-frise-corps h3{ margin-bottom: 4px; }

/* ---- Frise chronologique (horizontale, défilante — pages univers) ---- */
.am-fc-fenetre{ position: relative; overflow: hidden; padding-bottom: 12px; }
.am-fc-fenetre::-webkit-scrollbar{ display: none; }
.am-fc-piste{ display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; }
.am-fc-piste::-webkit-scrollbar{ display: none; }
.am-fc-carte{ flex: 0 0 210px; background: var(--am-surface); border: 1px solid var(--am-border); padding: 16px; }
.am-fc-annee{ font-family: var(--am-font-head); font-weight: 700; font-size: 16px; color: var(--am-cyan); margin-bottom: 8px; }
.am-fc-liste{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.am-fc-liste li{ font-size: 13px; line-height: 1.4; color: var(--am-text-body); }
.am-fc-legende{ font-family: var(--am-font-head); font-size: 11px; letter-spacing: 0.5px; color: var(--am-text-dim); margin: 14px 0 0; text-transform: uppercase; }

/* ---- Textes courts / nouvelles en grille compacte (pages univers) ---- */
.am-breves-grille{ display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.am-breves-element, a.am-breves-element{ background: var(--am-surface); border: 1px solid var(--am-border); overflow: hidden; display: block; }
.am-breves-date{ display: block; padding: 10px 12px; font-family: var(--am-font-head); font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--am-text-dim); }
@media (max-width: 900px){ .am-breves-grille{ grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---- Emplacement image manquante ---- */
.am-image-emplacement{ background: linear-gradient(135deg, #171a22 0%, #0d0f14 60%, #12141a 100%); position: relative; overflow: hidden; display: block; }
.am-image-emplacement::after{ content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(53,224,224,0.12), transparent 55%), radial-gradient(circle at 80% 80%, rgba(255,47,110,0.10), transparent 55%); }

/* ---- Sections / titres ---- */
.am-h1{ font-family: var(--am-font-head); font-weight: 700; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; margin: 0 0 10px; color: #fff; letter-spacing: 0.5px; }
.am-h1--lg{ font-size: clamp(28px, 4vw, 42px); }
.am-carte--pad22{ padding: 22px; }
.am-carte-corps--sm{ padding: 16px; }
.am-boite--sm{ padding: 10px; }
.am-h2{ font-family: var(--am-font-head); font-weight: 700; font-size: 30px; margin: 0; color: #fff; }
.am-h3{ font-family: var(--am-font-head); font-weight: 700; font-size: 20px; margin: 0 0 8px; color: #fff; }

.am-grille{ display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.am-grille--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

.am-article-corps p, .am-bio p, .am-recit p{ font-size: 13px; line-height: 1.75; color: var(--am-text-body); margin: 0 0 18px; }

/* Replacé après la règle ci-dessus : le contenu saisi dans [titre]/[sstitre] contient
   souvent un <p> interne, qui sinon récupère la couleur/taille du corps de texte au
   lieu de celle voulue pour le titre (même spécificité, l'ordre dans la feuille tranche) */
.article-corps-sstitre, .article-corps-sstitre p{ color: var(--am-cyan) !important; font-size: 15px !important; }
.article-corps-titre, .article-corps-titre p{ color: var(--am-pink) !important; font-size: 17px !important; }

/* ---- Contenu éditorial (blocs "cellule" saisis en base pour les univers / fiches / articles) ---- */
.titres{ font-family: var(--am-font-head); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--am-bg); padding: 10px 14px; background: linear-gradient(90deg, var(--am-cyan), var(--am-pink)); clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%, 0 calc(100% - 16px)); }

.cellule,.article-cellule{ min-height: 10px; background: var(--am-surface); border: 1px solid var(--am-border); color: var(--am-text-body); font-size: 13px; padding: 16px; line-height: 1.7 !important; word-wrap: break-word; }
.cellule img{ max-width: 100%; }

.carte-cellule{ border: 1px solid var(--am-border); background: var(--am-surface); display: flex; overflow: hidden; padding: 0; margin-top: 10px; }
.carte-image{ width: 150px; object-fit: cover; flex-shrink: 0; }
h2.carte-titre, .carte-titre{ margin: 0 0 6px; font-family: var(--am-font-head); font-weight: 600; font-size: 18px; color: #fff; }
.carte-categories{ display: inline-block; background: var(--am-bg-alt); border: 1px solid var(--am-border-soft); padding: 3px 8px; color: var(--am-text-muted); font-size: 13px; }

.bouton, .carte-bouton, a.carte-bouton{ background: var(--am-cyan); color: #fff; text-decoration: none; padding: 8px 16px; display: inline-block; font-family: var(--am-font-head); font-weight: 700; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: none; transition: 0.2s ease; }
.bouton:hover, .carte-bouton:hover, a.carte-bouton:hover{ background: var(--am-pink); color: #fff; transform: translateY(-2px); }

.grille-200{ display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.couverture-150{ box-shadow: none; height: 200px; width: 150px; object-fit: cover; border: 1px solid var(--am-border); }

.chronologie-scroll{
	position: relative;
	overflow: hidden;
	cursor: grab;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
	mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.chronologie-scroll.is-glisse{ cursor: grabbing; }
.chronologie-lignedetemps{ position: absolute; bottom: 10px; left: 36px; height: 3px; background: var(--am-border-soft); will-change: transform; }
.chronologie-evenement-gauche{ position: absolute; bottom: 10px; border-left: 2px solid var(--am-border-soft); padding-left: 7px; transform: translate(5px, 0); font-size: 13px; line-height: 1.5; color: var(--am-text-body); }
.chronologie-evenement-droite{ position: absolute; bottom: 10px; text-align: right; border-right: 2px solid var(--am-border-soft); padding-right: 7px; transform: translate(7px, 0); font-size: 13px; line-height: 1.5; color: var(--am-text-body); }
.chronologie-point{ position: absolute; top: -4px; height: 8px; width: 8px; border-radius: 50%; background: var(--am-cyan); border: 2px solid var(--am-bg); transition: transform .15s ease, box-shadow .15s ease; }
.chronologie-lignedetemps img{ display: block; }
.chronologie-point:hover{ transform: scale(1.6); box-shadow: 0 0 10px var(--am-cyan); }

/* ---- Formulaires ---- */
.am-champ{ display: flex; flex-direction: column; gap: 8px; }
.am-champ label{ font-family: var(--am-font-head); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--am-text-muted); }
.am-champ input, .am-champ textarea{ width: 100%; background: var(--am-surface); border: 1px solid var(--am-border-soft); color: var(--am-text); font-family: var(--am-font-body); font-size: 14px; padding: 12px 14px; box-sizing: border-box; transition: border-color 0.15s ease; }
.am-champ input:focus, .am-champ textarea:focus{ outline: none; border-color: var(--am-cyan); }

/* ---- Footer ---- */
.am-pied{ padding: 24px 28px 36px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--am-font-head); font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--am-text-dim); border-top: 1px solid var(--am-border); }
.am-pied a{ color: var(--am-text-dim); }
.am-pied-liens{ display: flex; gap: 20px; }

/* ---- Mise en page / utilitaires ---- */
.am-section--accent{ padding: 44px 28px; background: var(--am-bg-alt); border-top: 1px solid var(--am-border); border-bottom: 1px solid var(--am-border); }

.am-heros{ display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: 32px 28px; border-bottom: 1px solid var(--am-border); background: linear-gradient(120deg, rgba(53,224,224,0.06), rgba(255,47,110,0.05)); }

.am-etroit{ max-width: 900px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.am-moyen{ max-width: 900px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }

.am-flex{ display: flex; }
.am-flex-col{ display: flex; flex-direction: column; }
.am-items-center{ align-items: center; }
.am-items-start{ align-items: flex-start; }
.am-justify-between{ justify-content: space-between; }
.am-wrap{ flex-wrap: wrap; }
.am-flex-1{ flex: 1; }

.am-gap-1{ gap: 8px; } .am-gap-2{ gap: 10px; } .am-gap-3{ gap: 14px; } .am-gap-4{ gap: 16px; } .am-gap-5{ gap: 20px; } .am-gap-6{ gap: 48px; }

.am-pt-1{ padding-top: 8px; } .am-pt-2{ padding-top: 16px; } .am-pt-3{ padding-top: 28px; } .am-pt-4{ padding-top: 32px; } .am-pt-5{ padding-top: 40px; } .am-pt-6{ padding-top: 48px; } .am-pt-7{ padding-top: 60px; }
.am-pb-1{ padding-bottom: 8px; } .am-pb-2{ padding-bottom: 16px; } .am-pb-3{ padding-bottom: 24px; } .am-pb-4{ padding-bottom: 40px; } .am-pb-5{ padding-bottom: 48px; } .am-pb-6{ padding-bottom: 56px; }
.am-px{ padding-left: 28px; padding-right: 28px; }
.am-py-1{ padding-top: 8px; padding-bottom: 8px; }

.am-mt-1{ margin-top: 6px; } .am-mt-2{ margin-top: 16px; } .am-mt-3{ margin-top: 24px; }
.am-m0{ margin: 0; }
.am-pad-confirm{ padding: 60px 28px; }
.am-mb-1{ margin-bottom: 6px; } .am-mb-2{ margin-bottom: 8px; } .am-mb-3{ margin-bottom: 16px; } .am-mb-4{ margin-bottom: 20px; } .am-mb-5{ margin-bottom: 28px; }

.am-max-62{ max-width: 62ch; }
.am-max-20{ max-width: 20ch; }
.am-max-60{ max-width: 60ch; }
.am-min-200{ min-width: 200px; }
.am-min-280{ min-width: 280px; }
.am-max-420{ max-width: 420px; }
.am-basis-full{ flex-basis: 100%; }
.am-self-start{ align-self: flex-start; }
.am-w-full{ width: 100%; }
.am-block{ display: block; }
.am-relative{ position: relative; }
.am-round-full{ border-radius: 50%; }
.am-round{ border-radius: 4px; }
.am-cover{ object-fit: cover; display: block; }
.am-text-center{ text-align: center; }
.am-capitalize{ text-transform: capitalize; }
.am-ls-sm{ letter-spacing: 0.5px; }
.am-uppercase-ls{ letter-spacing: 1px; text-transform: uppercase; }
.am-carte--pad{ padding: 24px; }
.am-pad-heros{ padding: 48px 28px; }

.am-fs-13{ font-size: 13px; } .am-fs-14{ font-size: 14px; } .am-fs-15{ font-size: 15px; } .am-fs-16{ font-size: 16px; } .am-fs-20{ font-size: 20px; }
.am-lh{ line-height: 1.6; }
.am-lh-loose{ line-height: 1.65; }
.am-text-muted{ color: var(--am-text-muted); }
.am-text-body{ color: var(--am-text-body); }
.am-text-cyan{ color: var(--am-cyan); }
.am-text-pink{ color: var(--am-pink); }
.am-text-white{ color: #fff; }
.am-font-head{ font-family: var(--am-font-head); }

.am-avatar-40{ width: 40px; height: 40px; }
.am-avatar-52{ width: 52px; height: 52px; }
.am-flex-shrink-0{ flex-shrink: 0; }

.am-h-130{ height: 130px; } .am-h-180{ height: 180px; } .am-h-200{ height: 200px; } .am-h-210{ height: 210px; }
.am-h-340{ height: 340px; } .am-h-360{ height: 360px; } .am-h-380{ height: 380px; }
.am-w-280{ width: 280px; }
.am-max-760{ max-width: 760px; }

.am-boite{ background: var(--am-surface); border: 1px solid var(--am-border); padding: 20px; }
.am-boite--cyan{ border-color: var(--am-cyan); }
.am-boite--rose{ border-color: var(--am-pink); }

.am-bar{ position: relative; height: 20px; background: var(--am-border); border-radius: 3px; overflow: hidden; }
.am-bar-fill{ position: absolute; inset: 0; background: linear-gradient(90deg, var(--am-cyan), var(--am-pink)); }
.am-bar-label{ position: relative; height: 100%; display: flex; align-items: center; padding-left: 10px; font-family: var(--am-font-head); font-size: 12px; font-weight: 700; color: var(--am-bg); }

.am-pagination{ display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.am-pagination-lien{ padding: 4px 10px; border: 1px solid var(--am-border); border-radius: 3px; color: var(--am-text-muted); }
.am-pagination-lien:hover{ border-color: var(--am-cyan); color: var(--am-cyan); }
.am-pagination-lien.is-active{ border-color: var(--am-pink); color: var(--am-pink); }

.am-partage{ display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.am-partage-lien{ font-family: inherit; font-size: 13px; background: var(--am-surface); border: 1px solid var(--am-border-soft); color: var(--am-text-muted); padding: 6px 14px; cursor: pointer; transition: border-color .15s ease, color .15s ease; }
.am-partage-lien:hover{ border-color: var(--am-cyan); color: var(--am-cyan); }
.am-partage-lien.is-copie{ border-color: var(--am-lime); color: var(--am-lime); }

.am-navigation-burger{ display: none; background: none; border: 1px solid var(--am-border-soft); color: var(--am-text); padding: 8px; cursor: pointer; }
.am-navigation-burger:hover{ border-color: var(--am-cyan); color: var(--am-cyan); }

@media (max-width: 780px){
	.am-navigation{ flex-wrap: wrap; position: relative; }
	.am-navigation-burger{ display: flex; order: 2; margin-left: auto; }
	.am-navigation-liens{
		display: none;
		order: 4;
		flex-basis: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		background: var(--am-surface);
		border: 1px solid var(--am-border);
		margin-top: 16px;
		padding: 8px;
	}
	.am-navigation-liens.is-ouvert{ display: flex; }
	.am-navigation-liens .am-navigation-lien{ display: block; width: 100%; padding: 10px 8px; }
	.am-univers-menu-boite{ width: 100%; }
	.am-univers-menu{ position: static; opacity: 1; transform: none; pointer-events: auto; display: none; border: none; padding: 0 0 0 16px; margin-top: 4px; }
	.am-univers-menu-boite.is-ouvert .am-univers-menu{ display: block; }
	.am-navigation-compte, .am-bouton--rose[aria-label="Connexion"]{ order: 3; }
	.am-grille{ grid-template-columns: 1fr; }
	.am-grille--2{ grid-template-columns: 1fr; }
	.carte-cellule{ flex-direction: column; }
	.carte-image{ width: 100%; height: 180px; }
}

@media (max-width: 480px){
	.am-bouton-texte{ display: none; }
	.am-bouton-icone{ display: inline-block; }
}
