/*
Theme Name: Les Voyages de Naivara
Author: Kalys
Version: 1.0
*/

/* ==========================================================
   01. BASE ET VARIABLES
========================================================== */

:root {
  --nv-brun: #3f372f;
  --nv-brun-fonce: #4a4137;
  --nv-vert: #6f7b61;
  --nv-vert-fonce: #5f6b52;
  --nv-vert-vivant: #4f7b45;
  --nv-ivoire: rgba(255,252,246,.88);
  --nv-ivoire-carte: rgba(255,252,246,.62);
  --nv-trait: rgba(74,65,55,.18);
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--nv-brun);
}

/* ==========================================================
   02. FONDS ET STRUCTURES COMMUNES
========================================================== */

.nv-cover-page,
.nv-toc-page,
.nv-section-page,
.nv-journal-page,
.nv-single-page {
  min-height: 100vh;
  background: url("assets/fond-naivara.jpg") center center / cover fixed no-repeat;
}

.nv-section-page,
.nv-journal-page,
.nv-single-page {
  padding: 40px;
}

.nv-section,
.nv-journal,
.nv-single,
.nv-preface {
  margin: 0 auto;
  padding: 70px 64px 80px;
  background: var(--nv-ivoire);
  color: var(--nv-brun);
  border: 1px solid var(--nv-trait);
}

.nv-section,
.nv-journal {
  width: min(940px, 92vw);
  min-height: calc(100vh - 80px);
}

.nv-single {
  width: min(820px, 92vw);
}

.nv-preface {
  width: min(760px, 92vw);
}

/* ==========================================================
   03. COMPOSANTS COMMUNS
========================================================== */

.nv-flourish-symbol {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--nv-vert);
  opacity: .75;
  line-height: 1;
}

.nv-back-cover a,
.nv-back a {
  font-family: "Cormorant Garamond", serif;
  font-variant-caps: small-caps;
  letter-spacing: .08em;
  color: var(--nv-brun-fonce);
  text-decoration: none;
}

.nv-back-cover a:hover,
.nv-back a:hover {
  color: var(--nv-vert);
}

.nv-read-more {
  display: inline-block;
  margin-top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--nv-vert);
  text-decoration: none;
}

.nv-read-more:hover {
  color: var(--nv-brun-fonce);
}

.nv-comment-link {
  display: inline-block;
  margin-top: 10px;
  font-size: .95rem;
  color: #7a746a;
  text-decoration: none;
}

.nv-comment-link:hover {
  color: var(--nv-vert);
}

.nv-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
}

/* ==========================================================
   04. COUVERTURE
========================================================== */

.nv-cover-page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 40px 40px;
}

.nv-cover {
  position: relative;
  overflow: hidden;
  width: min(430px, 88vw);
  min-height: 620px;
  padding: 56px 42px;
  background: #5D7080;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  color: #F3EAD6;
  text-decoration: none;
  text-align: center;
  box-shadow:
    0 30px 90px rgba(30,38,45,.28),
    0 10px 28px rgba(30,38,45,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  transition: transform .25s ease, box-shadow .25s ease;
}

.nv-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/texture-herbier-7.png") center center / cover no-repeat;
  opacity: .40;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.nv-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(20,30,38,.22) 0%,
    rgba(20,30,38,.12) 4%,
    rgba(255,255,255,.05) 7%,
    transparent 14%
  );
}

.nv-cover > * {
  position: relative;
  z-index: 1;
}

.nv-cover:hover {
  transform: scale(1.02);
  box-shadow:
    0 38px 110px rgba(30,38,45,.34),
    0 14px 36px rgba(30,38,45,.22);
}

.nv-volume {
  margin-bottom: 110px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

.nv-title {
  font-size: clamp(2.5rem, 7vw, 3.7rem);
  line-height: .9;
  font-weight: 600;
}

.nv-subtitle {
  margin-top: 28px;
  max-width: 260px;
  font-size: .95rem;
  line-height: 1.8;
  letter-spacing: .05em;
  word-spacing: .15em;
  text-transform: uppercase;
  opacity: .9;
}

.nv-date {
  margin-top: auto;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .78;
}

/* ==========================================================
   05. TABLE DES MATIÈRES
========================================================== */

.nv-toc-page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px 40px;
}

