.fx-faq {
    margin: 3rem 0;
    padding: 0;
}

.fx-faq__item {
    margin: 0 0 2rem;
    padding: 0;
    overflow: hidden;
    font-weight: normal;
}

.fx-faq__item:last-child {
    margin-bottom: 0;
}

.fx-faq__summary {
    display: block;
    padding: 1.5rem 2rem;
    gap: 2rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 120%;
    background-color: #ededed;
    transition: background-color 0.2s ease;
    user-select: none;
}

.fx-faq__summary::-webkit-details-marker {
    display: none;
}

.fx-faq__summary::marker {
    display: none;
}

.fx-faq__summary:hover {
    background-color: #eeeeee;
}

.fx-faq__item[open] {
    .fx-faq__summary {
        background-color: #e8e8e8;
    }

    .fx-faq__summary:after {
        rotate: 180deg;
    }
}

.fx-faq__summary:after {
    content: "";
    display: inline-block;
    width: 20px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='451.847px' height='451.847px' viewBox='0 0 451.847 451.847' style='enable-background:new 0 0 451.847 451.847;' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M225.923,354.706c-8.098,0-16.195-3.092-22.369-9.263L9.27,151.157c-12.359-12.359-12.359-32.397,0-44.751 c12.354-12.354,32.388-12.354,44.748,0l171.905,171.915l171.906-171.909c12.359-12.354,32.391-12.354,44.744,0 c12.365,12.354,12.365,32.392,0,44.751L248.292,345.449C242.115,351.621,234.018,354.706,225.923,354.706z'/%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
    background-color: #99210f;
}

.fx-faq__summary {
    display: flex;
    justify-content: space-between;
}

.fx-faq__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
    background-color: #f7f7f7;
}

.fx-faq__item[open] .fx-faq__content {
    grid-template-rows: 1fr;
}

.fx-faq__content-inner {
    min-height: 0;
    padding: 1.5rem 1.5rem 0;
    overflow: hidden;
}

.fx-faq__content-inner > *:first-child {
    margin-top: 0;
}

.fx-faq__content-inner > *:last-child {
    margin-bottom: 0;
}
