/* Grands hommes : feuille de style unique. Lumiere seulement, jamais de dark mode. */

:root {
  --paper:        #faf6ec;
  --paper-raised: #fffdf7;
  --paper-sunk:   #f3ecdd;
  --ink:          #221e18;
  --ink-2:        #4c463b;
  --ink-3:        #877f70;
  --ink-4:        #a89f8d;
  --rule:         #e5dbc9;
  --rule-soft:    #efe7d8;
  --gold:         #9c7729;
  --gold-2:       #c3a153;
  --gold-wash:    #f4ead4;
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Jost", "Avenir Next", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --measure: 34rem;
  --wide: 47rem;
  --shadow: 0 1px 2px rgba(60, 48, 24, .05), 0 8px 24px -12px rgba(60, 48, 24, .16);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  background-image:
    radial-gradient(120% 70% at 50% -10%, #fffdf6 0%, rgba(255, 253, 246, 0) 60%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.6rem;
}

/* ------------------------------------------------------------ en-tete */

.masthead {
  padding: 3.4rem 0 1.6rem;
  text-align: center;
}
.masthead .mark {
  display: block;
  margin: 0 auto .9rem;
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.masthead h1 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .055em;
  text-transform: uppercase;
  margin: 0;
}
.masthead .tagline {
  margin: .5rem 0 0;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.masthead .rule {
  width: 54px;
  height: 1px;
  background: var(--gold-2);
  margin: 1.5rem auto 0;
  opacity: .7;
}

/* ------------------------------------------------------ prochaine histoire */

.next-card {
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: 3px;
  box-shadow: var(--shadow);
  padding: 2.2rem 2.1rem 1.9rem;
  margin: 2.2rem 0 1.1rem;
  position: relative;
}
.next-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), rgba(195, 161, 83, .15));
  border-radius: 3px 3px 0 0;
}
.eyebrow {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 .8rem;
}
.next-card h2 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.95rem;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -.005em;
}
.next-card .moment {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-3);
  margin: .45rem 0 0;
}
.next-card .presentation {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--ink-2);
  margin: 1.2rem 0 0;
  max-width: var(--measure);
}
.next-card .presentation p { margin: 0 0 .8rem; }
.next-card .presentation p:last-child { margin-bottom: 0; }

.meta-line {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 1.35rem 0 0;
}
.meta-line span + span::before { content: " · "; }

.actions { display: flex; gap: .7rem; margin-top: 1.4rem; flex-wrap: wrap; }

.btn {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .72rem 1.5rem;
  border-radius: 2px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-2);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .18s, border-color .18s, color .18s;
}
.btn:hover { border-color: var(--gold-2); color: var(--ink); background: var(--gold-wash); }
.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #faf6ec;
}
.btn-primary:hover { background: #362f24; border-color: #362f24; color: #fffdf7; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* --------------------------------------------------------------- bandeau */

.strip {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: var(--ink-3);
  padding: .8rem 1rem;
  border: 1px solid var(--rule-soft);
  background: var(--paper-sunk);
  border-radius: 2px;
  margin-bottom: 1.1rem;
}
.strip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-2); flex: none;
}
.strip.is-generating .dot { animation: pulse 1.8s ease-in-out infinite; }
.strip.is-error { background: #fbeee7; border-color: #ecd3c2; color: #8a4b23; }
.strip.is-error .dot { background: #c2622c; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* ------------------------------------------------------------ suggestion */

.suggest { display: flex; gap: .55rem; margin: 0 0 3rem; }
.suggest input, .word input {
  flex: 1;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--ink);
  padding: .72rem .95rem;
  border: 1px solid var(--rule);
  background: var(--paper-raised);
  border-radius: 2px;
  min-width: 0;
}
.suggest input::placeholder, .word input::placeholder { color: var(--ink-4); }
.suggest input:focus, .word input:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(195, 161, 83, .16);
}

