.faq-item {
    row-gap: 0px;

    transition: row-gap 0.4s ease;
}
.faq-item p {
    max-height: 0px;
    overflow-y: hidden;

    transition: max-height 0.4s ease;
}
.faq-item.expanded {
    row-gap: 16px;
}
.faq-item.expanded p {
    max-height: 100px;
}