/* ── Poème – styles sobres et typographiques ── */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,opsz,wght@0,6..144,400;1,6..144,400&display=swap');


.node-3 .node__content {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}


.node-3 .field--name-body {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, #f0e8d8 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, #e8dfd0 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, #f5f0e8 0%, transparent 80%);
  background-color: #f7f2ea;
  border-radius: 2px;
  padding: 1.2rem 1.6rem;
  box-shadow:
    0 1px 3px rgba(90, 75, 50, 0.08),
    0 4px 20px rgba(90, 75, 50, 0.06),
    inset 0 0 60px rgba(200, 184, 154, 0.12);
}

/* Filet décoratif centré au-dessus du premier paragraphe */
.node-3 .field--name-body::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 0px;
  background: #c8b89a;
}

.node-3 .field--name-body p {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #2c2a26;
  text-align: left;
  margin: 0 0 0.8rem;
  font-style: italic;
  padding-bottom: 1rem;
  letter-spacing: 0.01em;
}

.node-3 .field--name-body p:last-child {
  margin-bottom: 0;
}

/* Séparateur discret entre les strophes */
.node-3 .field--name-body p + p {
  padding-top: 2rem;
  border-top: 1px solid #ddd5c4;
}

/* Première lettre de chaque ligne — acrostiche mis en valeur */
.node-3 .field--name-body em {
  display: block;
}

.node-3 .field--name-body em::first-letter {
  color: #a0845a;
  font-size: 1.15em;
  font-weight: 400;
}

.node-3 .field--name-body p:first-child em::first-letter {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* Guillemet ouvrant — ligne seule au-dessus */
.node-3 .field--name-body p:first-child em:first-child::before {
  content: '\00AB';
  display: block;
  color: #c8b89a;
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 0.4rem;
}

/* Guillemet fermant — ligne seule en-dessous */
.node-3 .field--name-body p:last-child em:last-child::after {
  content: '\00BB';
  display: block;
  color: #c8b89a;
  font-size:2rem;
  font-style: italic;
  text-align: right;
  margin-top: 0.4rem;
}