.property-description {
  margin-bottom: 2rem;
}

.property-description__content {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
  transition: max-height 0.3s ease;
}

.property-description__content--truncated {
  max-height: 4.8em; /* Approximately 3 lines */
  overflow: hidden;
  position: relative;
}

.property-description__content--truncated::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1.6em;
  background: linear-gradient(to bottom, transparent, white);
}

.property-description__content p {
  margin: 0 0 1rem 0;
}

.property-description__content p:last-child {
  margin-bottom: 0;
}

.property-description__read-more {
  display: inline-block;
  color: #ca2a2a;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.property-description__read-more:hover {
  opacity: 0.8;
  text-decoration: underline;
}
