.schema-faq {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.schema-faq-section {
    border-radius: 3px;
    background: var(--wp--preset--color--wild-sand);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    box-sizing: border-box;
}

.schema-faq-section * {
    box-sizing: border-box;
}

.schema-faq-question {
    width: 100%;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity ease 0.25s;
}

.schema-faq-question::after {
    width: 16px;
    height: 20px;
    display: inline-block;
    margin-left: auto;
    margin-right: 5px;
    vertical-align: top;
    color: inherit;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M0 4.2002L7 11.2002L14 4.2002L11.7894 4.2002L7 8.9896L6.6318 8.6214L2.2106 4.2002H0Z' fill='%230A1923'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.schema-faq-question.expanded::after {
    transform: scale(-1);
}

.schema-faq-answer {
    display: none;
    margin: 0;
    padding: 15px;
}
