.schema-faq-section {
    padding-left: 50px;
    padding-bottom: var(--wp--preset--spacing--medium);
    border-bottom: 1px solid #cfd3d9;
}

.schema-faq-section .schema-faq-question {
    position: relative;
    cursor: pointer;
    font-size: var(--wp--preset--font-size--medium-large);
    font-weight: 400;
}

.schema-faq-section .schema-faq-question::before {
    content: "+";
    position: absolute;
    top: -4px;
    left: -50px;
    width: 30px;
    height: 30px;
    background-color: var(--wp--preset--color--custom-green-2);
    color: var(--wp--preset--color--custom-white);
    font-size: var(--wp--preset--font-size--larger);
    text-align: center;
    line-height: 1;
    transition: background-color 0.15s ease-in-out;
}

.schema-faq-section .schema-faq-question:hover::before {
    background-color: var(--wp--preset--color--custom-green-1);
}

.schema-faq-section[aria-expanded="true"] .schema-faq-question::before {
    content: "-";
    background-color: var(--wp--preset--color--custom-green-1);
    line-height: 0.8;
}

.schema-faq-section .schema-faq-answer {
    display: none;
}

.schema-faq-section[aria-expanded="true"] .schema-faq-answer {
    display: block;
    animation: details-in-animation 0.15s ease-in-out;
}

@keyframes details-in-animation {
    0% {
        opacity: 0;
        transform: translateY(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}