.new-faq-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.new-faq-item{
    display: flex;
    flex-direction: column;
}
.new-faq-item.active .answer-content{
    opacity: 1;
    z-index: 2;
    grid-template-rows: 1fr;
    padding: 20px 22px;
    background-color: rgb(var(--beige));
}
.question-content{
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: var(--wp--preset--font-size--m-text);
    cursor: pointer;
    position: relative;
    padding: 20px 22px;
    border: 1px solid rgb(var(--black));
    background-color: rgb(var(--dark-pink));
    color: rgb(var(--beige));
    transition: all 0.3s ease-in-out;
}
.new-faq-item.active .question-content{
    background-color: rgb(var(--dark-pink));
    color: rgb(var(--beige));
    box-shadow: none;
}
.question-content p{
    display: flex;
    width: 90%;
}
.question-btn{
    display: flex;
    border-radius: 100%;
    background-color:rgb(var(--beige));
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out;
    position: absolute;
    right: 1rem;
}
.question-btn:after, .question-btn:before{
    content: "";
    border: 2px solid rgb(var(--dark-pink));
    width: 15px;
    color: rgb(var(--dark-pink));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.question-btn:before{
    transform: translate(-50%, -50%) rotate(90deg);
}
.new-faq-item.active .question-btn{
    transform: rotate(45deg);
    background-color:rgb(var(--beige));
}
.answer-content{
    z-index: -1;
    display: grid;
    grid-template-rows: 0fr;
    transition: all 500ms;
    border: 1px solid rgb(var(--black));
    background-color: rgb(var(--beige));
    color: rgb(var(--black));
    border-top: 0;
}
.answer-content div {
    overflow: hidden;
}