/* Telecom Shortcodes — network tabs with logo support, compact code list. */

.ts-tabs {
    display: flex; gap: .4rem; overflow-x: auto; margin: .2rem 0 .2rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ts-tabs::-webkit-scrollbar { display: none; }
.ts-tab {
    display: inline-flex; align-items: center; gap: .4rem; flex-shrink: 0;
    padding: .45rem .8rem; border-radius: 999px; border: 1px solid var(--border);
    background: var(--surface); color: var(--ink-soft); font-size: .82rem; font-weight: 700;
    text-decoration: none; transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.ts-tab:hover { background: var(--paper); }
.ts-tab-active { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.ts-tab-logo { width: 20px; height: 20px; object-fit: contain; border-radius: 4px; }

.ts-list {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius, 5px);
    overflow: hidden;
}
.ts-row {
    display: flex; align-items: center; gap: .8rem; padding: .7rem .9rem;
    border-bottom: 1px solid var(--border);
}
.ts-row:last-child { border-bottom: none; }
.ts-code {
    flex-shrink: 0; font-weight: 800; font-size: .92rem; color: var(--indigo);
    background: var(--indigo-soft, var(--paper)); padding: .3rem .6rem; border-radius: 6px;
    font-family: monospace, monospace; letter-spacing: .01em;
    text-decoration: none; display: inline-flex; align-items: center; gap: .3rem;
    transition: background .12s ease;
}
.ts-code:hover, .ts-code:active { background: color-mix(in srgb, var(--indigo) 22%, transparent); }
.ts-code::before { content: '\f095'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .7rem; opacity: .75; }
.ts-info { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.ts-title { font-weight: 700; font-size: .88rem; color: var(--ink); }
.ts-desc { font-size: .78rem; color: var(--ink-soft); line-height: 1.4; }

.ts-caveat { font-size: .78rem; margin-top: .8rem; line-height: 1.5; }
