#faq.page{
    max-width: 1024px;
    padding-top: 48px;
    margin-inline: auto;
    & > .faqList{
        display: flex;
        flex-direction: column;
        margin-inline: -16px;
        & > .question{
            display: flex;
            gap: 8px;
            interpolate-size: allow-keywords;
            transition: 0.5s height cubic-bezier(.26,.74,0,.99);
            height: 56px;
            box-sizing: border-box;
            & > button > span{
                transition: 0.5s transform cubic-bezier(.26,.74,0,.99);
            }
            & > button{
                background: transparent;
                color: black;
                font-family: 'Material Symbols Outlined';
                font-size: 24px;
                width: 40px;
                height: 40px;
                min-width: 40px;
                padding: 0px;
                align-items: center;
                margin-top: 8px;
                justify-content: center;
            }
            & > button::after{
                background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, transparent 66%);
                mix-blend-mode: normal;
            }
            & > .stackedText{
                display: flex;
                flex-direction: column;
                padding-top: 0px;
                flex: 1;
                padding-bottom: 16px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.24);
                & > p.bold{
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 54px;
                    color: rgba(0, 0, 0, 1);
                    height: 54px;
                    user-select: none;
                    cursor: pointer
                }
                & > p.light{
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 120%;
                    letter-spacing: 0.1px;
                    color: rgba(0, 0, 0, 0.85);
                    opacity: 0;
                    transition: 0.1s opacity 0s;
                    pointer-events: none;
                }
            }
        }
        & > .question.expanded{
            height: max-content;
            & > .stackedText > p.light{
                opacity: 1;
                transition: 0.2s opacity 0.1s;
            }
            & > button > span{
                transform: rotate(180deg);
            }
        }
    }
}