/* ==========================================================================
 * customer-faq.css — 자주묻는질문 페이지(/faq) 전용 스타일
 *  · customer.ts 인라인 <style> 에서 분리 (정적 CSS)
 * ========================================================================== */

.faq-list {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.08);*/
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}
.faq-question:hover {
    background: #f8f9fa;
}
.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}
.faq-question-text i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 20px;
}
.faq-icon {
    color: var(--primary-color);
    transition: transform 0.3s;
}
.faq-icon.active {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}
.faq-answer.active {
    max-height: 500px;
}
.faq-answer-content {
    padding: 0 30px 25px 65px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}
