/**
 * FAQ Card Styles
 * Module-specific styles for FAQ accordion cards
 */

.bc-faq-lists .faq-accordion {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bc-faq-lists .faq-accordion:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bc-faq-lists .row {
    margin-left: -1px;
    margin-right: -1px;
}

.bc-faq-lists .row > [class*="col-"] {
    padding-left: 1px;
    padding-right: 1px;
}

.bc-faq-lists .faq-question {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.bc-faq-lists .faq-question:hover {
    background: #f9fafb;
}

.bc-faq-lists .faq-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.bc-faq-lists .faq-arrow {
    flex-shrink: 0;
    font-size: 14px;
    color: #6b7280;
    transition: transform 0.3s ease;
    margin-left: 12px;
}

.bc-faq-lists .faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.bc-faq-lists .faq-answer {
    padding: 0 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.bc-faq-lists .faq-answer.show,
.bc-faq-lists .faq-answer.collapsing {
    padding: 16px 20px;
}

.bc-faq-lists .faq-answer p {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .bc-faq-lists .faq-title {
        font-size: 14px;
    }

    .bc-faq-lists .faq-question {
        padding: 14px 16px;
    }

    .bc-faq-lists .faq-answer.show {
        padding: 14px 16px;
    }
}