.nv-toc {
  width: min(620px, 92vw);
  padding: 70px 64px 80px;
  background: var(--nv-ivoire);
  color: var(--nv-brun);
  border: 1px solid rgba(74,65,55,.14);
}

.nv-toc .nv-back-cover {
  margin: 0 0 80px;
  font-size: .95rem;
}

.nv-toc-header {
  margin-bottom: 70px;
  text-align: center;
}

.nv-toc h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nv-toc nav {
  display: grid;
  gap: 26px;
}

.nv-toc nav a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 14px;
  color: var(--nv-brun);
  text-decoration: none;
  font-size: 1.12rem;
  transition: color .2s ease, transform .2s ease;
}

.nv-toc nav a:hover {
  color: var(--nv-vert-fonce);
  transform: translateX(3px);
}

.nv-toc-title {
  color: inherit;
}

.nv-toc-dots {
  border-bottom: 1px dotted rgba(63,55,47,.22);
  transform: translateY(-.18em);
}

.nv-toc-page-num {
  color: #8b9074;
  font-size: .92em;
  justify-self: end;
}

.nv-toc-preface {
  margin-bottom: 22px;
}

.nv-toc-postface {
  margin-top: 22px;
}

.nv-toc-special .nv-toc-page-num {
  display: none;
}

.nv-toc-footer {
  margin-top: 70px;
  text-align: center;
}

/* ==========================================================
   06. NAVIGATION ET TITRES DE CHAPITRES
========================================================== */

.nv-page-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nv-page-top .nv-back-cover,
.nv-back {
  margin: 0;
  font-size: 1.05rem;
}

.nv-page-anchor-bottom {
  margin: 0;
  font-size: .95rem;
  text-align: center;
}

.nv-page-anchor-bottom a {
  color: #7a746a;
  text-decoration: none;
  transition: color .2s ease;
}

.nv-page-anchor-bottom a:hover {
  color: var(--nv-vert);
}

.nv-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 110px;
  background: rgba(74,65,55,.28);
}

.nv-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.nv-section-header p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--nv-vert);
}

.nv-section-header h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  font-weight: normal;
}

.nv-chapter-nav {
  margin-top: 150px;
  padding-top: 28px;
  border-top: 1px solid rgba(74,65,55,.28);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 1.45rem;
}

