.dm-teaserClusterHeadlineHome {
  background: var(--brandColor);
  display: block;
  width: 100%;
  font-family: var(--textFont);
  min-height: 2.5rem;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px 20px 10px 10px;
  position: relative;
  color: var(--white);
}

.dm-teaserClusterHeadlineHome__link {
  position: absolute;
  inset: 0;
}

.dm-teaserClusterHeadlineHome__text {
  position: relative;
  display: inline-block;
}

.dm-teaserClusterHeadlineHome__text:after {
  content:"";
  position: absolute;
  width: 18px;
  height: 23px;
  background: var(--white);
  top:0;
  right: -18px;
  -webkit-mask: var(--arrowRight) no-repeat center center / 50%;
  mask: var(--arrowRight) no-repeat center center / 50%;
}

@media (min-width: 768px) {
  .dm-teaserClusterHeadlineHome {
    margin-left: 0;
    margin-right: 0;
    border-bottom: 1px solid var(--grey);
  }
}

