/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.wp-block-yoast-faq-block .schema-faq-question {
    display: block;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    border: 1px solid grey;
    background-color: #a39161; /* Color modificado aquí */
    display: flex;
    justify-content: space-between;
}

.wp-block-yoast-faq-block .schema-faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: white;
    transition: all 300ms ease-in-out;
}

.wp-block-yoast-faq-block .show .schema-faq-answer {
    max-height: 500px;
    margin: 10px 0 10px 0;
}

.wp-block-yoast-faq-block .schema-faq-question:after {
    margin: 0 4px;
    display: inline-block;
    content: "+";
}

.wp-block-yoast-faq-block .show .schema-faq-question:after {
    content: "—";
}
.wp-block-yoast-faq-block .show .schema-faq-question {
    background-color: #e6b3a9;
}