/**
* Theme Name: Goldsmith Child
* Description: This is a child theme of Goldsmith.
* Author: <a href="http://ninetheme.com/about">Ninetheme</a>
* Template: goldsmith
* Version: 1.2.3
*/

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

.field {
  margin-top: 2rem !important;
  margin-bottom: 1rem;
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.show {
  max-height: fit-content;
}

#show-more {
  width: fit-content;
  cursor: pointer;
  background: black;
  color: white;
  transition-duration: 300ms;

  &:hover {
    background: white;
    color: black;
  }
}