/* ============================================
   PREGUNTAS FRECUENTES (inc/content/faq-schema.php)

   Hoja propia porque el acordeon se usa en dos contextos: el detalle de
   articulo (`blog-detail.css`) y las paginas de listado (`listing-content.css`).
   ============================================ */
.mt-faq {
    margin: 40px 0;
}

.mt-faq__title {
    margin: 0 0 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
}

.mt-faq__item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 12px;
    background: var(--bg-white);
    overflow: hidden;
}

.mt-faq__item[open] {
    border-color: var(--remax-blue);
    box-shadow: var(--shadow-sm);
}

.mt-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
}

.mt-faq__question::-webkit-details-marker {
    display: none;
}

/* El indicador se dibuja con CSS para no depender de JS ni de iconos extra. */
.mt-faq__question::after {
    content: '+';
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: var(--remax-blue);
}

.mt-faq__item[open] .mt-faq__question::after {
    content: '−';
}

.mt-faq__question:hover {
    color: var(--remax-blue);
}

.mt-faq__answer {
    padding: 0 20px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.mt-faq__answer p:first-child {
    margin-top: 0;
}

.mt-faq__answer a {
    color: var(--remax-blue);
}

@media (max-width: 768px) {
    .mt-faq__title {
        font-size: 22px;
    }

    .mt-faq__question {
        padding: 14px 16px;
        font-size: 16px;
    }

    .mt-faq__answer {
        padding: 0 16px 16px;
        font-size: 15px;
    }
}