.nv-chapter-nav a {
  color: var(--nv-brun-fonce);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.nv-chapter-nav a:hover {
  color: #6f7b52;
}

.nv-prev { justify-self: start; }
.nv-top { justify-self: center; }
.nv-next { justify-self: end; }

.nv-prev:hover { transform: translateX(-3px); }
.nv-next:hover { transform: translateX(3px); }

.nv-pagination {
  margin: 70px 0 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.nv-pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  color: var(--nv-brun-fonce);
  text-decoration: none;
}

.nv-pagination .page-numbers.current {
  color: var(--nv-vert);
  border-bottom: 1px solid rgba(111,123,97,.45);
}

.nv-pagination a:hover {
  color: var(--nv-vert);
}

/* ==========================================================
   07. JOURNAL
========================================================== */

.nv-entries {
  width: min(620px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0px;
}

.nv-entry {
  padding-bottom: 25px;
}

.nv-entry:last-child .nv-entry-divider {
  display: none;
}

.nv-entry-date {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-variant-caps: small-caps;
  font-style: italic;
  letter-spacing: .08em;
  color: var(--nv-vert);
}

.nv-entry h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.nv-entry-content {
  font-size: 1rem;
  line-height: 1.75;
}

.nv-entry-content > p:first-of-type::first-letter {
  float: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  line-height: .8;
  margin-right: .08em;
}

.nv-entry-divider {
  margin: 30px 0 40px;
  text-align: center;
}

.nv-entry-divider::before {
  display: none;
}

.nv-entry-divider .nv-flourish-symbol {
  display: inline-block;
  padding: 0;
  background: transparent;
}

.nv-single-content iframe {
  display: block;
  max-width: 100%;
  margin: 2.5rem auto;
  border: 0;
}

/* JOURNAL : IMAGE MISE EN AVANT */

.nv-entry-image {
  margin: 1.4rem 0 1.6rem;
}

.nv-entry-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* IMAGES INSÉRÉES DANS LES BILLETS */

.nv-entry-content img,
.nv-single-content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}

/* LÉGENDES */

.nv-caption {
    margin: .5rem auto 2rem;
    max-width: 620px;
    font-family: "Cormorant Garamond", serif;
    font-size: .9rem;
    font-style: italic;
    line-height: 1.4;
    color: #7a746a;
    text-align: center;
}

/* CONTENUS INTÉGRÉS */

.nv-entry-content iframe,
.nv-single-content iframe,
.nv-preface-content iframe {
  display: block;
  max-width: 100%;
  margin: 2.5rem auto;
  border: 0;
}

.nv-entry-content .wp-block-embed,
.nv-single-content .wp-block-embed,
.nv-preface-content .wp-block-embed {
  margin: 2.5rem 0;
}

.nv-entry-content .wp-block-embed__wrapper,
.nv-single-content .wp-block-embed__wrapper,
.nv-preface-content .wp-block-embed__wrapper {
  display: flex;
  justify-content: center;
}

/* LECTEUR AUDIO ET LÉGENDE */

.nv-audio-embed {
  width: min(500px, 100%);
  margin: 2.5rem auto;
}

.nv-audio-embed iframe[title="TIDAL Embed Player"] {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 120px;
  margin: 0 !important;
  border: 0 !important;
}

.nv-audio-embed .nv-audio-caption {
  margin: .35rem 0 0 !important;
  font-family: "Cormorant Garamond", serif;
  font-size: .9rem;
  line-height: 1.4;
  color: #7a746a;
  text-align: center;
}

/* ==========================================================
   08. HERBIER
========================================================== */

.nv-herbier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.nv-herbier-card {
  background: rgba(255,252,246,.55);
  border: 1px solid rgba(74,65,55,.08);
  box-shadow: 0 10px 30px rgba(40,40,40,.05);
}

.nv-herbier-image {
  display: block;
  margin: 18px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
  padding: 8px;
  box-sizing: border-box;
}

.nv-herbier-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nv-herbier-content {
  padding: 28px;
}

.nv-herbier-content h2 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.05;
}

.nv-herbier-excerpt {
  margin-top: 14px;
  line-height: 1.65;
  font-size: .98rem;
}

.nv-herbier-excerpt p {
  margin: 0;
}

.nv-herbier-excerpt em {
  display: block;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--nv-vert);
}

/* ==========================================================
   09. LIEUX
========================================================== */

.nv-lieux-list {
  display: grid;
  gap: 42px;
}

.nv-lieu-card {
  background: var(--nv-ivoire-carte);
  border: 1px solid rgba(74,65,55,.10);
  box-shadow: 0 12px 34px rgba(40,40,40,.05);
}

.nv-lieu-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.nv-lieu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nv-lieu-content {
  padding: 34px 42px 38px;
}

.nv-lieu-content h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 500;
}

.nv-lieu-content h2 a {
  color: var(--nv-brun);
  text-decoration: none;
}

.nv-lieu-content h2 a:hover {
  color: var(--nv-vert);
}

.nv-lieu-excerpt {
  max-width: 620px;
  line-height: 1.7;
}

.nv-lieu-excerpt p {
  margin: 0;
}

.nv-lieu-excerpt em {
  display: block;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--nv-vert);
}

/* ==========================================================
   10. BIBLIOTHÈQUE
========================================================== */

.nv-biblio-list {
  display: grid;
  gap: 42px;
}

