
/* Collapse pricing body by default */
.eael-pricing-item .body {
  max-height: 200px; /* adjust visible height */
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

/* Fade effect at the bottom */
.eael-pricing-item .body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
}

.eael-pricing-item .body.expanded {
  max-height: 1000px;
}

.eael-pricing-item .body.expanded::after {
  display: none;
}

/* Read more link style */
.read-more-toggle {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  position: relative;
  top: -15px;  /* pull it slightly upward */
}
