.fabula-review {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fabula-review p {
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    font-weight: 600;
}
.fabula-review-text {
    height: 200px;
    overflow: hidden;
}
.fabula-review_big {position: relative}
.fabula-review_big::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4em;
    background: linear-gradient(to bottom, transparent, white 100%);
}
.fabula-review-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: normal;
}
.fabula-review-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.fabula-review-author__desc {
    font-size: var(--text-size);
    opacity: .4;
    font-weight: 400;
}
.fabula-review-popap-btn {
    display: none;
    font-size: var(--small-text-size);
    font-weight: 600;
    border: 0;
    outline: 0;
    background-color: transparent;
    color: var(--brand-color);
    padding: 0;
    text-transform: uppercase;
    margin-top: 16px;
}
.fabula-review-popap-btn:hover {
    color: var(--brand-color-active);
}
.fabula-review_big + .fabula-review-popap-btn {display: block}