/* ظرف توضیحات با قابلیت باز/بسته */
.term-description.ak47-collapsible {}

/* بخش اضافی (پاراگراف‌های بعد از اول) در حالت بسته مخفی باشد */
.term-description.ak47-collapsible > .ak47-term-extra {
  display: none !important;
}

/* وقتی باز شد، نمایش بده */
body .term-description.ak47-collapsible.is-expanded > .ak47-term-extra {
  display: block !important;
}

/* رپر دکمه (اگر خودت در قالب گذاشتی) */
.ak47-term-toggle-wrap {
  margin-top: .5rem;
}

/* افکت گرادینت وقتی بسته است */
.term-description.ak47-collapsible:not(.is-expanded) {
  position: relative;
}
.term-description.ak47-collapsible:not(.is-expanded)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2rem;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}
.term-description.ak47-collapsible.is-expanded::after { display: none; }
