/* Toggle description text (show more/less) */

.toggle-description-text {
    overflow: hidden;
    transition: max-height 0.4s ease;
    max-height: 120px;
    margin: 0;
    color: #707070;
    font-size: 16px;
  }
  
  .toggle-description-text.expanded {
    max-height: 1000px;
  }
  
  .toggle-description-content {
    display: inline;
  }
  
  .toggle-description-toggle {
    display: block;
    margin-top: 10px;
    text-decoration: underline;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  
  .toggle-description-toggle:hover {
    color: var(--custom-blue);
  }