/* ── Pill Header With Icon ── */

.il-pill-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.il-pill-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: il-pill-pulse 2s ease infinite;
}

.il-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.il-pill-icon svg {
    width: 14px;
    height: 14px;
}

.il-pill-icon i {
    font-size: 14px;
}

.il-pill-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes il-pill-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}
