/* Tec Elementor — structural CSS for interactive components.
   Uses only classes (survives the CMS purifier). Loaded on the live page and,
   in "all open" form, inside the editor canvas. */

/* ---------------- Accordion ---------------- */
.tec-accordion { border: 1px solid #e2e4e9; border-radius: 6px; overflow: hidden; }
.tec-accordion .tec-acc-item + .tec-acc-item { border-top: 1px solid #e2e4e9; }
.tec-accordion .tec-acc-header {
    margin: 0;
    padding: 14px 40px 14px 16px;
    position: relative;
    cursor: pointer;
    font-weight: 600;
    background: #f8f9fb;
    user-select: none;
}
.tec-accordion .tec-acc-header::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 1;
    color: #888;
}
.tec-accordion .tec-acc-item.is-open .tec-acc-header::after { content: '\2212'; } /* minus */
.tec-accordion .tec-acc-body {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
}
.tec-accordion .tec-acc-item.is-open .tec-acc-body {
    padding: 14px 16px;
    max-height: 1000px;
}

/* ---------------- Tabs ---------------- */
.tec-tabs .tec-tabs-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e2e4e9;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}
.tec-tabs .tec-tab-link {
    padding: 10px 18px;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: #555;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.tec-tabs .tec-tab-link.is-active { color: #1f2533; border-bottom-color: #f7b500; }
.tec-tabs .tec-tab-pane { display: none; padding: 18px 4px; }
.tec-tabs .tec-tab-pane.is-active { display: block; }
