/* Кнопка скрыта по умолчанию */
.review-read-more {
    display: none;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    margin-bottom: 14px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue, #1a56db);
    transition: color 0.2s;
    line-height: 1.4;
}
.review-read-more:hover { color: var(--red, #ff5252); }
.review-read-more i { font-size: 10px; transition: transform 0.3s; }

/* Только когда JS навесил .is-collapsible */
.review-text-wrap.is-collapsible .review-text {
    max-height: 168px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

.review-text-wrap.is-collapsible {
    position: relative;
}

.review-text-wrap.is-collapsible::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--bg, #f8fafc));
    pointer-events: none;
}

.review-text-wrap.is-collapsible ~ .review-read-more {
    display: inline-flex;
}

/* Раскрытое */
.review-text-wrap.is-collapsible.expanded .review-text {
    max-height: 2000px;
    overflow: visible;
}
.review-text-wrap.is-collapsible.expanded::after { display: none; }
.review-text-wrap.is-collapsible.expanded ~ .review-read-more i { transform: rotate(180deg); }
