/* ─── FAQ Block ─────────────────────────────────────────────────── */
.arp-faq-wrapper {
    margin: 32px 0;
    clear: both;
}
.arp-faq-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a2e;
    border-left: 4px solid #0073aa;
    padding-left: 12px;
}
.arp-faq-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s;
}
.arp-faq-item:hover { box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.arp-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    transition: background .2s;
    gap: 12px;
}
.arp-faq-question:hover { background: #f8f9fa; }
.arp-faq-question[aria-expanded="true"] { background: #e8f4fd; color: #0073aa; }
.arp-faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: #0073aa;
    flex-shrink: 0;
    transition: transform .3s;
}
.arp-faq-question[aria-expanded="true"] .arp-faq-icon {
    content: '−';
    transform: rotate(45deg);
}
.arp-faq-answer {
    padding: 0 20px;
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease, padding .4s ease;
}
.arp-faq-answer:not([hidden]) {
    padding: 16px 20px;
    max-height: 1000px;
    border-top: 1px solid #dee2e6;
}
.arp-faq-answer p { margin: 0; line-height: 1.7; color: #444; }

/* Reading Time */
.arp-reading-time-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #e8f4fd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #004d77;
}
.arp-word-count { color: #888; font-size: 12px; }