

/*
BESD Zitat – Basisstil (Frontend + Editor)
Französische Anführungszeichen (« … ») am Anfang/Ende des Zitats.
*/

.besdzitat {
  --q-color: #111827;          /* Textfarbe */
  --q-accent: #9ca3af;         /* Akzent (Guillemets / Linie) */
  --q-bg: transparent;         /* Hintergrund, falls gewünscht */
  --q-maxw: 70ch;              /* max Breite des Zitats */

  background: var(--q-bg);
  color: var(--q-color);
  max-width: var(--q-maxw);
  margin: 1.25rem 0;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  position: relative;
	margin:0 auto 0 auto;
}

.besdzitat__text {
  margin: 0;
  font-style: italic;
  position: relative;	
font-family: "Roboto Serif", serif;	
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  color: var(--rot3);

}

/* Französische Anführungszeichen einfügen */
.besdzitat__text::before,
.besdzitat__text::after {
  color: var(--q-accent);
  font-size: 1.05em;
  line-height: 1;
}

.besdzitat__text::before {
  content: "«";
  margin-right: .25ch;
}

.besdzitat__text::after {
  content: "»";
  margin-left: .25ch;
}

.besdzitat__cite {
  margin-top: 1.2rem;
   margin: 0;
 
font-family: "Roboto flex", serif;	
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: var(--fontb2);
  text-align: right;
	
	
}

/* Editor-Helfer (nur Optik) */
.besdzitat--editor {
  outline: 1px dashed rgba(0,0,0,.08);
  border-radius: .5rem;
}


