:root{
  --bg:#fffaf0;
  --paper:#fff6df;           /* fond central */
  --ink:#1f2328;
  --muted:#545c66;
  --teal:#0b4f57;
  --teal-2:#083c42;
  --card:#fffaf0;
  --line:rgba(0,0,0,.12);
  --danger:#8b2b2b;
  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.10);
  --shadow2:0 6px 18px rgba(0,0,0,.10);
  --max:1000px;
  --ticket-w:1160px;
}

*{box-sizing:border-box}

/* =============================
   BASE
   ============================= */
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  line-height:1.25;
  background-color:var(--bg);
  background-image:none;
  padding-top:72px; /* header fixed */
}

body.scrolled header{
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/* =============================
   FOND TICKET
   ============================= */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;

  background-image:url("/Maquette01/fondticket2.png");
  background-repeat:repeat-y;
  background-position:center top;
  background-size:var(--ticket-w) auto;

  opacity:.35;
  filter:saturate(.92) contrast(.96);
}

/* réduction progressive */
@media (max-width:1080px){
  body::before{ background-size:105vw auto; }
}
@media (max-width:520px){
  body::before{ background-size:105vw auto; }
}

/* =============================
   FOND PAPIER – TRÈS LÉGER
   ============================= */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;

  background:
    radial-gradient(circle at 25% 15%, rgba(255,255,255,0.22), transparent 55%),
    radial-gradient(circle at 75% 35%, rgba(0,0,0,0.035), transparent 60%),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.010) 0px,
      rgba(0,0,0,0.010) 1px,
      transparent 3px,
      transparent 8px
    );

  opacity:0.18;
}

/* =============================
   WRAP
   ============================= */
.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:24px;
  position:relative;
  z-index:1;

  /* plaque de lisibilité */
  background:rgba(255,255,255,0.10);
  border-radius:var(--radius);
}

/* =============================
   HEADER  (✅ MENU À GAUCHE + CTA À DROITE)
   ============================= */
header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;

  /* légère transparence + flou discret */
  background:rgba(250,248,243,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-bottom:1px solid rgba(0,0,0,0.08);
  transition:box-shadow .18s ease, background-color .18s ease;
}

.nav{
  display:flex;
  align-items:center;

  /* ✅ IMPORTANT : on n’étale plus avec space-between */
  justify-content:flex-start;

  gap:16px;
  padding:14px 24px;
  max-width:var(--max);
  margin:0 auto;
}

/* Logo */
.brand{
  display:flex;
  align-items:center;
  gap:10px;

  /* ✅ petit espace logo -> menu (ajuste ici si tu veux encore plus serré) */
  margin-right:4px;
}

.logo-ci{
  height:38px;
  width:auto;
  display:block;
}

/* ✅ clé : pousse les CTA tout à droite */
header .nav > nav{
  margin-right:auto;
}

/* Logo = même hover que les liens du menu */
header .brand{
  display:flex;
  align-items:center;
  padding:1px 1px;          /* même respiration que nav a */
  border-radius:10px;
  text-decoration:none;
}

/* Burger = même hover que le menu */
header .burger{
  transition:background-color .12s ease;
}

header .burger:hover,
header .burger:focus-visible{
  background:rgba(2,66,76,.08); /* même hover que nav a et .brand */
}


header .brand:hover,
header .brand:focus-visible{
  background:rgba(2,66,76,.08); /* exactement comme nav a:hover */
}



/* Menu desktop */
nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:14px;
  align-items:center;
}

nav a{
  white-space:nowrap;
  padding:8px 10px;
  border-radius:10px;
  font-weight:800;
  opacity:.85;
}

/* CTA */
.nav-cta{
  display:flex;
  gap:10px;
  align-items:center;
}

/* =============================
   BOUTONS
   ============================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 14px;
  font-weight:900;
  border:1px solid rgba(0,0,0,.12);
  cursor:pointer;
  white-space:nowrap;
  transition:transform .05s ease;
}
.btn:active{transform:translateY(1px)}

.btn-primary{
  background:var(--teal);
  color:var(--bg);
  border-color:rgba(255,255,255,.18);
  box-shadow:var(--shadow2)
}
.btn-ghost{
  background:transparent;
  color:var(--teal);
  border:1px dashed rgba(11,79,87,.35);
}

/* Disabled : garde le hover (tooltip) */
a.disabled{
  opacity:.55;
  cursor:help;
}
a.disabled small{font-weight:800; opacity:.9}

