.opinion-teaser {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 30px;
}
.opinion-teaser__article {
  position: relative;
  -ms-flex: 1 0 33.3333%;
  -webkit-flex: 1 0 33.3333%;
  flex: 1 0 33.3333%;
  max-width: 33.3333%;
  padding: 20px;
  border: 1px solid #b7b7b7;
  text-align: center;
}
.opinion-teaser__article:nth-child(2n+1) {
  background: #e4dbd4;
}
.opinion-teaser__photo {
  display: block;
  width: 90px;
  margin: 0 auto 12px;
  border-radius: 50%;
  line-height: 0;
  filter: grayscale(100%);
}
.opinion-teaser__author {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 0 8px;
  padding: 0 0 8px;
  font-size: 2rem;
  line-height: 2.3rem;
  font-weight: bold;
  color: #012342;
}
.opinion-teaser__author:before {
  content: '';
  position: absolute;
  top: -102px;
  left: 50%;
  width: 90px;
  height: 90px;
  margin-left: -45px;
  border-radius: 50%;
}
.opinion-teaser__author:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  margin-left: -20px;
  border-bottom: 1px solid #ed1c24;
}
.opinion-teaser__title {
  font-size: 2rem;
  line-height: 2.4rem;
  color: #005bab;
}


@media screen and (max-width: 767px) {
  .opinion-teaser__article {
    -ms-flex: 1 0 50%;
    -webkit-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
  }
  .opinion-teaser__article:nth-child(4n+2),
  .opinion-teaser__article:nth-child(4n+3) {
    background: #fff;
  }
  .opinion-teaser__article:nth-child(4n+1),
  .opinion-teaser__article:nth-child(4n) {
    background: #e4dbd4;
  }
  .opinion-teaser__article:nth-child(2n+1):last-child {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .opinion-teaser {
    display: block;
    margin: 0 0 20px;
  }
  .opinion-teaser__article {
    max-width: none;
    min-height: 100px;
    margin: -1px 0 0;
    padding: 15px 15px 15px 100px;
    text-align: left;
  }
  .opinion-teaser__article:nth-child(n) {
    background: #fff;
  }
  .opinion-teaser__article:nth-child(2n+1) {
    background: #e4dbd4;
  }
  .opinion-teaser__article:nth-child(2n+1):last-child {
    display: block;
  }
  .opinion-teaser__photo {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 70px;
    height: 70px;
    margin: 0;
  }
  .opinion-teaser__author,
  .opinion-teaser__title {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .opinion-teaser__author:before {
    top: 0;
    left: -85px;
    width: 70px;
    height: 70px;
    margin: 0;
  }
  .opinion-teaser__author:after {
    left: 0;
    margin: 0;
  }
}