/* ----------------------------------------------------------- bibliotheque */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: .7rem;
  margin-bottom: .3rem;
}
.section-head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0;
}
.section-head .count {
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.shelf { list-style: none; margin: 0 0 4rem; padding: 0; }
.shelf li { border-bottom: 1px solid var(--rule-soft); }
.shelf a {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  gap: 0 1rem;
  align-items: baseline;
  padding: 1.15rem .4rem 1.15rem .2rem;
  text-decoration: none;
  transition: background .18s;
}
.shelf a:hover { background: var(--paper-raised); }
.shelf .num {
  font-family: var(--serif);
  font-size: .8rem;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
.shelf .who {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: .55rem;
  flex-wrap: wrap;
}
.shelf .moment {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--ink-3);
  margin: .1rem 0 0;
}
.shelf .hook {
  font-size: .85rem;
  color: var(--ink-3);
  margin: .4rem 0 0;
  max-width: 34rem;
}
.shelf .dur {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-4);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.shelf li.is-read a { opacity: .52; }
.shelf li.is-read a:hover { opacity: .78; }

.tag {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .18rem .45rem .14rem;
  border-radius: 2px;
  position: relative;
  top: -.14rem;
}
.tag-new { color: #6c5210; background: var(--gold-wash); border: 1px solid #e6d5a8; }
.tag-read { color: var(--ink-3); border: 1px solid var(--rule); }
.tag-audio { color: #6c5210; border: 1px solid #e6d5a8; }

/* --------------------------------------------------------------- histoire */

.storypage { padding-bottom: 4rem; }
.storypage.has-player { padding-bottom: 8rem; }

.crumbs {
  padding: 2rem 0 0;
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--gold); }

article.story { max-width: var(--measure); margin: 0 auto; }

.story-head { padding: 2.6rem 0 0; text-align: center; }
.story-head h1 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 2.35rem;
  line-height: 1.14;
  letter-spacing: -.012em;
  margin: 0;
  text-wrap: balance;
}
.story-head .who {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .85rem;
}
.story-head .moment {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink-3);
  margin: .6rem 0 0;
}
.story-head .rule {
  width: 44px; height: 1px; background: var(--gold-2);
  margin: 1.7rem auto 0; opacity: .65;
}

.presentation-note {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--ink-2);
  margin: 2.1rem 0 0;
}
.presentation-note p { margin: 0 0 .85rem; }
.presentation-note p:last-child { margin-bottom: 0; }

.cartouche {
  margin: 2.2rem 0 0;
  border: 1px solid var(--rule);
  background: var(--paper-raised);
  border-radius: 3px;
  padding: 1.4rem 1.5rem;
  display: grid;
  gap: 1.25rem;
}
.cartouche h4 {
  font-size: .65rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 .45rem;
}
.cartouche p {
  font-family: var(--serif);
  font-size: .96rem;
  line-height: 1.62;
  color: var(--ink-2);
  margin: 0 0 .6rem;
}
.cartouche p:last-child { margin-bottom: 0; }

