/* ============================================
 * Module: FAQ
 * Source views: index, show, content
 * ============================================ */

/* --- index.blade.php & content.blade.php (shared accordion styles) --- */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: inherit;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
.accordion-body {
    line-height: 1.7;
}
.accordion-body p:last-child {
    margin-bottom: 0;
}

/* --- index.blade.php --- */
.faq-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}
.faq-list-item {
    transition: background-color 0.2s ease;
}
.faq-list-item:hover {
    background-color: #f8f9fa;
}
.faq-question-link:hover {
    color: #0d6efd !important;
}

/* --- show.blade.php --- */
.faq-answer {
    font-size: 1.1rem;
    line-height: 1.8;
}
.faq-answer p {
    margin-bottom: 1rem;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}
.faq-answer ul,
.faq-answer ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.faq-answer li {
    margin-bottom: 0.5rem;
}
.list-group-item h6 {
    font-size: 0.95rem;
    line-height: 1.4;
}
