/*
Theme Name: Psynapsium
Theme URI: https://psynapsium.com
Author: Psynapsium
Description: Thème officiel de la plateforme Psynapsium — contenus et outils autoguidés de bien-être mental par abonnement, pour le public francophone. Landing de conversion (Bilan Synaptique, protocoles, Le Pont, mode praticien, Esprit du mois), gabarits éditoriaux, identité « synapse » (nuit, brume, lueur).
Version: 1.1.5
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: psynapsium
Tags: subscription, wellness, landing-page
*/


/* =========================================================
   1. Jetons de design
   ========================================================= */
:root {
  /* Couleurs */
  --psy-nuit: #131a2e;        /* fond héro, pied de page */
  --psy-encre-2: #1c2640;     /* surfaces sur fond nuit */
  --psy-porcelaine: #f3f4f0;  /* fond clair général */
  --psy-blanc: #fbfbf9;       /* cartes sur fond clair */
  --psy-brume: #a8b3d4;       /* lavande grisée — secondaire */
  --psy-brume-40: rgba(168, 179, 212, 0.4);
  --psy-lueur: #e9a13b;       /* ambre — l'étincelle synaptique */
  --psy-lueur-fonce: #c9821e;
  --psy-texte: #1b2237;       /* texte sur fond clair */
  --psy-texte-2: #4b5470;     /* texte secondaire */
  --psy-texte-inv: #eef0f6;   /* texte sur fond nuit */
  --psy-texte-inv-2: #b8c0d8;
  --psy-ligne: rgba(27, 34, 55, 0.12);
  --psy-ligne-inv: rgba(238, 240, 246, 0.14);

  /* Typographie */
  --psy-display: "Bricolage Grotesque", system-ui, sans-serif;
  --psy-corps: "Instrument Sans", system-ui, sans-serif;
  --psy-mono: "Spline Sans Mono", ui-monospace, monospace;

  /* Échelle */
  --psy-t-hero: clamp(2.4rem, 6vw, 4.4rem);
  --psy-t-h2: clamp(1.8rem, 3.6vw, 2.6rem);
  --psy-t-h3: 1.25rem;
  --psy-t-corps: 1.0625rem;
  --psy-t-petit: 0.9rem;
  --psy-t-label: 0.78rem;

  /* Rythme */
  --psy-max: 1120px;
  --psy-section: clamp(4rem, 9vw, 7.5rem);
  --psy-radius: 14px;
  --psy-radius-lg: 22px;
}

/* =========================================================
   2. Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--psy-corps);
  font-size: var(--psy-t-corps);
  line-height: 1.65;
  color: var(--psy-texte);
  background: var(--psy-porcelaine);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--psy-lueur);
  outline-offset: 3px;
  border-radius: 4px;
}

.psy-conteneur {
  max-width: var(--psy-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.psy-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* Étiquette « eyebrow » */
.psy-label {
  font-family: var(--psy-mono);
  font-size: var(--psy-t-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--psy-lueur-fonce);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
}
.psy-label::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--psy-lueur);
  box-shadow: 0 0 0 4px rgba(233, 161, 59, 0.18);
}
.psy-sombre .psy-label { color: var(--psy-lueur); }

h1, h2, h3 {
  font-family: var(--psy-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  font-weight: 600;
}
h2 { font-size: var(--psy-t-h2); }
h3 { font-size: var(--psy-t-h3); font-weight: 600; }

/* =========================================================
   3. Boutons
   ========================================================= */
.psy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--psy-corps);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.psy-btn:hover { transform: translateY(-2px); }
.psy-btn:active { transform: translateY(0); }

