/**handles:expandable-card-style**/
.expandable-card{border:1px solid #fff;margin-bottom:10px;border-radius:1.5rem;overflow:hidden;background:#fff;padding:1rem 1.5rem 1rem 1.5rem}.expandable-card-header{display:flex;align-items:center;cursor:pointer}.expandable-card-icon{margin-right:15px;width:30px;height:30px}.expandable-card-icon img{width:100%;height:100%;object-fit:contain}.expandable-card-title{margin:0;flex-grow:1}.expandable-card-toggle{width:32px;height:32px;position:relative}.expandable-card-toggle::after,.expandable-card-toggle::before{content:'';position:absolute;background:currentColor;transition:transform .3s ease}.expandable-card-toggle::before{width:1px;height:16px;left:50%;transform:translateY(-8px)}.expandable-card-toggle::after{width:16px;height:1px;top:50%;transform:translateX(-8px)}.expandable-card.active{padding:1rem 1.5rem 1.5rem 1.5rem}.expandable-card.active .expandable-card-toggle::before{transform:translateY(calc(-50% + 1px)) rotate(90deg)}.expandable-card-content{max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease}.expandable-card-content p:first-of-type{margin-top:1rem}.expandable-card.active .expandable-card-content{max-height:1000px}