.nv-biblio-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 32px;
  padding: 28px;
  background: var(--nv-ivoire-carte);
  border: 1px solid rgba(74,65,55,.10);
  box-shadow: 0 10px 30px rgba(40,40,40,.04);
}

.nv-biblio-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.45);
}

.nv-biblio-cover img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nv-biblio-content h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 1.05;
  font-weight: 500;
}

.nv-biblio-content h2 a {
  color: var(--nv-brun);
  text-decoration: none;
}

.nv-biblio-content h2 a:hover {
  color: var(--nv-vert);
}

.nv-biblio-excerpt {
  line-height: 1.65;
}

.nv-biblio-excerpt p {
  margin: 0;
}

.nv-biblio-excerpt em {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--nv-vert);
}

/* ==========================================================
   11. QUÊTES
========================================================== */

.nv-quest-list {
  display: grid;
  gap: 28px;
  width: min(720px, 100%);
  margin: 0 auto;
}

.nv-quest {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 28px 30px;
  background: var(--nv-ivoire-carte);
  border: 1px solid rgba(74,65,55,.10);
  box-shadow: 0 10px 30px rgba(40,40,40,.04);
}

.nv-quest-marker {
  width: 1.15rem;
  height: 1.15rem;
  border: 1.8px solid #8b8173;
  margin-top: .25rem;
  opacity: .65;
}

.nv-quest.is-complete .nv-quest-marker {
  border-color: var(--nv-vert-vivant);
  opacity: 1;
  position: relative;
}

.nv-quest.is-complete .nv-quest-marker::after {
  content: "";
  position: absolute;
  left: .28rem;
  top: .04rem;
  width: .38rem;
  height: .72rem;
  border: solid #5d7d52;
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}

.nv-quest-content h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 500;
}

.nv-quest-content h2 a {
  color: var(--nv-brun);
  text-decoration: none;
}

.nv-quest-content h2 a:hover {
  color: var(--nv-vert);
}

.nv-quest-excerpt {
  line-height: 1.65;
}

.nv-quest-excerpt p {
  margin: 0;
}

/* ==========================================================
   12. SINGLE ET PAGES DU CARNET
========================================================== */

.nv-single-header {
  text-align: center;
  margin-bottom: 54px;
}

.nv-single-date {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-variant-caps: small-caps;
  letter-spacing: .08em;
  color: var(--nv-vert);
}

.nv-single h1,
.nv-preface-header h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: .95;
  font-weight: 500;
  color: var(--nv-brun);
}

.nv-single-image {
  margin: 0 auto 54px;
  text-align: center;
}

.nv-single-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.nv-single-image-book img {
  max-width: 260px;
}

.nv-single-image-herbier img {
  max-width: 520px;
}

.nv-single-image-landscape img {
  width: 100%;
}

.nv-single-content {
  width: min(660px, 100%);
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
}

.nv-single-content p {
  margin: 0 0 1.4em;
}

.nv-single-content em {
  color: var(--nv-vert-fonce);
}

.nv-single-content blockquote {
  margin: 2em 0;
  padding-left: 1.4em;
  border-left: 1px solid rgba(74,65,55,.28);
  font-style: italic;
  color: #5b4b3d;
}

.nv-single-footer {
  margin-top: 70px;
  text-align: center;
}

.nv-preface-header {
  text-align: center;
  margin-bottom: 64px;
}

.nv-preface-header p {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-variant-caps: small-caps;
  letter-spacing: .12em;
  color: var(--nv-vert);
}

.nv-preface-content {
  width: min(620px, 100%);
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.9;
}

.nv-preface-content p {
  margin: 0 0 1.5em;
}

.nv-preface-content > p:first-of-type::first-letter {
  float: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  line-height: .8;
  margin-right: .08em;
}

.nv-single-content h2,
.nv-preface-content h2 {
  margin: 2.4rem 0 .8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--nv-brun);
  line-height: 1.2;
}

