<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.FAQ{
    width: 100%;
    background-color: var(--primary);
    padding: var(--container-padding);
}
.FAQ &gt; .content :is(h1[contenteditable], h2[contenteditable], h3[contenteditable], h4[contenteditable], h5[contenteditable], h6[contenteditable], p[contenteditable]):not(:focus){
    padding: 0;
}
.FAQ .question{
    display: grid;
    grid-template-columns: 1fr min-content;
    align-items: center;
    background-color: var(--secondary);
    cursor: pointer;
}
.FAQ .question h2{
    color: var(--text-dark-background);
}
.FAQ .question .arrow{
    --width: clamp(10px, 4vw, 25px);
    --height: clamp(10px, 4vw, 25px);
    --padding-y: clamp(10px, 1vw, 20px);
    --padding-x: clamp(10px, 1vw, 20px);
    border: none;
    background: none;
    margin-right: 1em;
}
.FAQ .question .arrow:hover{
    background: none;
}
.FAQ .question .arrow:hover svg{
    fill: var(--accent);
}
.FAQ .question .arrow svg{
    fill: var(--text-dark-background);
}
.FAQ .content *{
    color: var(--text-dark-background);
}
.FAQ.active .content{
    height: auto !important;
    overflow: unset;
    padding: var(--container-padding);
}
.FAQ.active .question .arrow{
    transform: rotate(180deg);
}
.FAQ .publish-tool{
    display: none;
}
.FAQ.active .publish-tool{
    display: flex;
}
.FAQ .content{
    display: flex;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    interpolate-size: allow-keywords;
    gap: calc(var(--gap) * 5);
}

.FAQ.highlight {
    animation: highlight 3s ease-in-out forwards;
}

@keyframes highlight {
    0% {
        background-color: var(--secondary);
    }
    20% {
        background-color: var(--highlight);
    }
    40% {
        background-color: var(--secondary);
    }
    60% {
        background-color: var(--highlight);
    }
    80% {
        background-color: var(--secondary);
    }
    100% {
        background-color: var(--highlight);
    }
}
</pre></body></html>