.psy-btn--plein {
  background: var(--psy-lueur);
  color: var(--psy-nuit);
  box-shadow: 0 6px 18px rgba(233, 161, 59, 0.35);
}
.psy-btn--plein:hover { background: #f2af4e; }

.psy-btn--contour {
  border-color: var(--psy-ligne);
  color: var(--psy-texte);
  background: transparent;
}
.psy-sombre .psy-btn--contour {
  border-color: var(--psy-ligne-inv);
  color: var(--psy-texte-inv);
}
.psy-btn--contour:hover { border-color: var(--psy-lueur); }

/* =========================================================
   4. En-tête de site
   ========================================================= */
.psy-entete {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 1.1rem;
}
.psy-entete__barre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.psy-logo {
  font-family: var(--psy-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--psy-texte-inv);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}
.psy-logo em {
  font-style: normal;
  color: var(--psy-lueur);
}
.psy-page-claire .psy-entete { position: static; background: var(--psy-nuit); }

.psy-nav ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
}
.psy-nav a {
  color: var(--psy-texte-inv-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.psy-nav a:hover { color: var(--psy-texte-inv); }

.psy-entete .psy-btn { padding: 0.55rem 1.2rem; font-size: 0.92rem; }

.psy-burger {
  display: none;
  background: none;
  border: 1.5px solid var(--psy-ligne-inv);
  border-radius: 8px;
  color: var(--psy-texte-inv);
  padding: 0.45rem 0.7rem;
  font-family: var(--psy-mono);
  font-size: 0.8rem;
  cursor: pointer;
}

@media (max-width: 820px) {
  .psy-burger { display: inline-flex; }
  .psy-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--psy-encre-2);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--psy-ligne-inv);
  }
  .psy-nav.est-ouvert { display: block; }
  .psy-nav ul { flex-direction: column; gap: 0.9rem; }
  .psy-entete__cta { display: none; }
}

/* =========================================================
   5. Héro — la signature synaptique
   ========================================================= */
