.team-members {
    gap: var(--wp--preset--spacing--50);
    display: grid;
    @media(min-width: 768px) {
        
        grid-template-columns: repeat(3, 1fr);
        gap: var(--wp--preset--spacing--50);
    }
    .description {
        max-height: 0; 
        overflow: hidden; 
        transition: max-height 0.3s ease, opacity 0.3s ease;
        p {
            margin-top: 0;
        }
    } 
    .description.open {
        opacity: 1;
    }
    .is-style-read-more.open .wp-block-button__link::before,
    .is-style-read-more.open .wp-block-button__link::after {
        content: '\f062' !important;
    }
}