.clampable-text {
    position: relative;
    overflow: hidden;
    transition: max-height .5s ease;
}

.clampable-text.expanded {
    /* hack to expand/show full text on smaller screens */
    max-height: 200vh !important;
}

.clampable-text:not(.expanded)::after {
    content: '';
    position: absolute;
    top: 80%;
    bottom: 0;
    left: 0;
    right: 0;
    /*background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));*/
}

.clampable-text-toggle {
    border: none;
    padding: 0 !important;
    text-decoration: underline;
    cursor: pointer;
    right: 0;
    bottom: 25px;
    color: #098283;
    background-color: #fff;
}