.zoom-teaser__tab {
  overflow: hidden;
  position: absolute;
  padding: 20px;
  background: #fff;
  border-left: 0.5px solid #eee;
  border-right: 0.5px solid #eee;
  transition: 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
.zoom-teaser__button {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0;
  width: 100%;
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 36px, 0);
}
.zoom-teaser__tab:hover .zoom-teaser__button {
  transform: translate3d(0, 0, 0);
}
.zoom-teaser__tab * {
  -webkit-user-select: none;
          user-select: none;
}
.zoom-teaser__title {
  font-size: 20px;
  color: #424242;
  transition: 600ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: font-size, color;
}
.zoom-teaser__title--active {
  font-size: 30px;
  color: #6aaf4e;
}
.zoom-teaser__text {
  transition: 600ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  zoom: 0;
}
.zoom-teaser__text--active {
  opacity: 1;
  zoom: 1;
}
.zoom-teaser {
  position: relative;
  width: 100%;
  height: 500px;
}
