.job-description-wrapper {
    position: relative;
}
.job-description.collapsed {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.job-description.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
}
