/* La Smala Pradel — feuille de style commune */

:root {
  --cream: #f8f6f1;
  --cream-deep: #ede8db;
  --paper: #fffdf8;
  --ink: #2f3e46;
  --ink-soft: #5a6b72;
  --brown: #8b7355;
  --brown-deep: #2f3e46;
  --terracotta: #b8860b;
  --terracotta-deep: #8b6914;
  --gold: #b8860b;
  --line: #d4c8b0;
  --shadow: 0 8px 24px rgba(47, 62, 70, 0.12);
  --serif: "Playfair Display", Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: var(--terracotta-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}

.wrap-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}


/* ---- entete ---- */

header.site-header {
  background: var(--brown-deep);
  color: var(--cream);
  border-bottom: 4px solid var(--gold);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 48px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}


.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--cream);
  line-height: 1.2;
}

.brand .seal {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--cream);
  white-space: nowrap;
}

.brand small {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  white-space: nowrap;
  letter-spacing: 0.6px;
}

.brand::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 16px;
  opacity: 0.8;
}

nav.main-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 40px;
  width: 100%;
  max-width: 1200px;
  font-family: var(--sans);
  font-weight: 600;
  text-align: left;
}

.nav-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.nav-group-label {
  font-family: var(--serif, Georgia, serif);
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.35);
  width: 100%;
}

.nav-group-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: flex-start;
}

.nav-group-annexes .nav-group-label {
  opacity: 0.85;
}

.nav-group-annexes .nav-group-links {
  opacity: 0.75;
  font-size: 12.5px;
}

nav.main-nav a {
  color: var(--cream);
  opacity: 0.88;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.4px;
  font-size: 13.5px;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  opacity: 1;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}


.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 8px 12px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
}

/* ---- fil d'ariane ---- */

.breadcrumb {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 14px 0 0;
}

/* ---- hero ---- */

.hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  padding: 80px 0 64px;
  text-align: center;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--brown-deep);
  letter-spacing: 0.4px;
  font-weight: 700;
}

.hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

.hero .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 24px auto 24px;
  line-height: 1.55;
  font-weight: 400;
}

.hero p.lede {
  max-width: 720px;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 auto;
  text-align: left;
}

.page-hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 44px;
  text-align: center;
}

.page-hero .kicker {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--terracotta-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  font-family: var(--sans);
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--brown-deep);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.page-hero .dates {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}


.status-pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 11px;
  border-radius: 999px;
  margin-left: 10px;
  vertical-align: middle;
  line-height: 1.4;
}

.status-pill.ready { background: #e4efe0; color: #3c6b2f; }
.status-pill.soon { background: #f3e3d0; color: var(--terracotta-deep); }

/* ---- sections generales ---- */

main { padding: 56px 0 88px; }

section + section { margin-top: 60px; }

h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--brown-deep);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin: 0 0 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.2px;
}

h3 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--brown-deep);
  margin: 32px 0 12px;
  line-height: 1.3;
  font-weight: 700;
}

h3[id] { scroll-margin-top: 28px; }

.section-toc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: -6px 0 28px;
  line-height: 1.6;
}

.section-toc a {
  font-weight: 600;
  color: var(--terracotta-deep);
  text-decoration: none;
  border-bottom: 1px dotted var(--line);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.section-toc a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

h4 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--brown-deep);
  margin: 24px 0 8px;
  line-height: 1.35;
  font-weight: 700;
}

p { margin: 0 0 18px; }

article.chapitre p { margin: 0 0 18px; }

article.chapitre { max-width: 720px; margin: 0 auto; }

/* ---- chronologie ---- */
.chronologie {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  border-left: 2px solid var(--line);
}
.chronologie li {
  position: relative;
  padding: 6px 0 18px 24px;
}
.chronologie li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--cream);
}
.chronologie .date {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--brown-deep);
  font-size: 15.5px;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 2px;
}
.chronologie .fait {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.chronologie li.inconnue::before {
  background: transparent;
  border: 2px dashed var(--terracotta-deep);
  box-shadow: 0 0 0 3px var(--cream);
}
.chronologie .date-inconnue {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #f3e3d0;
  color: var(--terracotta-deep);
  margin-right: 8px;
  vertical-align: middle;
}



.epigraphe {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--brown);
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 22px;
  margin: 0 0 32px;
}

blockquote.citation {
  font-family: var(--serif);
  font-style: italic;
  background: var(--paper);
  border-left: 4px solid var(--terracotta);
  padding: 16px 22px;
  margin: 22px 0;
  box-shadow: var(--shadow);
  font-size: 16.5px;
  color: var(--ink);
}

blockquote.citation cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
}

.source-line {
  font-size: 14px;
  color: var(--ink-soft);
  border-top: 1px dotted var(--line);
  padding-top: 10px;
  margin-top: 26px;
}

.source-line strong { color: var(--brown); }

/* ---- cartes image source ---- */

figure.source-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px;
  margin: 26px 0;
  max-width: 460px;
}

figure.source-card img {
  border: 1px solid #cfc0a2;
  cursor: zoom-in;
}

figure.source-card figcaption {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 10px 4px 2px;
  line-height: 1.5;
  text-align: center;
}

