/* FAQ page */
.faq-page {
    color: white;
}
.faq-page .container { }
.faq-page h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
}

.faq-page .main-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--grey-text);
    margin-bottom: 52px
}

/* Wrapper */
.faqs-wrapper {display: flex;flex-direction: row;flex-wrap: wrap;justify-content: space-between;gap: 32px;}

/* Category block */
.faq-blok {
    padding: 48px!important;
    gap:  32px!important;
    width: calc(50% - 16px);
}

.faq-blok[data-depth="0"] { }
.faq-blok[data-depth="1"] { }

/* Category title */
.faq-cat-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
}

/* List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Single FAQ item */
.faq {
    display: flex;
    flex-direction: column;
    opacity: 1;
    border-radius: 20px;
    padding: 20px 24px;
    background-color: var(--blue-2);
    justify-content: space-between;
    gap: 24px;
}

/* Question */
.question {
    background: transparent;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.question:after {
    content: "";
    display: block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-image: url("../images/caret-d.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.question[aria-expanded="true"]:after
{
    transform: rotate(180deg);
}

/* Answer */
.answer {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--grey-text);
}

/* Empty state */
.faq-empty { }