/* Bouton primaire : texte blanc quoi qu'il arrive */
a.btn-primary,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:focus-visible{
  color:var(--bg);
  text-decoration:none;
  border-bottom:none;
}

/* Tous les boutons : jamais soulignés */
a.btn,
a.btn:visited,
a.btn:hover,
a.btn:focus-visible{
  text-decoration:none;
  border-bottom:none;
}

/* =============================
   TICKET SVG
   ============================= */
.ticket-ico{
  display:inline-flex;
  line-height:0;
  vertical-align:-3px;
}
.ticket-ico svg{
  width:37px;
  height:auto;
  display:block;
}
.ticket-ico--sm svg{
  width:33px;
  height:auto;
  display:block;
}

/* =============================
   HEADER INTRO
   ============================= */
.top{
  margin:22px 0 16px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
}

.titleblock h2{
  margin:0;
  font-size:34px;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:var(--teal);
  line-height:1.05;
}

.titleblock p{
  margin:8px 0 0;
  color:var(--muted);
  font-weight:700;
  line-height:1.4;
}

.small{font-size:12px}

/* =============================
   LAYOUT
   ============================= */
.layout{display:grid; grid-template-columns:1fr; gap:18px; align-items:start;}
.layout.has-cal{grid-template-columns:1fr 1.2fr;}

.card{
  background:rgba(255,250,238,.85);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  padding:18px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.05),
    0 6px 18px rgba(0,0,0,0.06);
}

/* =============================
   CALENDRIER
   ============================= */
.cal-head{display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:12px}
.cal-head h3{margin:0; font-size:16px; letter-spacing:.06em; text-transform:uppercase; color:var(--teal)}
.cal-nav{display:flex; gap:10px}
.cal-btn{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(11,79,87,.25);
  background:transparent;
  color:var(--teal);
  font-weight:950;
  cursor:pointer;
}

.calendar{
  border:1px solid rgba(0,0,0,.10);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.45);
}

.dow{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  background:rgba(11,79,87,.06);
  border-bottom:1px solid rgba(0,0,0,.10);
}

.dow div{
  padding:10px 8px;
  font-weight:900;
  color:var(--teal);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.grid{display:grid; grid-template-columns:repeat(7,1fr)}

.day{
  min-height:64px;
  padding:10px 8px;
  border-right:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
  position:relative;
}
.day:nth-child(7n){border-right:none}

.num{font-weight:950; opacity:.9}
.mutednum{opacity:.35}

.event-dot{
  margin-top:8px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 8px;
  border-radius:999px;
  background:rgba(11,79,87,.10);
  border:1px solid rgba(11,79,87,.22);
  font-size:12px;
  font-weight:900;
  color:var(--teal);
  max-width:100%;
}
.event-dot b{font-weight:1000}

/* =============================
   LISTE
   ============================= */
.list-head{display:flex; justify-content:space-between; align-items:flex-end; gap:10px; margin-bottom:12px}
.list-head h3{margin:0; font-size:16px; letter-spacing:.06em; text-transform:uppercase; color:var(--teal)}

.event-row{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:14px;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.45);
  margin-bottom:12px;
}

.poster{
  position:relative;
  width:110px;
  aspect-ratio:297 / 420;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(11,79,87,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:950;
  color:var(--teal);
  padding:10px;
  line-height:1.2;
}

.poster img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.event-body{display:flex; flex-direction:column; gap:10px; min-width:0}
.event-top{display:flex; gap:12px; align-items:flex-start; justify-content:space-between}
.event-top .left{min-width:0}

.date{
  font-weight:1000;
  letter-spacing:.02em;
  color:var(--teal);
  text-transform:uppercase;
  font-size:12px;
  opacity:.95;
}

.date-event{
  font-weight:1000;
  letter-spacing:.02em;
  color:var(--teal);
  text-transform:uppercase;
  font-size:24px;
  opacity:.95;
}

.ename{margin:6px 0 0; font-size:20px; font-weight:1000; line-height:1.1}
.ename-event{margin:6px 0 0; font-size:55px; text-align:center; font-weight:1000; line-height:1.1}

.badges{display:flex; gap:8px; flex-wrap:wrap; align-items:center}

.badge{
  font-size:12px;
  font-weight:950;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.6);
  white-space:nowrap;
}
.badge.type{border-color:rgba(11,79,87,.25); color:var(--teal); background:rgba(11,79,87,.08)}
.badge.price{border-color:rgba(0,0,0,.18)}

