﻿#partialText.collapse:not(.show) {
    display: block;
    height: 10rem; /* Adjust based on line-height */
    overflow: hidden;
}

#partialText.collapsing {
    height: 10rem;
}

[data-bs-toggle="collapse"][aria-expanded="true"]::before {
    content: "Read Less ";
}

[data-bs-toggle="collapse"][aria-expanded="false"]::before {
    content: "Read More ";
}