figure.source-card figcaption a { font-weight: 600; }

.figure-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.figure-row figure.source-card { flex: 1 1 320px; }
.figure-row figure.album-inline { flex: 1 1 320px; }

.illustration-reservee {
  border: 2px dashed var(--line);
  background: var(--cream-deep);
  padding: 22px;
  margin: 26px 0;
  max-width: 460px;
  font-size: 14px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
}

.illustration-reservee b {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11.5px;
  color: var(--terracotta-deep);
  margin-bottom: 6px;
}

/* ---- grilles de cartes ---- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin: 28px 0;
  align-items: stretch;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(43, 33, 24, 0.15);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 19px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.card h3 .status-pill { margin-left: 0; }

.card .meta {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-style: italic;
}

.card p { font-size: 15px; margin: 0 0 14px; flex-grow: 1; line-height: 1.55; }

.card .go {
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}

a.card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.card-link:hover { text-decoration: none; }
a.card-link .go { color: var(--gold); }
a.card-link:hover .go { text-decoration: underline; }



.card.grand-format {
  border-top: 4px solid var(--terracotta);
}

.card.child {
  border-top: 4px solid var(--gold);
}

.card.child .num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
}

/* ---- tableau source recap ---- */

table.source-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 34px;
  font-size: 14.5px;
}

table.source-table th, table.source-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

table.source-table th {
  font-family: var(--serif);
  color: var(--brown-deep);
  background: var(--cream-deep);
}

table.source-table tr:hover td { background: #fbf6ea; }

/* ---- liens ressources ---- */

.resource-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  margin-bottom: 16px;
}

.resource-card h3 { margin: 0 0 6px; font-size: 18px; }
.resource-card .url { font-size: 13px; color: var(--ink-soft); word-break: break-all; }
.resource-card p { margin: 8px 0 0; font-size: 15px; }

/* ---- pied de page ---- */

footer.site-footer {
  background: var(--brown-deep);
  color: var(--cream);
  padding: 30px 0;
  margin-top: 60px;
  font-size: 13.5px;
}

footer.site-footer a { color: var(--gold); }
footer.site-footer .wrap-wide { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---- zoom sur toutes les images ---- */

.zoomable {
  cursor: zoom-in;
  transition: opacity 0.15s ease;
}
.zoomable:hover {
  opacity: 0.92;
}

.zoomable-via-button {
  cursor: pointer;
}

.lb-zoom-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: var(--brown-deep);
  font-size: 17px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.15s, transform 0.15s;
  padding: 0;
}
.lb-zoom-btn:hover {
  opacity: 1;
  transform: scale(1.05);
}
figure:hover .lb-zoom-btn,
.source-card:hover .lb-zoom-btn,
.album-inline:hover .lb-zoom-btn {
  opacity: 0.9;
}

/* ---- lightbox ---- */

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 8, 0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

#lightbox.open { display: flex; }

#lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 4px solid var(--paper);
  cursor: zoom-out;
}

#lightbox .lb-close {
  position: absolute;
  top: 20px; right: 30px;
  color: var(--cream);
  font-size: 40px;
  cursor: pointer;
  font-family: var(--sans);
  line-height: 1;
  padding: 8px;
}

#lightbox .lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  max-width: 80vw;
  text-align: center;
  padding: 0 20px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  #lightbox { padding: 16px; }
  #lightbox .lb-close { top: 10px; right: 16px; font-size: 34px; }
  #lightbox .lb-caption { font-size: 13.5px; bottom: 16px; }
}

/* ---- utilitaires ---- */

.callout {
  background: #f3e3d0;
  border: 1px solid var(--gold);
  padding: 16px 20px;
  font-size: 15px;
  margin: 26px 0;
}

.callout b { color: var(--terracotta-deep); }

.pistes {
  background: var(--cream-deep);
  border-left: 4px solid var(--brown);
  padding: 16px 20px;
  margin: 26px 0;
  font-size: 15px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .header-inner { gap: 18px; padding: 24px 28px 20px; }
  .brand .seal { font-size: 26px; }
  nav.main-nav {
    display: none;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    order: 3;
    align-items: center;
    text-align: center;
  }
  nav.main-nav.open { display: grid; }
  .nav-group { align-items: center; gap: 6px; }
  .nav-group-label { text-align: center; width: auto; }
  .nav-group-links { justify-content: center; }
  nav.main-nav a { padding: 8px 0; }
  .nav-toggle { display: block; order: 2; }
}

@media (max-width: 1024px) {
  .wrap { padding: 0 36px; }
  .wrap-wide { padding: 0 40px; }
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .wrap-wide { padding: 0 20px; }
  .two-col { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 44px; }
  .hero h1 { font-size: 34px; }
  .hero .subtitle { font-size: 17px; }
  .hero p.lede { font-size: 16.5px; }
  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero .kicker { font-size: 11.5px; }
  h2 { font-size: 23px; margin-bottom: 20px; }
  h3 { font-size: 19px; margin-top: 26px; }
  h4 { font-size: 17px; }
  .brand .seal { font-size: 21px; }
  .brand small { font-size: 12.5px; white-space: normal; }
}

