.teaser-fill[href]:hover, .teaser-fill[data-slideout]:hover {
  box-shadow: 0px 3px 6px #00000029;
}

.teaser-fill {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  color: var(--colour-neutral);
  background: var(--colour-accent);
  padding: var(--spacing);
  position: relative;
  --imageHeight: 128px;
}
.teaser-fill .picture img {
  -o-object-fit: cover;
  object-fit: cover;
}
.teaser-fill__content {
  position: relative;
  z-index: 15;
  color: inherit;
}
.teaser-fill__content > * + * {
  margin-top: 10px;
}
.teaser-fill__content .title__main, .teaser-fill__content .title__sub {
  color: inherit;
}
.teaser-fill__image {
  height: var(--imageHeight);
  margin-top: var(--spacing);
}
.teaser-fill__image .picture {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.teaser-fill__image .picture img {
  -o-object-fit: cover;
  object-fit: cover;
}
.teaser-fill--has-overlay {
  position: relative;
}
.teaser-fill--has-overlay:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--bg, #000);
  opacity: var(--opacity, 0.8);
  pointer-events: none;
}
.teaser-fill[href], .teaser-fill[data-slideout] {
  cursor: pointer;
  transition: opacity 0.4s ease, box-shadow 0.4s ease;
}
.teaser-fill[href]:hover, .teaser-fill[data-slideout]:hover {
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width: 991px) {
  .teaser-fill {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .teaser-fill__content {
    -webkit-flex: 1;
    flex: 1;
  }
  .teaser-fill__image {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 992px) {
  .teaser-fill {
    --imageHeight: 210px;
  }
}
@media (min-width: 1500px) {
  .teaser-fill {
    --imageHeight: 300px;
  }
}