/* assets/css/ew-recipe-faq.css */

.ew-faq-module {
    margin: 40px 0;
    background: #F7F6F3;
    padding: 20px;
    box-shadow: 0px 2px 8px #264f3e;
}

.ew-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.ew-faq-question {
    all: unset;
    display: block;
    width: 100%;
    padding: 16px 0;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
}

.ew-faq-question:hover {
    opacity: 0.85;
}

.ew-faq-answer {
    display: none;
    padding: 0 0 16px 0;
    font-size: 15px;
    line-height: 1.6;
}

.ew-faq-question::after {
    content: "▾";
    float: right;
    transition: transform 0.2s ease;
}

.ew-faq-question[aria-expanded="true"]::after {
    transform: rotate(180deg);
}