/* Pbc_CategoryQuestions Frontend Styles */

.category-faq-section {
    margin: 30px 0 20px;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.category-faq-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
}

.category-faq-list {
    margin-top: 15px;
}

.faq-item {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.faq-answer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding-left: 0;
}

/* Responsive styles */
@media (max-width: 767px) {
    .category-faq-section {
        margin: 20px 0 15px;
        padding: 15px 0;
    }
    
    .category-faq-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .faq-question {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
}

/* Print styles */
@media print {
    .category-faq-section {
        page-break-inside: avoid;
    }
    
    .faq-item {
        page-break-inside: avoid;
    }
}
