class FeatureCard extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

${this.getAttribute('title') || 'Feature'}

${this.getAttribute('description') || 'Feature description'}

`; } } customElements.define('feature-card', FeatureCard);