.psy-hero {
  position: relative;
  background: radial-gradient(120% 90% at 70% 10%, #223054 0%, var(--psy-nuit) 55%);
  color: var(--psy-texte-inv);
  padding: clamp(7rem, 16vw, 10.5rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.psy-hero__grille {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.psy-hero h1 {
  font-size: var(--psy-t-hero);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.psy-hero h1 .psy-souligne {
  color: var(--psy-lueur);
  white-space: nowrap;
}
.psy-hero__accroche {
  font-size: 1.15rem;
  color: var(--psy-texte-inv-2);
  max-width: 34rem;
  margin: 0 0 2rem;
}
.psy-hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.psy-hero__note {
  margin-top: 1.1rem;
  font-size: var(--psy-t-petit);
  color: var(--psy-texte-inv-2);
  font-family: var(--psy-mono);
}

/* Réseau synaptique */
.psy-synapse { width: 100%; height: auto; display: block; }
.psy-synapse .noeud {
  fill: var(--psy-brume);
  animation: psy-pulse 4.5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.psy-synapse .noeud--vif { fill: var(--psy-lueur); }
.psy-synapse .lien {
  stroke: var(--psy-brume-40);
  stroke-width: 1.2;
  fill: none;
}
.psy-synapse .influx {
  fill: var(--psy-lueur);
  filter: drop-shadow(0 0 6px rgba(233, 161, 59, 0.9));
}
@keyframes psy-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
.psy-synapse .noeud:nth-of-type(2n) { animation-delay: 1.1s; }
.psy-synapse .noeud:nth-of-type(3n) { animation-delay: 2.3s; }

/* Bandeau de confiance */
.psy-confiance {
  border-top: 1px solid var(--psy-ligne-inv);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  font-family: var(--psy-mono);
  font-size: var(--psy-t-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--psy-texte-inv-2);
}

@media (max-width: 900px) {
  .psy-hero__grille { grid-template-columns: 1fr; }
  .psy-hero__visuel { order: -1; max-width: 420px; margin-inline: auto; }
}

/* =========================================================
   6. Sections génériques
   ========================================================= */
.psy-section { padding-block: var(--psy-section); }
.psy-section--nuit {
  background: var(--psy-nuit);
  color: var(--psy-texte-inv);
}
.psy-section__intro { max-width: 46rem; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.psy-section__intro p { color: var(--psy-texte-2); margin: 0; }
.psy-section--nuit .psy-section__intro p { color: var(--psy-texte-inv-2); }

/* =========================================================
   7. La méthode — parcours en 3 étapes (séquence réelle)
   ========================================================= */
.psy-etapes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: etape;
}
.psy-etape {
  position: relative;
  background: var(--psy-blanc);
  border: 1px solid var(--psy-ligne);
  border-radius: var(--psy-radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  counter-increment: etape;
}
.psy-etape::before {
  content: counter(etape, decimal-leading-zero);
  font-family: var(--psy-mono);
  font-size: 0.85rem;
  color: var(--psy-lueur-fonce);
  letter-spacing: 0.1em;
}
.psy-etape h3 { margin-top: 0.5rem; }
.psy-etape p { color: var(--psy-texte-2); margin: 0; font-size: 0.98rem; }
/* fil conducteur entre les étapes */
.psy-etape:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.35rem;
  right: -1.4rem;
  width: 1.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--psy-lueur), transparent);
}
@media (max-width: 820px) {
  .psy-etapes { grid-template-columns: 1fr; }
  .psy-etape:not(:last-child)::after { display: none; }
}

/* =========================================================
   8. Modules / programmes
   ========================================================= */
.psy-modules {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.3rem;
}
.psy-module {
  background: var(--psy-encre-2);
  border: 1px solid var(--psy-ligne-inv);
  border-radius: var(--psy-radius-lg);
  padding: 1.7rem 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.psy-module:hover {
  transform: translateY(-4px);
  border-color: var(--psy-lueur);
}
.psy-module__icone {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(233, 161, 59, 0.14);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.psy-module h3 { color: var(--psy-texte-inv); margin-bottom: 0.4rem; }
.psy-module p { color: var(--psy-texte-inv-2); font-size: 0.95rem; margin: 0; }
.psy-module__meta {
  margin-top: 1rem;
  font-family: var(--psy-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--psy-brume);
}

/* =========================================================
   9. Auto-évaluation & suivi
   ========================================================= */
.psy-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.psy-duo + .psy-duo { margin-top: clamp(3.5rem, 8vw, 6rem); }
.psy-duo__texte p { color: var(--psy-texte-2); }
.psy-duo__texte ul {
  padding-left: 1.1rem;
  color: var(--psy-texte-2);
}
.psy-duo__texte li { margin-bottom: 0.4rem; }
@media (max-width: 820px) {
  .psy-duo { grid-template-columns: 1fr; }
}

/* Carte « progression » illustrative */
.psy-carte-suivi {
  background: var(--psy-blanc);
  border: 1px solid var(--psy-ligne);
  border-radius: var(--psy-radius-lg);
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(19, 26, 46, 0.08);
}
.psy-carte-suivi__titre {
  font-family: var(--psy-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--psy-texte-2);
  margin: 0 0 1.2rem;
}
.psy-jauge { margin-bottom: 1rem; }
.psy-jauge__ligne {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}
.psy-jauge__valeur { font-family: var(--psy-mono); color: var(--psy-texte-2); }
.psy-jauge__barre {
  height: 8px;
  border-radius: 999px;
  background: rgba(27, 34, 55, 0.08);
  overflow: hidden;
}
.psy-jauge__remplissage {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--psy-brume), var(--psy-lueur));
}

/* =========================================================
   10. Tarifs
   ========================================================= */
.psy-bascule {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--psy-encre-2);
  border: 1px solid var(--psy-ligne-inv);
  border-radius: 999px;
  padding: 0.3rem;
  margin-bottom: 2.4rem;
}
.psy-bascule button {
  border: none;
  background: transparent;
  color: var(--psy-texte-inv-2);
  font-family: var(--psy-corps);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
}
.psy-bascule button[aria-pressed="true"] {
  background: var(--psy-lueur);
  color: var(--psy-nuit);
}
.psy-bascule__economie {
  font-family: var(--psy-mono);
  font-size: 0.72rem;
  color: var(--psy-lueur);
  padding-right: 0.8rem;
}

.psy-tarifs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: 780px;
}
.psy-tarif {
  background: var(--psy-encre-2);
  border: 1px solid var(--psy-ligne-inv);
  border-radius: var(--psy-radius-lg);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.psy-tarif--vedette { border-color: var(--psy-lueur); position: relative; }
.psy-tarif--vedette::before {
  content: "Recommandé";
  position: absolute;
  top: -0.75rem;
  left: 1.6rem;
  background: var(--psy-lueur);
  color: var(--psy-nuit);
  font-family: var(--psy-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}
.psy-tarif h3 { color: var(--psy-texte-inv); }
.psy-tarif__prix {
  font-family: var(--psy-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--psy-texte-inv);
  line-height: 1;
  margin: 0.6rem 0 0.2rem;
}
.psy-tarif__prix small {
  font-family: var(--psy-corps);
  font-size: 1rem;
  font-weight: 500;
  color: var(--psy-texte-inv-2);
}
.psy-tarif__detail {
  font-size: 0.88rem;
  color: var(--psy-texte-inv-2);
  font-family: var(--psy-mono);
  margin-bottom: 1.2rem;
  min-height: 1.4em;
}
.psy-tarif ul {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  color: var(--psy-texte-inv-2);
  font-size: 0.95rem;
  flex: 1;
}
.psy-tarif li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.55rem;
}
.psy-tarif li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--psy-lueur);
}
.psy-tarif .psy-btn { justify-content: center; }

/* =========================================================
   11. FAQ
   ========================================================= */
.psy-faq { max-width: 760px; }
.psy-faq details {
  border-bottom: 1px solid var(--psy-ligne);
  padding-block: 1.1rem;
}
.psy-faq summary {
  font-family: var(--psy-display);
  font-weight: 600;
  font-size: 1.08rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.psy-faq summary::-webkit-details-marker { display: none; }
.psy-faq summary::after {
  content: "+";
  font-family: var(--psy-mono);
  color: var(--psy-lueur-fonce);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}
.psy-faq details[open] summary::after { transform: rotate(45deg); }
.psy-faq details p {
  color: var(--psy-texte-2);
  margin: 0.8rem 0 0;
  max-width: 60ch;
}

/* =========================================================
   12. Avertissement & CTA final
   ========================================================= */
.psy-avertissement {
  border: 1px solid var(--psy-ligne);
  border-left: 3px solid var(--psy-brume);
  border-radius: var(--psy-radius);
  background: var(--psy-blanc);
  padding: 1.2rem 1.5rem;
  font-size: var(--psy-t-petit);
  color: var(--psy-texte-2);
  max-width: 760px;
  margin-top: 2.5rem;
}

.psy-cta-final {
  text-align: center;
  padding-block: var(--psy-section);
  background: radial-gradient(90% 120% at 50% 100%, #223054 0%, var(--psy-nuit) 60%);
  color: var(--psy-texte-inv);
}
.psy-cta-final h2 { max-width: 22ch; margin-inline: auto; }
.psy-cta-final p { color: var(--psy-texte-inv-2); max-width: 40rem; margin: 0 auto 2rem; }

/* =========================================================
   13. Pied de page
   ========================================================= */
.psy-pied {
  background: var(--psy-nuit);
  color: var(--psy-texte-inv-2);
  border-top: 1px solid var(--psy-ligne-inv);
  padding-block: 3rem 2rem;
  font-size: 0.92rem;
}
.psy-pied__grille {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.psy-pied h4 {
  font-family: var(--psy-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--psy-brume);
  margin: 0 0 0.9rem;
}
.psy-pied ul { list-style: none; margin: 0; padding: 0; }
.psy-pied li { margin-bottom: 0.5rem; }
.psy-pied a { color: var(--psy-texte-inv-2); text-decoration: none; }
.psy-pied a:hover { color: var(--psy-texte-inv); }
.psy-pied__legal {
  border-top: 1px solid var(--psy-ligne-inv);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: space-between;
  font-size: 0.8rem;
  font-family: var(--psy-mono);
}
@media (max-width: 820px) {
  .psy-pied__grille { grid-template-columns: 1fr; }
}

/* =========================================================
   13b. Neurosciences & philosophie — l'Esprit du mois
   ========================================================= */
.psy-section--brume {
  background: linear-gradient(180deg, #e9ecf5 0%, var(--psy-porcelaine) 100%);
}
.psy-esprit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.psy-citation {
  background: var(--psy-nuit);
  color: var(--psy-texte-inv);
  border-radius: var(--psy-radius-lg);
  padding: 2.2rem 2rem;
  position: relative;
  box-shadow: 0 24px 50px rgba(19, 26, 46, 0.18);
}
.psy-citation blockquote {
  margin: 0;
  font-family: var(--psy-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.35;
  font-weight: 600;
}
.psy-citation figcaption {
  margin-top: 1.2rem;
  font-family: var(--psy-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--psy-brume);
}
.psy-citation::before {
  content: "";
  position: absolute;
  top: -10px; left: 2rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--psy-lueur);
  box-shadow: 0 0 0 6px rgba(233, 161, 59, 0.25);
}
.psy-esprit__points { list-style: none; margin: 1.2rem 0 0; padding: 0; color: var(--psy-texte-2); }
.psy-esprit__points li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.7rem;
}
.psy-esprit__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--psy-lueur);
}
@media (max-width: 820px) {
  .psy-esprit { grid-template-columns: 1fr; }
}

/* Garantie de mesure */
.psy-garantie {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px dashed var(--psy-lueur);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-family: var(--psy-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--psy-lueur);
}

/* Parcours expert mis en avant */
.psy-module--vedette {
  grid-column: 1 / -1;
  border-color: var(--psy-lueur);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.psy-module--vedette:hover { transform: none; }
.psy-badge {
  display: inline-block;
  font-family: var(--psy-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--psy-lueur);
  color: var(--psy-nuit);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.psy-module--vedette ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--psy-texte-inv-2);
  font-size: 0.92rem;
}
.psy-module--vedette ul li {
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.psy-module--vedette ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--psy-lueur);
}
@media (max-width: 820px) {
  .psy-module--vedette { grid-template-columns: 1fr; }
}

/* Dossier de liaison — carte façon document */
.psy-dossier {
  background: var(--psy-blanc);
  border: 1px solid var(--psy-ligne);
  border-radius: var(--psy-radius-lg);
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(19, 26, 46, 0.08);
  position: relative;
}
.psy-dossier::before {
  content: "PDF · À remettre à votre praticien";
  font-family: var(--psy-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--psy-lueur-fonce);
}
.psy-dossier h3 { margin-top: 0.6rem; }
.psy-dossier ol {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--psy-texte-2);
  font-size: 0.95rem;
}
.psy-dossier ol li { margin-bottom: 0.5rem; }

