.faq-list.block-faq__list {
    width: 100%;
}
span.faq-item__number {
    width: 50px;
    height: 50px;
    display: flex;
    background: transparent;
    justify-content: center;
    align-items: center;
    color: var(--color);
    border: 1px solid var(--color);
    border-radius: 15px;
    font-size: var(--font-size-h6);
    font-weight: 500;
    flex: none;
}
[open] span.faq-item__number {
    background: var(--color);
    color: white;
}
summary.faq-item__question::marker {
    content: none;
}
summary.faq-item__question {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: var(--font-size-h6);
    font-family: 'Unbounded';
    font-weight: 300;
    color: var(--color);
}
.faq-list.block-faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item__answer {
    padding-left: 70px;
    max-width: 900px;
    color: var(--color);
    margin-top: 10px;
}
@media screen and (max-width: 786px) {
    span.faq-item__number {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .faq-item__answer {
        padding-left: 60px;
    }
}