.description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 12;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: max-height 0.3s ease;
}
.description.expanded {
  display: block;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.description a {
  color: var(--color-red);
  text-decoration: none;
}
.description p {
  margin-bottom: 1rem;
}
.description p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .description {
    -webkit-line-clamp: 8;
  }
}
.load-more {
  display: none;
  text-align: right;
}

.load-more-btn {
  text-align: right;
  font-weight: bold;
  display: inline-block;
  color: var(--color-dark-gray);
  cursor: pointer;
  margin-bottom: 1rem;
  background-color: var(--color-white);
  font-size: 1rem;
  font-family: "Avenir Next Cyr", sans-serif;
  font-weight: 600;
  width: 6rem;
}

/*# sourceMappingURL=description.css.map */