/* Section fondateur — passerelle clinique */
.psy-fondateur-carte {
  background: var(--psy-nuit);
  color: var(--psy-texte-inv);
  border-radius: var(--psy-radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: 0 24px 50px rgba(19, 26, 46, 0.18);
  text-align: center;
}
.psy-monogramme {
  width: 88px; height: 88px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--psy-encre-2);
  border: 2px solid var(--psy-lueur);
  font-family: var(--psy-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--psy-lueur);
}
.psy-fondateur-carte h3 { color: var(--psy-texte-inv); margin-bottom: 0.3rem; }
.psy-fondateur-carte .psy-titre-pro {
  font-family: var(--psy-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--psy-brume);
  margin: 0 0 1.1rem;
}
.psy-fondateur-carte .psy-domaines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.psy-fondateur-carte .psy-domaines li {
  border: 1px solid var(--psy-ligne-inv);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  font-size: 0.8rem;
  color: var(--psy-texte-inv-2);
}
.psy-mention-independance {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--psy-texte-2);
  max-width: 46ch;
}

/* =========================================================
   14. Gabarits éditoriaux (blog / pages)
   ========================================================= */
.psy-page-claire .psy-contenu {
  padding-block: clamp(3rem, 7vw, 5rem);
}
.psy-article {
  max-width: 720px;
  margin-inline: auto;
}
.psy-article h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
}
.psy-article__meta {
  font-family: var(--psy-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--psy-texte-2);
  margin-bottom: 2rem;
}
.psy-article .entry-content h2 { font-size: 1.6rem; margin-top: 2.4rem; }
.psy-article .entry-content h3 { margin-top: 1.8rem; }
.psy-article .entry-content a { color: var(--psy-lueur-fonce); }
.psy-article .entry-content blockquote {
  border-left: 3px solid var(--psy-lueur);
  margin: 1.6rem 0;
  padding: 0.2rem 0 0.2rem 1.3rem;
  color: var(--psy-texte-2);
  font-style: italic;
}