.desc{
  color:var(--muted);
  font-weight:700;
  line-height:1.55;
  margin:0 0 1em;
  max-width:68ch;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
}

.info-event{
  color:var(--muted);
  font-weight:700;
  line-height:1.55;
  margin:0 0 -0.6em;
  max-width:68ch;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
}

.event-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto}

.subline{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-weight:600;
  font-style:italic;
  opacity:.9;
}

/* =============================
   FOOTER
   ============================= */
footer{
  margin-top:18px;
  border-top:1px solid var(--line);
  padding:16px 0 8px;
  color:var(--muted);
  font-weight:700;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

/* =============================
   LIENS : contenu seulement
   ============================= */
main a:not(.btn),
.wrap a:not(.btn),
footer a:not(.btn){
  color:#8b1e3f;
  text-decoration:none;
  border-bottom:1px solid rgba(139,30,63,.3);
}
main a:not(.btn):hover,
.wrap a:not(.btn):hover,
footer a:not(.btn):hover{
  color:#b12a50;
  border-bottom-color:#b12a50;
}

/* =============================
   MENU HEADER : pétrole (prioritaire)
   ============================= */
header .nav nav a,
header .nav nav a:visited{
  color:#02424cff;
  border-bottom:none;
  text-decoration:none;
}
header .nav nav a:hover,
header .nav nav a:focus-visible{
  color:#02424cff;
  border-bottom:none;
  background:rgba(2,66,76,.08);
  opacity:1;
}

/* Boutons header : pétrole */
header .btn,
header .btn:visited{
  color:#02424cff;
  border-bottom:none;
  text-decoration:none;
}

/* Active */
nav a.is-active, .mobile-menu a.is-active{
  background:rgba(11,79,87,.10);
  opacity:1;
}

/* =============================
   BURGER + MENU MOBILE
   ============================= */
.burger{
  display:none;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.45);
  border-radius:14px;
  width:46px;
  height:44px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  box-shadow:0 1px 2px rgba(0,0,0,.06);
}

.burger-lines{
  position:relative;
  width:20px;
  height:2px;
  background:var(--teal);
  display:block;
  border-radius:2px;
}
.burger-lines::before,
.burger-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background:var(--teal);
  border-radius:2px;
}
.burger-lines::before{top:-6px}
.burger-lines::after{top:6px}

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:1000;   /* > header */
  background:rgba(0,0,0,.20);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  padding:calc(16px + env(safe-area-inset-top)) 16px 16px;

  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
.mobile-menu.is-open{
  opacity:1;
  pointer-events:auto;
}
html.menu-open,
html.menu-open body{overflow:hidden}

.mobile-menu-inner{
  max-width:520px;
  margin:0 auto;
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  box-shadow:
    0 10px 32px rgba(0,0,0,.16),
    0 1px 0 rgba(255,255,255,.6) inset;
  padding:16px;
  transform:translateY(8px);
  transition:transform .18s ease;

  /* légère transparence */
  background:rgba(250,248,243,.96);
}
.mobile-menu.is-open .mobile-menu-inner{
  transform:translateY(0);
}

.mobile-menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:4px 2px 10px;
  border-bottom:1px solid rgba(0,0,0,.08);
  margin-bottom:12px;
  color:var(--teal);
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:950;
  font-size:12px;
}

.burger.close{
  display:inline-flex;
  width:40px;
  height:38px;
}

.m-link{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  font-weight:950;
  color:var(--teal);
  border:1px solid rgba(11,79,87,.12);
  background:rgba(255,255,255,.35);
  margin-bottom:10px;
  text-decoration:none;
}
.m-link:hover{background:rgba(11,79,87,.06)}

