/* FAQ LIST */

.faq-archive-section__faq-list {
    flex: 1;
}

.faq-archive-section__faq-list-item {
    padding-bottom: 0px;
    border-bottom: 1px solid #C4CDD1;

}

.faq-archive-section__faq-list-item h4 {
    font-family: Larken, sans-serif;
    font-size: 24px;
    font-weight: 400;
}

.faq-archive-section__faq-list-item.open {

}

.faq-archive-section__faq-list-item.open .faq-archive-section__faq-list-item-question {
    padding-bottom: 1rem;
}

.faq-archive-section__faq-list-item-question {
    padding-block: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    padding-inline-end: 4rem;
}

.faq-archive-section__faq-list-item-question .toggle-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
}

.faq-archive-section__faq-list-item-question .toggle-icon span {
    position: absolute;
    background-color: #333;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.faq-archive-section__faq-list-item-question .toggle-icon span:last-child {
    transform: translateY(-50%) rotate(90deg); /* vertical line for + */
}

.faq-archive-section__faq-list-item.open .toggle-icon span:last-child {
    transform: translateY(-50%) rotate(0deg); /* hide vertical line = minus */
}

.faq-archive-section__faq-list-item-answer {
    cursor: auto;
    padding-bottom: 1.5rem;
}

.faq-archive-section__faq-list-item:not(:first-child) .faq-archive-section__faq-list-item-answer {
    display: none;
}

.faq-no-results-message {
    /*display: none;*/
}

@media (max-width: 940px) {
    .faq-archive-section__faq-list-item h4 {
        font-size: 16px;
    }

    .faq-archive-section__faq-list-item-question .toggle-icon {
        width: 12px;
        height: 12px;
    }
}