.psy-liste-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
}
.psy-carte-article {
  background: var(--psy-blanc);
  border: 1px solid var(--psy-ligne);
  border-radius: var(--psy-radius-lg);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.psy-carte-article:hover { transform: translateY(-4px); border-color: var(--psy-brume); }
.psy-carte-article h2 { font-size: 1.25rem; margin: 0.4rem 0 0.6rem; }
.psy-carte-article a { text-decoration: none; }
.psy-carte-article p { color: var(--psy-texte-2); font-size: 0.95rem; margin: 0 0 1rem; flex: 1; }
.psy-carte-article time {
  font-family: var(--psy-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--psy-texte-2);
}

.psy-pagination {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.5rem;
  font-family: var(--psy-mono);
}
.psy-pagination .page-numbers {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--psy-ligne);
  border-radius: 8px;
  text-decoration: none;
}
.psy-pagination .current {
  background: var(--psy-nuit);
  color: var(--psy-texte-inv);
  border-color: var(--psy-nuit);
}



/* v1.1.4 — actions de la carte vedette */
.psy-module__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.psy-module--vedette ul strong { color: var(--psy-lueur, #e9a13b); }


/* v1.1.5 — carte vedette double : TDAH adulte · enfant */
.psy-module--double { align-items: start; }
.psy-vedette__produit h3 { font-size: 1.3rem; margin: 0.6rem 0; }
.psy-vedette__produit p { font-size: 0.95rem; }
.psy-vedette__pont { grid-column: 1 / -1; margin: 0.4rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(168, 179, 212, 0.25); font-size: 0.88rem; color: var(--psy-brume, #a8b3d4); }
@media (max-width: 760px) { .psy-vedette__pont { grid-column: auto; } }
