.dm-blockquote {
  margin-bottom: var(--articleItemMarginBottom);
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
  color: var(--darkGrey);
}

.dm-blockquote__quoteText {
  quotes: "„" "“" "‚" "‘"; /* open, close, openInner, closeInner */
  font-style: italic;
  line-height: 1.2;
  font-size: 1.7rem;
}

.dm-blockquote__quoteText:before {
  content: open-quote;
}
.dm-blockquote__quoteText:after {
  content: close-quote;
}

/* the Li-editor inserts a <br> after the quote that screws up quote signs */
.dm-blockquote__quoteText br:last-of-type {
  display: none;
}

.dm-blockquote__quoteAuthor {
  margin-top: .8rem;
}

.dm-blockquote__quoteAuthor:before {
  /* content: "\2014\0020"; */ /* em dash, space */
}

/* ==========================================================================
    Following are styles for tags that the Li-editor uses for text
    formatting. Therefore we have to style the tags directly instead
    of using classes.
   ========================================================================== */

   .dm-blockquote strong,
   .dm-blockquote b {
     font-weight: bold;
   }

   .dm-blockquote em,
   .dm-blockquote i {
     font-style: italic;
   }