.tools {
  display: flex;
  gap: .55rem;
  margin: 2.1rem 0 0;
  flex-wrap: wrap;
}
.tools .btn { padding: .6rem 1.1rem; font-size: .74rem; }
.btn-select { border-color: var(--gold-2); color: var(--ink); background: var(--gold-wash); }
.btn-select:hover { background: #efe0bf; }
.btn.is-done { background: var(--ink); border-color: var(--ink); color: #faf6ec; }

#narration { margin: 0; }
#narration .presentation-note { margin-top: 1.9rem; }

details.verite {
  margin: 1.1rem 0 0;
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  background: var(--paper-sunk);
}
details.verite summary {
  cursor: pointer;
  list-style: none;
  padding: .85rem 1.2rem;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: .6rem;
}
details.verite summary::-webkit-details-marker { display: none; }
details.verite summary::before {
  content: "+";
  font-size: .95rem;
  line-height: 1;
  color: var(--gold);
}
details.verite[open] summary::before { content: "\2013"; }
details.verite summary:hover { color: var(--ink); }
details.verite .inner { padding: 0 1.2rem 1.2rem; }
details.verite .blk { margin: 0 0 1rem; }
details.verite .blk:last-child { margin-bottom: 0; }
details.verite .blk h5 {
  font-size: .64rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 .3rem;
}
details.verite .blk p {
  font-family: var(--serif);
  font-size: .9rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.chapeau {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.06rem;
  line-height: 1.6;
  margin: 2.6rem 0 1.8rem;
  padding-left: 1.05rem;
  border-left: 2px solid var(--gold-2);
  color: var(--ink);
}

.corps {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 1.18rem;
  line-height: 1.78;
  color: var(--ink);
  letter-spacing: .002em;
}
.corps p { margin: 0 0 1.35rem; }
.corps p:first-of-type::first-letter {
  font-size: 3.05rem;
  line-height: .82;
  float: left;
  padding: .12em .09em 0 0;
  color: var(--gold);
  font-weight: 500;
}
.corps em { font-style: italic; }
.corps strong { font-weight: 600; }

.filet {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 2.6rem 0 2.1rem;
  position: relative;
}
.filet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 7px; height: 7px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--paper);
  border: 1px solid var(--gold-2);
}

.chute {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ink-2);
}
.chute p { margin: 0 0 1rem; }

.after {
  max-width: var(--measure);
  margin: 3rem auto 0;
  border-top: 1px solid var(--rule);
  padding-top: 1.6rem;
  display: flex;
  gap: .7rem;
  align-items: center;
  flex-wrap: wrap;
}
.after .spacer { flex: 1; }
.word { display: flex; gap: .55rem; max-width: var(--measure); margin: 1.4rem auto 0; }
.word-note {
  max-width: var(--measure);
  margin: .55rem auto 0;
  font-size: .74rem;
  color: var(--ink-4);
  letter-spacing: .02em;
}

.is-read-state .btn-read { background: var(--gold-wash); border-color: #e6d5a8; color: #6c5210; }

/* ---------------------------------------------------------- lecteur audio */

.player {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255, 253, 247, .94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -6px 24px -18px rgba(60, 48, 24, .5);
  z-index: 40;
  padding: .7rem 0 calc(.7rem + env(safe-area-inset-bottom));
}
.player .bar {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  gap: .95rem;
}
.player button.play {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform .12s, background .18s;
}
.player button.play:hover { background: #362f24; }
.player button.play:active { transform: scale(.94); }
.player .track {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.player .label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player .seek {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--rule);
  cursor: pointer;
  margin: 0;
}
.player .seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--paper-raised);
  box-shadow: 0 1px 3px rgba(60, 48, 24, .3);
}
.player .seek::-moz-range-thumb {
  width: 12px; height: 12px;
  border: 2px solid var(--paper-raised);
  border-radius: 50%;
  background: var(--gold);
}
.player .time {
  font-size: .74rem;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: .02em;
}
.player .speed {
  flex: none;
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .06em;
  padding: .38rem .55rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  font-variant-numeric: tabular-nums;
}
.player .speed:hover { border-color: var(--gold-2); color: var(--ink); }

/* ------------------------------------------------------------------ toast */

.toast-host {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  pointer-events: none;
  width: min(92vw, 26rem);
}
.has-player ~ .toast-host { bottom: 5.6rem; }

.toast {
  background: var(--ink);
  color: #f7f1e2;
  border-radius: 3px;
  padding: .7rem 1.1rem;
  font-size: .84rem;
  letter-spacing: .02em;
  box-shadow: 0 10px 30px -12px rgba(34, 30, 24, .55);
  display: flex;
  gap: .6rem;
  align-items: center;
  pointer-events: auto;
  animation: rise .32s ease both;
}
.toast a { color: var(--gold-2); text-decoration: none; border-bottom: 1px solid currentColor; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }

