.promo-teaser {
  margin: 0 0 20px;
}
.promo-teaser a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 350px;
  padding: 20px 20px 20px calc(100% - 400px);
  background: #fff;
}
.promo-teaser:hover a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 8px;
  right: 8px;
  height: 5px;
  background: var(--grey);
}
.promo-teaser figure {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - 420px);
}
.promo-teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-teaser h2 {
  margin: 0 0 10px;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: bold;
}
.promo-teaser:hover h2 {
  color: var(--blue);
}
.promo-teaser__summary {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  margin: 0 0 20px;
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--dark-grey);
}


@media screen and (max-width: 600px) {
  .promo-teaser {
    margin: 0 0 10px;
  }
  .promo-teaser a {
    min-height: 0;
    padding: 15px;
  }
  .promo-teaser figure {
    position: static;
    width: auto;
    margin: -15px -15px 10px;
  }
  .promo-teaser h2 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .promo-teaser__summary {
    display: none;
  }
}
