.faqs-widget{
    display:flex;
    flex-direction: column;
    gap: 20px;  
    font-family: "Hanken Grotesk";
    font-style: normal;
    line-height: 120%;
}

.faqs-widget.type-framed{
    width: 752px;
}

.faqs-widget p,
.faqs-widget h2,
.faqs-widget h3,
.faqs-widget h4,
.faqs-widget h5,
.faqs-widget h6 {
    margin: 0;
}

.faqs-widget .heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--Gray-Gray-700, #DDD);
}

.faqs-widget .faqs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faqs-widget .faq {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    padding: 16px 24px;
    cursor: pointer;
}
.faqs-widget.type-normal .faq.active {
    background: var(--Gray-Gray-100, #161616);
}

.faqs-widget.type-framed .faq {
    background: var(--Gray-Gray-100, #161616);
}

.faqs-widget .faq .question{
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    color: var(--Gray-Gray-600, #999);
    transition: 0.3s;
}

.faqs-widget .faq.active .question{
    color: white;
    transition: 0.3s;
}

.faqs-widget .faq .question img {
    width: 28px;
    height: 28px;
    filter: grayscale(1);
    transform: rotate(45deg);
    transition: 0.3s;
}

.faqs-widget .faq.active .question img {
    filter: grayscale(0);
    transform: rotate(0deg);
}

.faqs-widget .faq .answer {
    color: var(--Gray-Gray-600, #999);
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    pointer-events: none;
    max-height: 0px;
    padding: 0 48px;
    opacity: 0;
    transition:
        opacity 0.15s,
        max-height 0.3s,
        padding 0.3s;
}

.faqs-widget .faq.active .answer {
    max-height: none;
    padding: 24px 48px;
    opacity: 1;
    transition:
        opacity 0.3s,
        max-height 0.3s,
        padding 0.3s;
}


@media (max-width: 600px) {
    .faqs-widget.type-framed{
        width: 100%;
    }
    .faqs-widget .heading {
        font-size: 28px;
        line-height: 110%;
    }
    .faqs-widget .faq{
        padding: 12px;
    }
    .faqs-widget .faq .question{
        font-size: 18px;
        line-height: 120%;
        align-items: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    .faqs-widget .faq .question img {
        width: 19px;
        height: 19px;

    }
    .faqs-widget .faq .answer {
        font-size: 16px;
        line-height: 130%;
        padding: 0 36px;
    }
    .faqs-widget .faq.active .answer {
        padding: 12px 36px;
    }
    
}