/* ==================================================
   Blog FAQ Section
================================================== */

.sv-article-faq {
    margin-top: 36px;
    margin-bottom: 32px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.sv-article-faq > h2 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
}

/* Reuse existing FAQ accordion structure */
.sv-article-faq .sv-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sv-article-faq .sv-faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.sv-article-faq .sv-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 18px;

    cursor: pointer;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;

    color: #111827;
    background: #ffffff;

    border: 0;
    text-align: left;
}

.sv-article-faq .sv-faq-question:hover {
    background: #f8fafc;
    color: #2563eb !important;
}

.sv-article-faq .sv-faq-answer {
    display: none;

    padding: 0 18px 18px;

    font-size: 15px;
    line-height: 1.75;

    color: #475569;
    background: #ffffff;
}

.sv-article-faq .sv-faq-item.active .sv-faq-answer {
    display: block;
}

.sv-article-faq .sv-faq-icon {
    flex: 0 0 auto;
    margin-left: 16px;

    font-size: 22px;
    font-weight: 700;

    color: #2563eb;

    transition: transform 0.2s ease;
}

.sv-article-faq .sv-faq-item.active .sv-faq-icon {
    transform: rotate(45deg);
}