/* ============ الدروب داون ============ */
.dropdown-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.dropdown-list.open {
    max-height: 1000px;
}


/* ============ العناوين (H2) ============ */
h2.ql-direction-rtl,
h3.ql-direction-rtl{
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

/* السهم */
h2.ql-direction-rtl::after,
h3.ql-direction-rtl::after{
    content: "▾";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s ease;
}

/* لما يتفتح */
h2.ql-direction-rtl.active::after,
h3.ql-direction-rtl.active::after{
    transform: translateY(-50%) rotate(180deg);
}