/*
 * identification.css — PsyRisso Desktop
 * Sous-page HPI : Identification (pages/identification.php)
 * Layout générique (.bande, .cadre, .cadre-lecture) dans layout.css.
 * Typo alignée sur le standard réel du site (cf. qui-suis-je.css).
 *
 * Les images sont en position absolute (pas dans le flux / la grille) pour
 * que .cadre garde exactement la même largeur que sur toutes les autres
 * pages (pleine largeur de .bande-inner, limitée en lecture par
 * .cadre-lecture). Elles ne s'affichent qu'au-delà d'un écran assez large
 * pour ne rien chevaucher.
 *
 * Refonte du 1er août 2026 : contenu étoffé, réparti sur 7 bandes
 * alternées (une par titre). `.ident-wrap` ne couvre plus que la bande 1
 * (les images latérales étaient centrées sur toute la hauteur de la
 * page une fois le contenu réparti sur 7 bandes, ce qui ne correspondait
 * plus à rien de pertinent visuellement).
 */

.ident-wrap { position: relative; }

.ident-side-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  display: none;
}
.ident-side-left { left: -190px; }
.ident-side-right { right: -190px; }

.ident-side-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(27,59,53,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ident-side-img:hover img {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(27,59,53,0.22);
}

@media (min-width: 1650px) {
  .ident-side-img { display: block; }
}

.ident-h1 {
  font-family: var(--font-heading, Georgia, 'Times New Roman', serif);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: normal;
  color: var(--bleu);
  line-height: 1.3;
  margin: 0 0 1.5rem;
}

.ident-h2 {
  font-family: var(--font-heading, Georgia, 'Times New Roman', serif);
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--bleu);
  line-height: 1.3;
  margin: 2rem 0 0.6rem;
}

.ident-chapeau {
  font-size: 1rem;
  color: var(--bleu);
  line-height: 1.7;
  border-left: 3px solid var(--dore);
  padding-left: 1rem;
  margin: 0 0 1.6rem;
}

.ident-p {
  /* font-size: 0.95rem; line-height: 1.78; text-align: justify; -- valeurs d'origine */
  font-family: Calibri, Carlito, Arial, sans-serif;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  margin: 0 0 1rem;
}

.ident-test-link { color: var(--dore); text-decoration: underline; text-underline-offset: 2px; }
.ident-test-link:hover { color: var(--bleu); }
.ident-content {
  max-width: none;
}

/* ══════════════════════════════════════════════════════════════
   AJOUTS DU 1er AOÛT 2026 — page étoffée « L'identification »
   Fil d'Ariane, encadré, listes à losanges, bloc de clôture, lien
   « Suite », bloc de références.

   Couleurs employées (charte du site), écrites en dur comme dans les
   feuilles déjà livrées — à basculer sur les variables de palettes.css
   lors du chantier prévu :
     #1e4f4c  titre        #5a8a87  accent      #3D5A58  texte
     #d4ecea  filet        #CCA15C  doré        #FAF6EC  sable
   ══════════════════════════════════════════════════════════════ */

/* --- Fil d'Ariane --------------------------------------------------------- */
.ident-fil {
  font-size: .82rem;
  color: #5a8a87;
  margin: 0 0 1.4rem;
  letter-spacing: .01em;
}
.ident-fil a {
  color: #5a8a87;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.ident-fil a:hover,
.ident-fil a:focus-visible { border-bottom-color: #CCA15C; }
.ident-fil-sep { margin: 0 .45rem; color: #CCA15C; }
.ident-fil-ici { color: #3D5A58; }

/* --- Encadré (fond sable, filet doré à gauche) ---------------------------- */
.ident-encadre {
  background: #FAF6EC;
  border-left: 3px solid #CCA15C;
  padding: 1.15rem 1.4rem 1.05rem;
  margin: 2rem 0;
}
.ident-encadre p {
  /* font-size: .95rem; line-height: 1.7; text-align: justify; hyphens: auto; -- valeurs d'origine */
  font-family: Calibri, Carlito, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #3D5A58;
  text-align: left;
  margin: 0;
}
.ident-encadre p + p { margin-top: .7rem; }
.ident-encadre-titre {
  font-family: Georgia, "Times New Roman", serif;
  color: #1e4f4c;
  font-size: 1rem !important;
  margin-bottom: .55rem !important;
  text-align: left !important;
}

/* --- Listes à losanges ---------------------------------------------------- */
.ident-liste {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 1.6rem;
}
.ident-liste li {
  /* line-height: 1.75; text-align: justify; hyphens: auto; -- valeurs d'origine */
  font-family: Calibri, Carlito, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #3D5A58;
  text-align: left;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .85rem;
}
.ident-liste li:last-child { margin-bottom: 0; }
.ident-liste li::before {
  content: "♦";
  position: absolute;
  left: 0;
  top: 0;
  color: #CCA15C;
  font-size: .68rem;
  line-height: 2.2;
}
.ident-liste strong { color: #1e4f4c; }

/* --- Bloc de clôture ------------------------------------------------------ */
.ident-cloture {
  border: 1px solid #d4ecea;
  border-top: 3px solid #CCA15C;
  padding: 1.4rem 1.6rem;
  margin: 2.4rem 0 1.8rem;
  background: #fff;
}
.ident-cloture p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #1e4f4c;
  text-align: justify;
  hyphens: auto;
}

/* --- Lien « Suite » ------------------------------------------------------- */
.ident-suite {
  margin: 1.8rem 0 0;
  text-align: right;
}
.ident-suite a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .97rem;
  color: #1e4f4c;
  text-decoration: none;
  border-bottom: 1px solid #d4ecea;
  padding-bottom: 2px;
}
.ident-suite a:hover,
.ident-suite a:focus-visible { border-bottom-color: #CCA15C; }

/* --- Bloc de références --------------------------------------------------- */
/*.ident-refs {
  margin: 2.4rem auto 0;
  max-width: 700px;
  padding-top: 1.2rem;
  border-top: 1px solid #d4ecea;
}*/

.ident-refs {
  margin: 2.4rem 0 0;
  max-width: none;
  padding-top: 1.2rem;
  border-top: 1px solid #d4ecea;
}


.ident-refs-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #CCA15C;
  margin: 0 0 .7rem;
}
.ident-refs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/*
.ident-refs li {
  font-size: .82rem;
  line-height: 1.65;
  color: #5a8a87;
  margin-bottom: .55rem;
  padding-left: 1.1rem;
  text-indent: -1.1rem;
}*/
.ident-refs li {
  /* font-size: .82rem; line-height: 1.65; color: #5a8a87; -- valeurs d'origine */
  font-family: Calibri, Carlito, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #359C95;
  margin-bottom: .55rem;
  padding-left: 1.1rem;
  text-indent: -1.1rem;
}

.ident-refs li:last-child { margin-bottom: 0; }
.ident-refs a { color: #5a8a87; }

/* --- Écrans étroits ------------------------------------------------------- */
@media (max-width: 700px) {
  .ident-encadre { padding: 1rem 1.1rem; }
  .ident-cloture { padding: 1.1rem 1.2rem; }
  .ident-encadre p,
  .ident-liste li,
  .ident-cloture p { text-align: left; }
  .ident-suite { text-align: left; }
}