.dm-article {
  background: var(--articleBGColor);
  margin-bottom: 2rem;
}

.dm-article__header{
  display: flex;
  align-items: center;
}

.dm-article__headline {
  font-family: var(--headlineFont);
  font-size: 1.6rem;
  line-height: 1.3em;
}

.dm-article__headline strong {
  display: flex;
  font-family: var(--textFont);
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.3em;
  font-style: normal;
  padding-bottom: .3em;
  color: var(--brandColor);
  column-gap: .5em;
  align-items: center;
}

.dm-article--kplus .dm-article__headline strong:before {
  content: "";
  margin-left: .1em;
  min-width: 1em;
  height: 1em;
  -webkit-mask: var(--kPlus) no-repeat center center / contain;
  mask: var(--kPlus) no-repeat center center / contain;
  background: var(--white);
  z-index: 1;
  position: relative;
}

.dm-article--kplus .dm-article__headline strong:after {
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  background: var(--brandColor);
  border-radius: var(--borderRadius);
}

.rundschau-online .dm-article--kplus .dm-article__headline strong:before {
  -webkit-mask: var(--krplus) no-repeat center center / contain;
  mask: var(--krplus) no-repeat center center / contain;
  background: var(--logoOrange);
  min-width: 1.3em;
}

.rundschau-online .dm-article--kplus .dm-article__headline strong:after {
  content: none;
}

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

.dm-article__info {
  display: flex;
  column-gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.dm-article__authorName,
.dm-article__date {
  color: var(--darkGrey);
  line-height: 1.5;
}

.dm-article__authorName a {
  color: var(--darkGrey);
  text-decoration: underline;
}

.dm-article__authorImage {
  display: none;
  height: 5.5rem;
  border-radius: 100%;
  margin-right: 1rem;
}

.dm-article--opinion .dm-article__headline {
  font-style: italic;
}

.dm-article--opinion .dm-article__authorName:before {
  content: 'Ein Kommentar ';
}

.dm-article--opinion .dm-article__authorImage {
  display: block;
}

.dm-article__intro {
  font-size: calc(var(--articleTextSize) + 2px);
  line-height: 1.5;
  font-weight: bold;
  color: var(--darkBlue);
}

.dm-article__body {
  overflow: auto;
}

.dm-article__subheadline {
  font-size: 1.2em;
  font-weight: bold;
}

.dm-article__subheadline.dm-article--itemMargin {
  line-height: 1.25em;
  margin-bottom: calc(var(--articleItemMarginBottom) * .5);
}

hr.dm-article__horizontalRule {
  margin-bottom: 1.7rem;
  background: linear-gradient(90deg, var(--brandColor) 0%, var(--brandColor) 20%, transparent 21%) no-repeat bottom/100% 1px;
  height: 1px;
  border: none;
}

@media (min-width: 768px) {

  .dm-article__headline {
    font-size: 2rem;
    line-height: 2.625rem;
  }

  .dm-article__body {
    margin: 0;
  }

  .dm-article__caption {
    color: var(--grey);
    font-size: 0.8rem;
    margin-block: 0.5rem;
  }

}

.dm-article__header {
  margin-left: var(--mobileMargin);
  margin-right: var(--mobileMargin);
  margin-bottom: calc(var(--articleItemMarginBottom) * .5);
}

.dm-article--itemMargin {
  margin-left: var(--mobileMargin);
  margin-right: var(--mobileMargin);
  margin-bottom: var(--articleItemMarginBottom);
}

@media (min-width: 768px) {
  .dm-article__header {
    margin-left: 0;
    margin-right: 0;
  }

  .dm-article--itemMargin {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}

@media (max-width: 767px) {
  .dm-article__headline {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }

  .dm-article__authorImage {
    height: 4.5rem;
  }
}

