/* ===========================================================================
   Block: service-text — نص قابل للطيّ (collapsible)
   الطيّ/الفتح بـAlpine عبر inline-style (max-height). الكلاس vc-fade للتدرّج فقط.
   =========================================================================== */

.voctos-collapse .vc-body {
    position: relative;
    transition: max-height .35s ease;
}

/* تدرّج تلاشي أسفل النص في الحالة المطويّة فقط */
.voctos-collapse .vc-body.vc-fade::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(
        to bottom,
        rgba(239, 240, 244, 0) 0%,
        rgba(239, 240, 244, 0.75) 75%,
        rgba(239, 240, 244, 1) 100%
    );
    pointer-events: none;
}
