/* ============================================================
   TechPulse Pro — Live Search Styles
   Additional search styles beyond what's in components.css
   ============================================================ */

/* Search results section heading */
.search-results-section-title {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-subtle);
    padding: var(--space-3) var(--space-4) var(--space-2);
    border-bottom: 1px solid var(--border-light);
}

/* Highlighted search terms */
.search-result-item__title mark,
.search-highlight {
    background: rgba(26, 115, 232, 0.15);
    color: var(--color-primary);
    border-radius: 2px;
    padding: 0 2px;
    font-style: normal;
}

/* Type icons */
.search-result-item__type-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.search-result-item__type-badge--post     { background: rgba(26,115,232,.12); color: var(--color-primary); }
.search-result-item__type-badge--software { background: rgba(108,99,255,.12); color: var(--color-secondary); }
.search-result-item__type-badge--ai-tool  { background: rgba(0,188,212,.12); color: var(--color-accent); }
.search-result-item__type-badge--computer { background: rgba(16,185,129,.12); color: var(--color-success); }

/* Keyboard navigation shortcut hint */
.live-search__keys-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4);
    border-top: 1px solid var(--border-light);
    font-size: 10px;
    color: var(--text-subtle);
}

.live-search__keys-hint kbd {
    font-family: var(--font-mono);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 10px;
    color: var(--text-subtle);
}
