/*
 * ERI FAQ component
 * Styles extracted from:
 * - Divi child global style.css
 * - inline <style> / inline style attributes previously emitted by [eri_faq]
 *
 * Goal: preserve the current rendering while making the component self-contained.
 */

.eri-faq-container {
    margin: 20px auto;
    font-family: sans-serif;
}

.faqBloc h2 {
    text-transform: uppercase;
    font-weight: 600;
    color: #12a8c0 !important;
    margin: 40px 0 20px 0;
}

.faqBloc h3 {
    font-size: 21px;
    font-kerning: normal;
    text-wrap: auto;
    font-weight: 700;
    letter-spacing: 0pt;
    color: #666;
    cursor: pointer;
    position: relative;
    padding: 0 50px 0 0;
}

.faqBloc .faq-toggle {
    color: #E50780;
    font-weight: 600 !important;
    font-size: 30px;
}

.faqBloc .faq-item {
    border: 1px solid #d9d9d9;
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.eri-faq-container .faq-question {
    background: #f9f9f9;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.eri-faq-container .faq-question.toggle-on {
    background: #ffffff !important;
}

.eri-faq-container .faq-answer {
    display: none;
    padding: 20px;
    line-height: 1.6;
    color: #555;
}

.faq-answer ul {
    padding: 0 0 20px 40px;
}