.mobile-cta{
  margin-top:12px;
  display:grid;
  gap:10px;
}

.btn-stack{
  white-space:normal;
  flex-wrap:wrap;
  line-height:1.05;
}
.btn-stack small{
  display:block;
  width:100%;
  text-align:center;
  font-size:11px;
  font-weight:850;
  opacity:.7;
  margin-top:2px;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width:980px){
  nav ul{display:none}
  .burger{display:inline-flex}
  .nav-cta{display:none}
  .layout{grid-template-columns:1fr}
  .layout.has-cal{grid-template-columns:1fr}
  #calCard{order:2}
  .poster{width:120px}
  .event-row{grid-template-columns:120px 1fr}
}

@media (max-width:520px){
  .titleblock h2{font-size:28px}
  .event-row{grid-template-columns:90px 1fr}
  .poster{width:90px}
  .ename{font-size:18px}
  .day{min-height:56px}
}

/* =============================
   PAGES DÉTAIL + AFFICHE IMMERSIVE
   ============================= */
.event-detail .desc{max-width:none}

.posterevent{
  width:100%;
  margin:24px 0;
}
.posterevent img{
  width:100%;
  height:auto;
  max-height:91vh;
  object-fit:contain;
  display:block;
  border:none;
  border-radius:0;
}
@media (min-width:1400px){
  .posterevent img{max-height:78vh}
}

.poster-open{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  margin:0;
  width:100%;
  cursor:zoom-in;
}
.poster-open:focus-visible{
  outline:3px solid rgba(11,79,87,.35);
  outline-offset:6px;
  border-radius:12px;
}

html.no-scroll, html.no-scroll body{overflow:hidden;}

.poster-modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
}
.poster-modal.is-open{display:flex;}

.poster-modal__img{
  max-width:96vw;
  max-height:96vh;
  width:auto;
  height:auto;
  display:block;
  object-fit:contain;
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}

.poster-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.poster-modal__close:hover{background:rgba(0,0,0,.55);}

/* =============================
   ACCESSIBILITÉ
   ============================= */
@media (prefers-reduced-motion: reduce){
  header, .mobile-menu, .mobile-menu-inner{
    transition:none !important;
  }
}




/* Carte événement = conteneur du fond flouté */
.event-row{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* fond flouté très léger */
.event-row::before{
  content:"";
  position:absolute;
  inset:-40px;

  background-image: var(--poster, none);
  background-repeat: repeat;
  background-size: 600px 300px;   /* taille des “tuiles” */
  background-position: center;

  filter:
    blur(25px)
    saturate(3)
    brightness(1.05);

  opacity: .15;                   /* très léger */
  transform: scale(1.2);
  z-index: 0;

   pointer-events: none; /* important */
}

/* Base: l'image reste normale */
.poster-open img{
  display:block;
  width:100%;
  height:auto;
  border-radius:12px;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Lightbox CSS (sans JS) : quand le bouton est focus */
.posterevent.poster--detail{
  position: relative;
}

/* voile derrière */
.posterevent.poster--detail:focus-within::after{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999;
  pointer-events: none; /* le clic dehors enlèvera souvent le focus en cliquant ailleurs */
}

/* image “en grand” au-dessus de tout */
.posterevent.poster--detail:focus-within .poster-open img{
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: min(92vw, 980px);
  max-height: 92vh;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  z-index: 1000;
  cursor: zoom-out;
}

/* Option: un micro effet au survol quand c'est “petit” */
.poster-open:hover img{
  transform: translateZ(0) scale(1.01);
}

/* Conteneur institutionnel large */
.desk-wide{
  max-width: none;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0;
}

/* carte pleine largeur dans desk-wide */
.desk-wide .card{
  width: 100%;
  max-width: none;
}

/* Pages institutionnelles */
.desk-wide {
  max-width: none;
  width: automin(900px, calc(100% - 32px));
  margin: 0 auto;
}

/* La carte prend toute la largeur du conteneur */
.desk-wide .card{
  width: 100%;
  max-width: none;
}

/* IMPORTANT : on neutralise la limite 68ch des paragraphes */
.desk-wide .desc{
  max-width: 90ch;        /* ou 90ch si tu veux limiter */
  /* optionnel : meilleure lecture institutionnelle */
  text-align: left;       /* évite les rivières si ton justify est agressif */
}


/* NOTE MAIRIE — sticky léger */
/* NOTE MAIRIE — sticky institutionnel (léger) */
/* NOTE — style post-it */
#note-mairie.note-institution{
  background: #FFF6BF;              /* jaune post-it doux */
  border: 1px solid rgba(120, 86, 0, .20);
  border-left: 6px solid #D6A400;   /* accent doré */
  box-shadow: 0 10px 20px rgba(120, 86, 0, .12);
}

#note-mairie.note-institution .note-institution__tag{
  color: #6B4E00;
}

