.read-more {
    color: var(--wd-primary-color);
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}
.hidden-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out;
    position: relative;
}
.hidden-text.active {
    max-height: 1000px;
    opacity: 1;
}