/* Emergency fix for Read More buttons */
.description-container .read-more-btn {
  display: block !important;
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0;
  margin-top: 0.25rem;
  text-align: right;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
}

.description-container .read-more-btn:hover {
  text-decoration: underline;
  color: #1a252f;
}

.package-description-wrapper {
  max-height: 4.5em;
  overflow: hidden;
  transition: max-height 0.3s ease;
  position: relative;
}

.package-description-wrapper.expanded {
  max-height: 300px;
}

.package-description-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background: linear-gradient(to top, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.package-description-wrapper.expanded::after {
  opacity: 0;
}