#note-mairie.note-institution .note-institution__meta{
  color: rgba(107, 78, 0, .85);
}

#note-mairie.note-institution .note-institution__text{
  color: #3D2C00;
}

#note-mairie.note-institution .note-institution__close{
  border: 1px solid rgba(120, 86, 0, .25);
  background: rgba(255,255,255,.55);
  color: #6B4E00;
}

#note-mairie.note-institution{
  transform: rotate(-0.25deg);
}


/* masquage temporaire */
.note-institution.is-hidden{ display:none; }


/* NOTE — post-it premium */
#note-mairie.note-institution{
  position: sticky;
  top: 78px;
  z-index: 25;

  margin: 0 0 14px;
  padding: 10px 16px;
  border-radius: 14px;

  /* jaune post-it moins "surbrillance" */
  background: linear-gradient(180deg, #FFF9D6 0%, #FFF3B8 100%);
  border: 1px solid rgba(120, 86, 0, .18);
  border-left: 7px solid #D6A400;

  /* ombre papier */
  box-shadow:
    0 10px 18px rgba(120, 86, 0, .10),
    0 2px 0 rgba(255,255,255,.55) inset;
}


/* NOTE MAIRIE — head robuste : tag à gauche, meta centrée, X à droite */


#note-mairie.note-institution .note-institution__head{
  position: relative !important;
  padding: .55rem 3.1rem .25rem 1rem !important; /* espace gauche + réserve pour le X */
  min-height: 2.2rem !important;
}

/* Tag "NOTE DE CADRAGE" : style + placement */
#note-mairie.note-institution .note-institution__tag{
  position: absolute !important;
  top: .55rem !important;
  left: 1rem !important;

  font-size: .75rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  color: #6B4E00 !important;

  margin: 0 !important;
  line-height: 1 !important;
}

/* Meta centrée : style + placement */
#note-mairie.note-institution .note-institution__meta{
  display: block !important;
  width: 100% !important;
  text-align: center !important;

  font-size: .82rem !important;
  font-weight: 700 !important;
  color: rgba(107, 78, 0, .85) !important;
  line-height: 1.25 !important;

  margin: 0 !important;
}

/* Bouton X */
#note-mairie.note-institution .note-institution__close{
  position: absolute !important;
  top: .45rem !important;
  right: .55rem !important;
}





/* texte moins noir */
#note-mairie.note-institution .note-institution__text{
  margin: .25rem 0;
  color: #3D2C00;
  line-height: 1.45;
  font-size: .93rem;
}

/* Liste : pas d'espace avant / après */
#note-mairie.note-institution .note-institution__list{
  margin: .15rem 0 .25rem 1.1rem; /* top | right | bottom | left */
  padding-left: 1rem;
}

/* Items de liste : serrés mais lisibles */
#note-mairie.note-institution .note-institution__list li{
  margin-bottom: .15rem;
  line-height: 1.35;
}

/* bouton fermer discret */
#note-mairie.note-institution .note-institution__close{
  appearance: none;
  width: 28px;
  height: 26px;
  border-radius: 9px;
  border: 1px solid rgba(120, 86, 0, .20);
  background: rgba(255,255,255,.55);
  color: #6B4E00;
  cursor: pointer;
}
#note-mairie.note-institution .note-institution__close:hover{
  background: rgba(255,255,255,.75);
}
#note-mairie.note-institution{
  transform: rotate(-0.15deg);
}