.empty {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-3);
  padding: 2rem 0;
}

/* ----------------------------------------------------------------- mobile */

@media (max-width: 640px) {
  .wrap { padding: 0 1.15rem; }
  .masthead { padding: 2.4rem 0 1rem; }
  .next-card { padding: 1.6rem 1.3rem 1.5rem; margin-top: 1.7rem; }
  .next-card h2 { font-size: 1.6rem; }
  .next-card .presentation { font-size: .98rem; }
  .actions .btn { flex: 1; justify-content: center; padding: .78rem .8rem; }
  .shelf a { grid-template-columns: 1.7rem 1fr; padding: 1rem .1rem; }
  .shelf .dur { grid-column: 2; margin-top: .35rem; }
  .shelf .who { font-size: 1.08rem; }
  .story-head { padding-top: 1.7rem; }
  .story-head h1 { font-size: 1.72rem; }
  .story-head .moment { font-size: .98rem; }
  .corps { font-size: 1.09rem; line-height: 1.75; }
  .corps p:first-of-type::first-letter { font-size: 2.7rem; }
  .chapeau { font-size: 1rem; }
  .cartouche { padding: 1.15rem 1.15rem; }
  .tools { gap: .45rem; margin-top: 1.6rem; }
  .tools .btn {
    flex: 1;
    justify-content: center;
    padding: .62rem .4rem;
    font-size: .68rem;
    letter-spacing: .06em;
  }
  .player .bar { padding: 0 1.15rem; gap: .7rem; }
  .player .label { display: none; }
  .storypage { padding-bottom: 3.5rem; }
  .storypage.has-player { padding-bottom: 7.5rem; }
  .after .btn, .word input, .word button { font-size: .78rem; }
}

@media (max-width: 400px) {
  .player .speed { padding: .34rem .4rem; }
  .after { gap: .5rem; }
  .after .btn { flex: 1; justify-content: center; }
}

/* ------------------------------------------- le tri, apres la chute (03/09/2026) */

.verite-after {
  margin: 3.4rem 0 0;
  padding-top: 1.7rem;
  border-top: 1px solid var(--rule);
}
.verite-after h3 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1.2rem;
}
.verite-after .blk { margin: 0 0 1.05rem; }
.verite-after .blk:last-child { margin-bottom: 0; }
.verite-after .blk h5 {
  font-size: .64rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 .3rem;
}
.verite-after .blk p {
  font-family: var(--serif);
  font-size: .92rem;
  line-height: 1.62;
  color: var(--ink-2);
  margin: 0;
}

/* ---------------------------------------------- partager, en fin de recit (03/09/2026) */

.share { margin: 2.4rem 0 0; text-align: center; }
.share .btn { padding: .7rem 1.4rem; }

/* La narration se fabrique encore : le texte est la, l'audio suit de quelques minutes. */
.pending-audio {
  max-width: var(--measure);
  margin: 1.4rem auto 0;
  padding: .7rem 1rem;
  border: 1px dashed var(--gold-2);
  border-radius: 3px;
  background: var(--gold-wash);
  font-size: .82rem;
  color: var(--ink-2);
  text-align: center;
}

/* ------------------------------ demander la narration (03/09/2026) */

.ask-audio {
  max-width: var(--measure);
  margin: 1.6rem auto 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  background: var(--paper-sunk);
  text-align: center;
}
.ask-audio .ask-text { margin: 0 0 .7rem; font-size: .86rem; color: var(--ink-3); }
.ask-audio .ask-note { margin: 0; font-size: .86rem; line-height: 1.5; color: var(--ink-2); }

