/* ===================== */
/* Listen im Blockeditor */
/* ===================== */

/* Basis-Einr�ckung f�r UL/OL */
.boxed-content :where(ul, ol) {
  margin: 1rem 0 1.25rem 1.5rem;  /* oben/unten Abstand, links Einzug */
  padding-left: 1.25rem;          /* zus�tzlicher Einzug f�r Marker/Zahlen */
}

/* Listenelemente: lesbarer Zeilenabstand */
.boxed-content li {
  margin-bottom: 0.45rem;
  line-height: 1.6;
}

/* Verschachtelte Listen noch etwas weiter einr�cken */
.boxed-content li :where(ul, ol) {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  margin-left: 1rem;
}

/* ===================== */
/* Bilder im Blockeditor */
/* ===================== */
.boxed-content img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 1rem auto;
}