.dm-teaser {
  position: relative;
  background: var(--teaserBGColor);
  overflow-x: hidden;
}

.dm-teaser__sticker {
  position: relative;
  margin-top: -1.5em;
  margin-left: 5%;
  margin-right: 5%;
  padding: .5em;
  border-bottom: 2px solid var(--lightGrey);
  background: var(--white);
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dm-teaser__headline {
  font-family: var(--headlineFont);
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1.1;
  color: var(--mainTextColor);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  padding-bottom: 0.1em;
}

.dm-teaser__headline strong {
  display: block;
  color: var(--brandColor);
}

.dm-teaser__link {
  position: static;
  z-index: 1;
}

.dm-teaser__link:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

a.dm-teaser__category {
  font-size: .90rem;
  padding: .4rem .5rem .5rem;
  background-color: var(--brandColor);
  color: var(--white);
  z-index: 1;
  margin: 0 auto;
  display: none;
}


.dm-teaser__anzeige {
  display: none;
  position: absolute;
  font-size: .75rem;
  padding: .5rem .5rem 2.2rem;
  background-color: var(--brandColor);
  color: var(--white);
  left: 0;
  bottom: 0;
  z-index: 1;
  transform-origin: left bottom;
  line-height: 1em;
}

.dm-teaser__video {
  display: none;
  position: absolute;
  padding: .9rem;
  margin-left: 5%;
  margin-top: 5%;
  background-color: var(--brandColor);
  z-index: 1;
  content: var(--videoPlay);
}

.dm-teaser__gallery {
  display: none;
  position: absolute;
  padding: .8rem;
  margin-left: 5%;
  margin-top: 5%;
  background-color: var(--brandColor);
  z-index: 1;
  content: var(--camera);
}

.dm-teaser--anzeige .dm-teaser__anzeige, .dm-teaser--video .dm-teaser__video, .dm-teaser--gallery .dm-teaser__gallery {
  display: block;
}

.dm-teaser__counter {
  display: none;
  font-family: var(--headlineFont);
  font-weight: bold;
  position: absolute;
  padding: .7rem .9rem;
  background-color: var(--brandColor);
  color: var(--white);
  right: 0;
  top: 0;
  z-index: 1;
  transform-origin: right top;
}

.dm-teaser__counter:after {
  counter-increment: teaserNumber;
  content: counter(teaserNumber);
}

.dm-teaser__author {
  text-align: left;
  font-size: .75rem;
  color: var(--darkGrey);
  margin-left: 5%;
  margin-right: 5%;
  margin-top: .3rem;
}

.dm-teaser__siteName {
  position: absolute;
  font-size: .75rem;
  padding: .5rem .5rem 2.2rem;
  background-color: var(--brandColor);
  color: var(--white);
  right: 0;
  bottom: 0;
  z-index: 1;
  transform-origin: right bottom;
}

.dm-teaser--counter .dm-teaser__counter {
  display: block;
}

.dm-teaser--inArticle {
  margin-bottom: var(--articleItemMarginBottom);
  background: transparent;
  overflow: hidden;
}

.dm-teaser--inArticle .dm-teaser__headline {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .dm-teaser {
    margin-left: var(--mobileMargin);
    margin-right: var(--mobileMargin);
  }
}

@media (min-width: 768px) {
  .dm-teaser__headline {
    font-size: 1.3rem;
    line-height: 1.1;
  }

  .dm-teaser--inArticle {
    max-width: 50%;
  }

  .dm-teaser__sticker {
    min-height: 4em;
  }
}
