.paragraph-text {
    text-align: justify;
    max-height: 74px;
    height: auto;
    position: relative;
    overflow: hidden;
    transition: max-height 1s ease-in-out;
}

.paragraph-text-shadow {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 21px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 83%), rgb(255 255 255));
}



.read-more-link{
    cursor: pointer;
}

.show {
    height: auto;
    max-height: 1500px;
    transition: max-height 1s ease-in-out;
}

.normal-height {
    max-height: fit-content;
    height: auto;
    overflow: auto;
}