/*
 * FAQ accordion rendered by the [page_faq] shortcode.
 * Markup comes from Pagemodel::buildFaqMarkup().
 */
.page-faq {
    padding: 20px 0;
    width: 80%;
    margin: auto;
}

.page-faq__item {
    font-family: "Poppins", sans-serif;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-faq__question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    color: #000;
    font-weight: 500;
}

.page-faq__question:focus {
    outline: none;
}

.page-faq__answer {
    padding: 10px;
    border-top: none;
}

/* Some resets drop the default [hidden] rule, so state it explicitly. */
.page-faq__answer[hidden] {
    display: none;
}

.page-faq__answer p {
    margin: 0;
}

@media (max-width: 767px) {
    .page-faq {
        width: 100%;
    }
}
