.leadership_ctn .short-bio {
    margin: 0 !important;
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    position: relative;
    max-height: 78px;
    transition: max-height 200ms ease-in-out;
    padding-top: 0px !important;
}

.leadership_ctn .short-bio p:first-child {
    padding-top: 15px !important;
}

.leadership_ctn .short-bio p {
    display: block !important;
    transition: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding-top: 20px !important;
    overflow: visible !important;
}

.leadership_ctn .short-bio.expanded {
    -webkit-line-clamp: unset;
    max-height: 1000px;
    /* Large enough for full text */
}

.leadership_ctn .short-bio.collapsing {
    max-height: 78px;
    /* Collapse smoothly first */
    transition: max-height 200ms ease-in-out;
}