.PostContent.Paywall--active .PostContent__Content {
  max-height: 300px;
  position: relative;
  overflow: hidden;
}

.PostContent.Paywall--active .PostContent__Content::after {
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1) 80%
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
}

.PostContent__Paywall {
    display: none;
}

.PostContent.Paywall--active .PostContent__Paywall {
  display: inherit;
}