/*
 * Read More Plugin
 *  by Reece Como
 *  9 Jan 2018
 *
 * Expanded from: "Text Fade Out / Read More Link | CSS-Tricks"
 * https://css-tricks.com/text-fade-read-more/
 */
.read-more {
  max-height: 120px;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.read-more .prompt,
.read-more .collapse {
  width: 100%;
  text-align: center;
  pointer-events: none;
  /* background-image: linear-gradient(to bottom, white, red); */
}

.read-more .collapse {
  padding: 10px;
  margin-top: -23px;
  margin-bottom: 0;
}

.read-more .prompt {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: linear-gradient(to bottom, rgb(255 255 255 / 30%), white);
  border-radius: 10px;
}

.read-more .button {
  color: white;
  padding: 5px 30px;
  border-radius: 99px;
  box-shadow: 0 0 15px 5px white;
  background-color:#d80027;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}
.read-more.big-preview {
  max-height: 240px;
}
.read-more.big-preview .prompt {
  padding-top: 140px;
}