.nv-single-content a,
.nv-preface-content a {
  color: var(--nv-vert);
  text-decoration: none;
  transition: color .2s ease;
}

.nv-single-content a:hover,
.nv-preface-content a:hover {
  color: var(--nv-brun-fonce);
  text-decoration: underline;
}

.nv-sources {
  margin-top: 2rem;
  font-size: .95rem;
}

.nv-sources-title {
  margin: 0 0 .4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--nv-vert);
}

.nv-sources p {
  margin: .25rem 0;
}

.nv-sources a {
  color: var(--nv-vert);
  text-decoration: none;
}

.nv-sources a:hover {
  color: var(--nv-brun-fonce);
}

/* ==========================================================
   13. COMMENTAIRES : CONTRIBUTIONS AU CARNET
========================================================== */

.nv-comments {
  width: min(620px, 100%);
  margin: 70px auto 0;
  padding-top: 42px;
  border-top: 1px solid rgba(74,65,55,.18);
}

.nv-comments-title,
.comment-reply-title {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--nv-brun);
  text-align: center;
}

.nv-comment-list {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
}

.nv-comment-list li {
  margin: 0 0 28px;
  padding: 26px 30px;
  background: var(--nv-ivoire-carte);
  border: 1px solid rgba(74,65,55,.10);
  box-shadow: 0 8px 24px rgba(40,40,40,.04);
}

.nv-comment-list .comment-author {
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--nv-vert);
}

.nv-comment-list .comment-author a {
  color: var(--nv-vert);
  text-decoration: none;
  font-weight: normal;
}

.nv-comment-list .comment-author a:hover {
  color: var(--nv-brun-fonce);
}

.nv-comment-list .comment-author .says,
.nv-comment-list .comment-meta,
.nv-comment-list .reply {
  display: none;
}

.nv-comment-list .comment-content {
  font-size: 1rem;
  line-height: 1.75;
}

.nv-comment-list .comment-content p {
  margin: 0 0 1em;
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--nv-vert);
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(74,65,55,.18);
  background: rgba(255,252,246,.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: var(--nv-brun);
}

.comment-form .submit {
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid rgba(74,65,55,.18);
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--nv-brun-fonce);
  cursor: pointer;
}

.comment-form .submit:hover {
  color: var(--nv-vert);
  border-color: rgba(111,123,97,.35);
}

/* LIENS DANS LES COMMENTAIRES */

.nv-comments a {
  color: #6f7b61;
  text-decoration: none;
  transition: color .2s ease;
}

.nv-comments a:hover {
  color: #4a4137;
  text-decoration: underline;
}

.nv-comments .comment-author a {
  font-weight: 600;
}

/* ==========================================================
   14. RESPONSIVE
========================================================== */

@media (max-width: 760px) {
  .nv-herbier-grid {
    grid-template-columns: 1fr;
  }

  .nv-lieu-image {
    aspect-ratio: 4 / 3;
  }

  .nv-lieu-content {
    padding: 28px;
  }

  .nv-lieu-content h2 {
    font-size: 2.1rem;
  }

  .nv-biblio-card {
    grid-template-columns: 1fr;
  }

  .nv-biblio-cover {
    max-width: 180px;
  }

  .nv-quest {
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 24px;
  }
}

@media (max-width: 680px) {
  .nv-toc,
  .nv-section,
  .nv-journal,
  .nv-single,
  .nv-preface {
    padding: 48px 28px;
    min-height: auto;
  }

  .nv-toc-header {
    margin-bottom: 48px;
  }

  .nv-toc nav a {
    font-size: 1rem;
  }

  .nv-page-top {
    gap: 24px;
    align-items: flex-start;
  }

  .nv-chapter-nav {
    font-size: 1.1rem;
  }
}

/* LIEN POURSUIVRE LA LECTURE */

a.more-link {
  display: inline-block !important;
  margin-top: 10px !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1rem !important;
  color: #6f7b61 !important;
  text-decoration: none !important;
}

a.more-link:hover {
  color: #4a4137 !important;
  text-decoration: none !important;
}