.custom-collapsed-description {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.footer-description {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.show-more {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
    height: 36px;
    border-radius: 5px;
    border: 1px solid var(--wd-primary-color);
    color: var(--wd-primary-color);
    font-weight: bold;
    cursor: pointer;
}

.show-more:hover {
    opacity: 0.9;
    background-color: var(--wd-primary-color);
    color: white;
}

.truncate-multi-line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5;
    line-clamp: 5;
}