/* Index rapide des neuf enfants */
.child-index{margin:28px 0 36px;padding:20px 24px;background:#faf6ed;border:1px solid var(--line);border-left:4px solid var(--gold);border-radius:4px}
.child-index h2{margin:0 0 12px;font-size:20px}
.child-index ol{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:6px 20px}
.child-index li{display:flex;align-items:baseline;gap:8px;padding:4px 0;border-bottom:1px dashed var(--line)}
.child-index a{font-weight:600;text-decoration:none}
.child-index a:hover{text-decoration:underline}
.child-index .n{display:inline-block;min-width:26px;color:var(--gold);font-family:'Playfair Display',serif;font-weight:700}
.child-index .years{margin-left:auto;font-size:13px;color:var(--muted);font-style:italic}

/* Cross-references sur les biographies d'enfant */
.mentions{margin:32px 0 8px;padding:18px 22px;background:#f6f1e6;border:1px solid var(--line);border-left:4px solid var(--terracotta,#b8860b);border-radius:4px}
.mentions h2{margin:0 0 10px;font-size:19px}
.mentions ul{margin:0;padding-left:20px}
.mentions li{margin:4px 0}

/* ---- Portrait "lead" uniforme (toutes pages) ---- */
.portrait-lead {
  float: right;
  width: 220px;
  max-width: 40%;
  margin: 6px 0 18px 28px;
  shape-outside: margin-box;
}
.portrait-lead img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .portrait-lead {
    float: none;
    width: 180px;
    max-width: 60%;
    margin: 0 auto 18px;
  }
}

/* ---- Récit de Jean Pradel : marges & centrage ---- */
.chapitre-jean { max-width: 720px; margin: 0 auto; padding: 8px 0 0; }
.chapitre-jean .portrait-lead {
  float: none;
  width: 240px;
  max-width: 60%;
  margin: 0 auto 26px;
  shape-outside: none;
}

.chapitre-jean .lede {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 24px;
}
.chapitre-jean .lede::first-letter {
  font-family: var(--serif);
  font-size: 3.2em;
  float: left;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--brown-deep);
  font-weight: 700;
}
.chapitre-jean p { text-align: justify; hyphens: auto; }
.chapitre-jean h3 {
  text-align: center;
  margin: 44px 0 18px;
  padding-top: 8px;
  clear: both;
}
.chapitre-jean h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
}
.chapitre-jean blockquote.citation {
  margin: 26px auto;
  max-width: 620px;
  text-align: left;
}
.chapitre-jean .chronologie { clear: both; }
.chapitre-jean .callout, .chapitre-jean .source-line { clear: both; }
@media (max-width: 640px) {
  .chapitre-jean p { text-align: left; }
  .chapitre-jean .lede::first-letter { font-size: 2.6em; }
}


/* ---- Formulaire "Contribuer" ---- */
.contribuer-form { margin-top: 8px; }
.contribuer-form .form-row { margin-bottom: 20px; display: flex; flex-direction: column; }
.contribuer-form label {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 6px;
  font-size: 15px;
}
.contribuer-form .req { color: var(--terracotta-deep); }
.contribuer-form input[type="text"],
.contribuer-form input[type="email"],
.contribuer-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 3px;
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contribuer-form input:focus,
.contribuer-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}
.contribuer-form textarea { resize: vertical; min-height: 160px; line-height: 1.55; }
.contribuer-form input[type="file"] {
  font-family: var(--sans);
  padding: 8px 0;
  font-size: 14px;
}
.contribuer-form .form-hint {
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 6px;
}
.contribuer-form .files-list {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink);
}
.contribuer-form .filesize { color: var(--ink-soft); font-size: 12px; }
.contribuer-form .form-error {
  background: #fbe8e2;
  border: 1px solid #d97757;
  color: #8a2a12;
  padding: 12px 16px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-size: 14.5px;
}
.contribuer-form .form-actions { margin-top: 12px; }
.contribuer-form .btn-primary {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  background: var(--brown-deep);
  color: var(--cream);
  border: none;
  padding: 12px 28px;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.15s;
}
.contribuer-form .btn-primary:hover:not(:disabled) { background: var(--gold); color: var(--brown-deep); }
.contribuer-form .btn-primary:disabled { opacity: 0.6; cursor: wait; }
.contribuer-form .form-legal {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-style: italic;
}

/* Album 2 — documents et photographies intégrés */
.pieces-album{margin:3rem 0 2rem;padding-top:2rem;border-top:1px solid rgba(0,0,0,.08)}
.pieces-album h2{font-size:1.35rem;margin:0 0 1.5rem;color:var(--ink,#2b2620)}
.pieces-album .album-inline{margin:1.5rem 0 2.25rem;text-align:center}
.pieces-album .album-inline img{max-width:100%;height:auto;border-radius:4px;box-shadow:0 2px 12px rgba(0,0,0,.12)}
.pieces-album .album-inline figcaption{margin-top:.75rem;font-size:.92rem;font-style:italic;color:#5a5148;max-width:640px;margin-left:auto;margin-right:auto;line-height:1.5}
