.calc-text-height {
    overflow: hidden;
}
.calc-text-height p {
    margin: 0;
}
.calc-text-height:not(.work-on-mobile) {
    max-height: 22px;
}
.show-calc-text:not(.active),
.show-calc-text.hide {
    display: none;
}
.calc-text-height.active {
    max-height: none !important;
}

/* מפעיל את הפייד רק כשהטקסט חתוך */
.calc-text-height.is-truncated:not(.active) {
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* עיצוב כפתור הקרא עוד */
.btn-read-more {
    background: transparent;
    border: none;
    color: #71F494; /* ירוק מנטה */
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0 0 0;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
}
.btn-read-more:hover {
    color: #5ceb82;
}

@media screen and (min-width: 768px) {
    .calc-text-height.work-on-mobile {
        max-height: none !important;
    }
    .calc-text-height.work-on-mobile + .show-calc-text {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .calc-text-height.work-on-mobile {
        max-height: 22px;
    }
}