/* =============================================================
   MEKS TOGGLE — extracted from meks-flexible-shortcodes
   ============================================================= */

.mks_toggle {
    margin: 0;
    display: block;
    border: 1px solid;
    border-bottom: none;
}
.mks_toggle {
    border-bottom: 1px solid;
    margin: 0 0 20px 0;
}

.mks_toggle_heading {
    cursor: pointer;
    display: block;
    line-height: 1.2em;
    position: relative;
    padding: 15px 60px 15px 20px;
    margin: 0;
    font-weight: normal;
}

.mks_toggle > p {
    display: none;
}

.mks_toggle_content {
    display: none;
    border-top: 1px solid;
    padding: 20px;
}

.mks_toggle_active > .mks_toggle_content {
    display: block;
}

.mks_toggle_content p:last-child {
    margin-bottom: 0;
}

/* Plus / minus icons */
.mks_toggle_heading i {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-size: 16px;
    font-weight: 900;
    line-height: 20px;
    text-align: center;
    color: var(--vn-primary, #EC4899);
}

/* Show plus on every toggle by default */
.mks_toggle .fa-plus                               { display: block; }
/* When active, only flip icons in the direct heading — not nested toggles */
.mks_toggle_active > .mks_toggle_heading .fa-plus  { display: none;  }
.mks_toggle_active > .mks_toggle_heading .fa-minus { display: block; }
