/* ============================================
   PULLQUOTE EDITORIAL
   Section de pause éditoriale entre 2 blocs longs.
   Filets parchemin haut/bas, Cormorant Italic, fond blanc pur.
   Référence : style guide § 6.6 "Pull-quotes"
   ============================================ */

.pullquote-editorial {
  background: #FFFFFF;
  padding: 96px 32px;
  border-top: 1px solid var(--color-parchemin);
  border-bottom: 1px solid var(--color-parchemin);
  margin: 0;
}

.pullquote-editorial__container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pullquote-editorial__quote {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.pullquote-editorial__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.3;
  color: var(--color-bg-dark);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}

.pullquote-editorial__text em {
  font-style: italic;
}

.pullquote-editorial__attr {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #8C9197;
  display: inline-block;
  padding-top: 8px;
  position: relative;
}

.pullquote-editorial__attr::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-sienne);
  margin: 0 auto 16px;
}

@media (max-width: 768px) {
  .pullquote-editorial { padding: 64px 24px; }
  .pullquote-editorial__text { font-size: 1.5rem; }
}

/* RTL: nothing to flip — the quote is centered. */
