/* FAQ — section #10 (after Press)
   6 accordion items. Click + to open. */

.faq {
    width: 100%;
    background: #fff;
    padding: 50px 24px 70px;
}

.faq__inner {
    max-width: 920px;
    margin: 0 auto;
}

.faq__title {
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 42px;
    line-height: 1.15;
    color: var(--c-blk);
    text-align: center;
    margin: 0 0 50px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq__item {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(7, 28, 55, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.faq__q {
    display: flex;
    flex-direction: row;            /* RTL: question text on RIGHT, + on LEFT */
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: right;
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #000;
    transition: background 0.2s var(--ease);
}
.faq__q:hover {
    background: rgba(171, 132, 68, 0.05);
}
.faq__q-text {
    flex: 1 1 auto;
    text-align: right;
}
.faq__q-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: var(--c-gold-flat);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease);
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
    position: relative;
}
.faq__q-icon::before,
.faq__q-icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    transition: transform 0.3s var(--ease);
}
.faq__q-icon::before {
    /* horizontal */
    width: 18px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq__q-icon::after {
    /* vertical (rotates away when open) */
    width: 2px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq__item.is-open .faq__q-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #1d1d1b;
    text-align: right;
    direction: rtl;
}
.faq__item.is-open .faq__a {
    max-height: 500px;
    padding: 0 24px 20px;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .faq {
        padding: 40px 16px 50px;
    }
    .faq__title {
        font-size: 22px;
        line-height: 28px;
        margin: 0 0 24px;
    }
    .faq__q {
        font-size: 16px;
        line-height: 22px;
        padding: 14px 16px;
    }
    .faq__a {
        font-size: 15px;
        line-height: 22px;
    }
    .faq__item.is-open .faq__a {
        padding: 0 16px 14px;
    }
}
