.faq__wrapper {
    max-width: 44rem;
}

.faq__list {
    margin-top: 3rem;
}

.faq__list>*:not(:first-child) {
    margin-top: 0.25rem;
}

.faq__item {
    border-radius: 0.5rem;
    padding: 1.21875rem 1rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.03rem;
    background-color: var(--background-elevated);
    transition: filter 0.15s ease-out;
}

.faq__item:is(:hover, :focus-within) {
    filter: brightness(0.98);
}

.faq__item__chevron {
    transition: transform 0.5s var(--transition-easeOutSin);
}

.faq__item--open .faq__item__content__wrapper {
    grid-template-rows: 1fr;
}

.faq__item--open .faq__item__content {
    padding-top: 1.85rem;
}

.faq__item--open .faq__item__chevron {
    transform: rotate(180deg);
}

.faq__item__content {
    color: var(--text-normal);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.02rem;
}

.faq__item__content__wrapper {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: all 0.5s var(--transition-easeOutSin);
}

.faq__item__head {
    align-self: stretch;
    color: var(--text-loud);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

svg {
    cursor: pointer;
}