.teaser[href]:hover, .teaser[data-slideout]:hover {
  box-shadow: 0px 3px 6px #00000029;
}

.teaser {
  --teaserImageHeight: 100px;
  --new-label-height: 80px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  color: var(--colour-text);
  background: var(--colour-accent);
  padding: var(--spacing);
  --imageHeight: 128px;
  position: relative;
}
.teaser__content, .teaser__image {
  -webkit-flex: 1;
  flex: 1;
}
.teaser__content {
  color: inherit;
}
.teaser__content > * + * {
  margin-top: 10px;
}
.teaser__content .title__main {
  color: inherit;
}
.teaser__image {
  margin-right: var(--spacing);
  height: var(--teaserImageHeight);
}
.teaser__image .picture img {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.teaser--flip {
  --imageHeight: 128px;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.teaser--flip .teaser__content {
  margin-top: 0;
}
.teaser--flip .teaser__image {
  margin-top: var(--spacing);
  margin-bottom: calc(var(--spacing) * -1);
}
.teaser--flip .teaser__image .picture img {
  -o-object-position: bottom;
  object-position: bottom;
}
.teaser--offset .teaser__image {
  width: 100%;
  margin-right: calc(var(--spacing) * -1);
  margin-left: var(--spacing);
}
.teaser--offset.teaser--flip .teaser__image picture img {
  -o-object-position: right;
  object-position: right;
  margin-right: 0;
}
.teaser--fixed-image {
  --imageHeight: 100px;
}
.teaser[href], .teaser[data-slideout] {
  cursor: pointer;
  transition: opacity 0.4s ease, box-shadow 0.4s ease;
}
.teaser[href]:hover, .teaser[data-slideout]:hover {
  opacity: 0.7;
}
.teaser--new:after {
  content: "";
  background-image: var(--new-image);
  width: var(--new-label-height);
  height: var(--new-label-height);
  position: absolute;
  top: 0;
  left: 0;
}
.teaser--new--right:after {
  left: unset;
  right: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.teaser--new--bottom:after {
  top: unset;
  bottom: 0;
}
.teaser--new--bottom.teaser--new--right:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  .teaser {
    --imageHeight: auto;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .teaser {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .teaser__image {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 0;
    height: var(--imageHeight);
  }
  .teaser__content {
    margin-top: var(--spacing);
  }
  .teaser--flip {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .teaser--flip .teaser__image {
    min-height: auto;
  }
  .teaser--new--bottom:after {
    bottom: unset;
    top: calc(var(--imageHeight) - var(--new-label-height) + var(--spacing));
  }
}
@media (min-width: 992px) {
  .teaser {
    --teaserImageHeight: 130px;
    --imageHeight: 130px;
  }
  .teaser--flip {
    --imageHeight: 210px;
  }
  .teaser--fixed-image {
    --imageHeight: 140px;
  }
}
@media (min-width: 1200px) {
  .teaser {
    --teaserImageHeight: 170px;
  }
  .teaser--fixed-image {
    --imageHeight: 120px;
  }
}
@media (min-width: 1500px) {
  .teaser {
    --teaserImageHeight: 220px;
    --imageHeight: 190px;
  }
  .teaser--flip {
    --imageHeight: 300px;
  }
  .teaser--fixed-image {
    --imageHeight: 150px;
  }
}