
.ac-description-collapsed {
  max-height: 260px;
  overflow: hidden;
  position: relative;
}

.ac-description-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(249,249,249,0) 0%,
    rgba(249,249,249,0.85) 70%,
    #f9f9f9 100%
  );
  pointer-events: none;
}

.ac-description-expanded {
  max-height: none;
  overflow: visible;
}

.ac-description-expanded::after {
  display: none;
}

.ac-description-more {
  display: block;
  margin: 25px auto 0;
  padding: 12px 28px;
  border: 1px solid #B59410;
  background: transparent;
  color: #B59410;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  border-radius: 999px;
  cursor: pointer;
}

.ac-description-more:hover {
  background: #b59410;
  border-color: #b59410;
  color: #fff;
}

