/* =============================================================
   FAQ ACCORDION — mirrors live /esim/ (Elementor toggle) design.
   Each row has only a bottom border (no card chrome); title sits
   on the visual-LEFT, orange caret icon on the visual-RIGHT (start
   of row in RTL = visual-right). Closed = caret-left, open = caret-up.
   ============================================================= */
.faq {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1120px;
    margin-inline: auto;
}

.faq-item {
    background: transparent;
    border-block-end: 1px solid rgb(213, 216, 220);
}

.faq-item:first-child {
    border-block-start: 1px solid rgb(213, 216, 220);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 0;
    padding: 14px 20px;
    text-align: start;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-text-heading);
    cursor: pointer;
    flex-direction: row-reverse;                /* icon sits at visual-right (start) in RTL flow */
}

.faq-item__question:hover {
    color: var(--color-primary);
}

.faq-item.is-open .faq-item__question {
    color: var(--color-primary);
}

.faq-item__label {
    flex: 1 1 auto;
}

.faq-item__toggle {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: var(--color-primary);
    line-height: 1;
}

.faq-item__icon {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.faq-item__icon--open {
    display: none;
}

.faq-item.is-open .faq-item__icon--closed {
    display: none;
}

.faq-item.is-open .faq-item__icon--open {
    display: block;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-heading);
}

.faq-item__answer p {
    margin: 0 0 8px;
}

.faq-item__answer p:last-child {
    margin-block-end: 0;
}

.faq-item.is-open .faq-item__answer {
    padding-block: 12px 18px;
}

