.__line-clamp {
  position: relative;
  overflow: hidden;
}
.__line-clamp::before {
  content: "...";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 1.5em;
  padding-left: 3px;
  box-sizing: border-box;
  background-color: white;
}
.__line-clamp::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: white;
}