.card-description {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(0deg, rgba(23,255,8,0) 0%, rgba(225,20,230,1) 20%);
    mask-image:  linear-gradient(0deg, rgba(23,255,8,0) 0%, rgba(225,20,230,1) 20%);
  }

  .card-description.expanded {
    -webkit-line-clamp: unset;
    -webkit-mask-image: none!important;
    mask-image: none!important;
  }
  
  .read-more {
    padding:0px;
    background: none;
    display: block;
    border: none;
    color: var(--e-global-color-accent);
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    text-decoration: underline;
  }
  

  