/* page privee /stats (03/09/2026) */
.stats h2 { font-size: 1.9rem; margin: 1.2rem 0 .4rem; }
.stats h3 { font-family: Jost, system-ui, sans-serif; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #9c7729; margin: 1.8rem 0 .5rem; }
.stats table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.stats th, .stats td { text-align: left; padding: .45rem .6rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
.stats th { font-family: Jost, system-ui, sans-serif; font-weight: 500; font-size: .78rem; letter-spacing: .04em; color: var(--ink-3); }
.stats td.detail { color: var(--ink-3); font-size: .88rem; }

/* trois portes d'entree pour qui n'a rien lu (03/09/2026) */
.starters { margin: 0 0 2.2rem; }
.starters > .eyebrow { margin: 0 0 .8rem; }
.starter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .9rem; }
.starter { display: block; text-decoration: none; color: inherit; background: #fffdf7; border: 1px solid var(--rule); border-radius: 12px; padding: 1.1rem 1.2rem 1rem; transition: border-color .15s, box-shadow .15s; }
.starter:hover { border-color: var(--gold-2); box-shadow: 0 0 0 3px var(--gold-wash); }
.starter .eyebrow { margin: 0 0 .5rem; }
.starter h3 { font-size: 1.45rem; margin: 0 0 .25rem; font-weight: 600; }
.starter .moment { margin: 0 0 .6rem; }
.starter .hook { font-size: .92rem; color: var(--ink-3); margin: 0 0 .7rem; }
.starter .dur { font-family: Jost, system-ui, sans-serif; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: #9c7729; }
.btn-like.is-done { color: #6c5210; border-color: #e6d5a8; background: var(--gold-wash); }

/* vitesse par crans de 0,05 (03/09/2026) */
.player .speed-ctl { display: flex; align-items: center; gap: .15rem; flex: none; }
.player .speed { min-width: 3.6rem; text-align: center; font-variant-numeric: tabular-nums; }
.player .speed-step { width: 1.7rem; height: 1.7rem; border-radius: 50%; border: 1px solid var(--rule); background: transparent; color: var(--ink-3); font: 500 1rem/1 Jost, system-ui, sans-serif; cursor: pointer; padding: 0; display: inline-flex; align-items: center; justify-content: center; }
.player .speed-step:hover { border-color: var(--gold-2); color: var(--ink); }
.player .speed-step:active { transform: scale(.92); }
@media (max-width: 640px) { .player .speed { min-width: 3.2rem; } }

/* a ecouter ensuite (03/09/2026) */
.next-up { margin-top: 2.6rem; }
.next-up .hook { color: var(--ink-3); font-size: .95rem; margin: .2rem 0 .4rem; }
.player .next-pill { flex: none; text-decoration: none; font: 500 .72rem/1 Jost, system-ui, sans-serif; letter-spacing: .05em; text-transform: uppercase; color: #fffdf7; background: #6c5210; border-radius: 999px; padding: .6rem .9rem; white-space: nowrap; }
.player .next-pill:hover { background: #362f24; }
.player.has-next .speed-ctl, .player.has-next .time { display: none; }

/* « Le vrai et la legende » repliee par defaut (03/09/2026) */
.verite-after summary { list-style: none; cursor: pointer; }
.verite-after summary::-webkit-details-marker { display: none; }
.verite-after summary h3 { margin: 0 0 .45rem; }
.verite-after .verite-hint { margin: 0; color: var(--ink-3); font-size: .98rem; line-height: 1.5; }
.verite-after .verite-cta { display: inline-block; font-family: var(--sans); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: #6c5210; border: 1px solid #e6d5a8; border-radius: 2px; padding: .3rem .6rem; margin-left: .45rem; white-space: nowrap; vertical-align: middle; }
.verite-after .verite-cta::before { content: "Lire"; }
.verite-after[open] .verite-cta::before { content: "Replier"; }
.verite-after summary:hover .verite-cta { background: var(--gold-wash); }
.verite-after .verite-body { margin-top: 1.5rem; }

/* ecouter en tete de recit (03/09/2026) */
.listen-top { margin: 1.3rem 0 0; }
.listen-top .btn { padding: .8rem 1.4rem; }
