/* ============================================================
   DAMPI — Iconos SVG como clases CSS reutilizables
   Uso: <div class="ts-icon ts-icon--laptop"></div>
============================================================ */
.ts-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.ts-icon svg { width: 100%; height: 100%; }

/* Tamaños */
.ts-icon--sm { width: 18px; height: 18px; }
.ts-icon--md { width: 26px; height: 26px; }
.ts-icon--lg { width: 36px; height: 36px; }
.ts-icon--xl { width: 48px; height: 48px; }
