/* Container for the text */
.content-wrapper {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limit to 4 lines */
  line-clamp: 4; /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  transition: max-height 0.3s ease;
}

/* The Gradient Fade Effect */
.content-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; /* Height of the fade */
  background: linear-gradient(transparent, white);
  pointer-events: none; /* Allows clicking through the mask */
}

/* State when expanded */
.content-wrapper.expanded {
  display: block; /* Remove line clamp */
  -webkit-line-clamp: none;
  line-clamp: none;
}

/* Hide gradient when expanded */
.content-wrapper.expanded::after {
  display: none;
}

.read-more-btn {
  margin-top: 10px;
  cursor: pointer;
  color: blue;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
}
body {
  max-width: 600px;
  }
