/* 
 * Elysian FAQ Widget CSS
 */

.elysian-faq-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.elysian-faq-item {
    border-bottom: 1px solid #ebebeb;
}

.elysian-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 20px;
}

.elysian-faq-answer p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #666;
}

@media (min-width: 768px) {
    .elysian-faq-question {
        font-size: 24px;
    }
}

.elysian-faq-q-text {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.3;
    padding-right: 20px;
}

.elysian-faq-icon {
    flex-shrink: 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

.elysian-icon-minus {
    display: none;
}

.elysian-faq-question:hover .elysian-faq-q-text {
    color: #ce982b;
}

.elysian-faq-item.active .elysian-faq-icon {
    color: #ce982b;
}

.elysian-faq-item.active .elysian-icon-plus {
    display: none;
}

.elysian-faq-item.active .elysian-icon-minus {
    display: block;
}

.elysian-faq-answer {
    display: none;
    padding-bottom: 24px;
}

.elysian-faq-a-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media(max-width: 767px) {
    .elysian-faq-answer p {
        font-size: 14px;
        line-height: 20px;
    }
}
