/* ═══ HERO ═══ */
.hero { margin-bottom: 14px; }
.ticker-heading { display: flex; align-items: center; gap: 14px; margin: 0; min-width: 0; }
.ticker-title-stack { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.ticker-title-symbol {
    font-family: 'JetBrains Mono', monospace; font-size: 31px; font-weight: 850;
    line-height: 1; color: #f0f6fc; letter-spacing: 0;
}
.ticker-title-name {
    font-size: 14px; line-height: 1.25; color: #8b949e; font-weight: 500;
    max-width: min(620px, 82vw); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ticker-price-line {
    display: inline-flex; align-items: baseline; gap: 7px; min-height: 19px; margin-top: 3px;
    font-family: 'JetBrains Mono', monospace; color: #c9d1d9;
}
.ticker-price-value { font-size: 16px; line-height: 1; font-weight: 800; color: #f0f6fc; }
.ticker-price-currency { font-size: 10px; line-height: 1; font-weight: 700; color: #6f7d8f; }
.ticker-price-change { font-size: 12px; line-height: 1; font-weight: 800; }
.ticker-price-change.positive { color: #3fb950; }
.ticker-price-change.negative { color: #f85149; }
.ticker-price-change.flat { color: #8b949e; }
.ticker-price-line.loading .ticker-price-value,
.ticker-price-line.loading .ticker-price-currency,
.ticker-price-line.loading .ticker-price-change { color: #4d5968; }
.ticker-price-line.unavailable .ticker-price-value { color: #66758a; font-size: 12px; font-weight: 700; }
.related-tags { display: flex; gap: 5px; margin-top: 5px; flex-wrap: wrap; }
.rel-tag { font-size: 10px; font-family: 'JetBrains Mono', monospace; background: #0d1117; border: 1px solid #21262d; border-radius: 6px; padding: 4px 8px; color: #58a6ff; text-decoration: none; min-height: 28px; display: inline-flex; align-items: center; }
.rel-tag:hover { border-color: #58a6ff; }
.ticker-avatar {
    --ta-bg1: #1f6feb; --ta-bg2: #8957e5;
    width: 20px; height: 20px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto; overflow: hidden; box-sizing: border-box;
    background: linear-gradient(135deg, var(--ta-bg1), var(--ta-bg2));
    border: 1px solid rgba(255,255,255,.18);
    color: #fff; font-family: 'JetBrains Mono', monospace;
    font-size: 8px; font-weight: 800; line-height: 1; letter-spacing: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.12);
    text-transform: uppercase;
}
.ticker-avatar.has-logo {
    padding: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
.ticker-avatar-lg { width: 34px; height: 34px; font-size: 12px; }
.ticker-avatar-hero { width: 74px; height: 74px; font-size: 20px; border-width: 1px; }
.ticker-avatar img { width: 100%; height: 100%; object-fit: contain; display: block; }
.st-meta { font-size: 11px; color: #8b949e; font-weight: 400; text-transform: none; letter-spacing: normal; margin-left: 8px; }
@media (max-width: 620px) {
    .ticker-heading { gap: 12px; }
    .ticker-avatar-hero { width: 66px; height: 66px; font-size: 18px; }
    .ticker-title-symbol { font-size: 27px; }
    .ticker-title-name { max-width: calc(100vw - 124px); }
    .ticker-price-value { font-size: 15px; }
    .ticker-price-change { font-size: 11px; }
}

/* ═══ COLLAPSIBLE SECTIONS ═══ */
.section-wrap { margin-bottom: 0; }
.section-toggle {
    display: flex; align-items: center; flex-wrap: wrap; row-gap: 6px;
    padding: 8px 0; cursor: pointer; user-select: none;
    border-bottom: 1px solid #21262d; margin-bottom: 8px;
}
.section-toggle.two-col {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.section-toggle.two-col .st-arrow { position: absolute; right: 0; }
.section-toggle:hover .st-label { color: #c9d1d9; }
.st-label { font-size: 14px; color: #8b949e; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.st-label-right { font-size: 14px; color: #8b949e; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.st-arrow { font-size: 9px; color: #6e7681; transition: transform .2s; margin-left: 10px; }
.st-arrow.open { transform: rotate(180deg); }
.section-body { overflow: hidden; transition: max-height .25s ease, opacity .2s ease; }
.section-body.collapsed { max-height: 0 !important; opacity: 0; }

/* ═══ SENTIMENT & PRICE CARD ═══ */
.sp-section-head {
    display: flex; align-items: center; flex-wrap: wrap; row-gap: 6px;
    padding: 8px 0; border-bottom: 1px solid #21262d; margin-bottom: 8px;
}
.sp-card {
    background: linear-gradient(180deg, rgba(13,17,23,.96), rgba(10,14,20,.98));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 18px 48px rgba(0,0,0,.38);
}
.sp-body { display: grid; grid-template-columns: 280px minmax(0, 1fr); min-height: 460px; }
@media (max-width: 980px) { .sp-body { grid-template-columns: 260px minmax(0, 1fr); } }
@media (max-width: 800px) { .sp-body { grid-template-columns: 1fr; min-height: 0; } }

/* Main timeframe bar */
.sp-range-bar {
    display: inline-flex; gap: 3px; padding: 4px;
    border-radius: 12px; border: 1px solid #21262d;
    background: linear-gradient(180deg, #131b24 0%, #10161f 100%);
    margin-left: auto; margin-right: 0;
}
@media (max-width: 620px) {
    .sp-range-bar { order: 3; flex-basis: 100%; width: 100%; margin: 0; }
    .sp-range-bar .sp-range-btn { flex: 1; min-width: 0; padding-inline: 0; }
}
.sp-range-btn {
    border: none; background: transparent; color: #8b949e;
    padding: 7px 9px; min-width: 34px; border-radius: 9px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    font-weight: 700; cursor: pointer; transition: color .14s, background .14s;
}
.sp-range-btn:hover { color: #c9d1d9; }
.sp-range-btn.active { background: #1d2837; color: #f0f6fc; box-shadow: 0 0 0 1px rgba(88,166,255,.22) inset; }

/* Left: sentiment summary */
.sp-summary {
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,.06);
    background:
        linear-gradient(180deg, rgba(88,166,255,.04), transparent 26%),
        linear-gradient(180deg, #0f1722 0%, #0d1117 100%);
    display: flex; flex-direction: column; gap: 12px;
}
@media (max-width: 800px) { .sp-summary { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); } }

.sp-verdict {
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.07);
    background: linear-gradient(180deg, rgba(88,166,255,.05), rgba(255,255,255,.02));
    text-align: left;
}
.sp-verdict-top { width: 100%; display: flex; align-items: center; justify-content: flex-start; gap: 14px; text-align: left; }
.sp-verdict-copy { flex: 1 1 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; min-width: 0; text-align: left; }
.sp-verdict-title { width: 100%; text-align: left; font-size: 24px; font-weight: 850; line-height: .98; color: #cfe6ff; }
.sp-score-badge {
    min-width: 98px; min-height: 78px; padding: 12px 14px; border-radius: 16px; text-align: center;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, rgba(88,166,255,.16), rgba(88,166,255,.06));
    border: 1px solid rgba(88,166,255,.22);
    transition: background .25s, border-color .25s;
}
.sp-score-num { display: block; font-family: 'JetBrains Mono', monospace; font-size: 52px; font-weight: 850; line-height: .9; color: #cfe6ff; }
.sp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sp-stat {
    padding: 11px 10px 10px;
    border-radius: 12px;
    background: #0b1017;
    border: 1px solid rgba(255,255,255,.06);
    text-align: center;
}
.sp-stat-value { display: block; font-family: Inter, system-ui, -apple-system, sans-serif; font-size: 20px; line-height: 1; font-weight: 800; margin-bottom: 5px; color: #c6d0dd; }
.sp-stat-cap { display: block; font-family: Inter, system-ui, -apple-system, sans-serif; font-size: 10px; letter-spacing: 0; text-transform: none; color: #6f7d8f; font-weight: 600; }
.sp-call-highlights { min-width: 0; }
.signal-carousel { display: flex; flex-direction: column; gap: 10px; }
.signal-carousel-viewport {
    overflow: hidden; border-radius: 22px;
}
.signal-carousel-track {
    display: flex; width: 100%;
    transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.signal-carousel-slide {
    flex: 0 0 100%; min-width: 0;
}
.signal-card {
    --accent: #8b98aa;
    --accent-soft: rgba(139,152,170,.10);
    --accent-border: rgba(139,152,170,.24);
    --accent-glow: rgba(88,166,255,.12);
    position: relative; min-height: 300px; padding: 17px;
    border-radius: 22px; overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.018)),
        #0a1119;
    border: 1px solid rgba(255,255,255,.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 40px rgba(0,0,0,.34);
    display: flex; flex-direction: column; align-items: stretch;
}
.signal-card::after {
    content: ""; position: absolute; inset: 1px; border-radius: 21px;
    border: 1px solid var(--accent-border); opacity: .44; pointer-events: none;
}
.signal-card-bull {
    --accent: #74f29a;
    --accent-soft: rgba(116,242,154,.12);
    --accent-border: rgba(116,242,154,.30);
    --accent-glow: rgba(34,197,94,.18);
}
.signal-card-bear {
    --accent: #ff5f66;
    --accent-soft: rgba(255,95,102,.11);
    --accent-border: rgba(255,95,102,.28);
    --accent-glow: rgba(248,81,73,.16);
}
.signal-card-empty {
    justify-content: center; align-items: center; min-height: 220px;
    color: #667384; font-size: 12px; font-weight: 650;
}
.signal-card-header { position: relative; z-index: 1; margin-bottom: 16px; }
.signal-card-title-row {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.signal-card-kicker {
    display: inline-flex; align-items: center; gap: 7px;
    color: #e7eef8; font-size: 12px; line-height: 1; font-weight: 850;
    letter-spacing: .035em; text-transform: uppercase;
}
.signal-card-icon {
    width: 21px; height: 21px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent-soft); color: var(--accent);
    border: 1px solid var(--accent-border);
    font-size: 11px; font-weight: 850;
}
.signal-card-index {
    color: #6f7d8f; font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 800;
}
.signal-card-subtitle {
    margin-top: 7px; color: #788698;
    font-size: 11px; font-weight: 600; line-height: 1.25;
}
.signal-card-person {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    margin-top: 2px;
}
.signal-card-avatar {
    width: 82px; height: 82px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
    background: linear-gradient(145deg, rgba(255,255,255,.10), var(--accent-soft));
    border: 1px solid var(--accent-border);
    box-shadow: 0 0 0 6px rgba(255,255,255,.025), 0 18px 32px rgba(0,0,0,.35);
    color: #f0f6fc; font-size: 24px; font-weight: 850;
}
.signal-card-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.signal-card-author {
    margin-top: 14px; max-width: 100%;
    color: #f0f6fc; font-size: 18px; font-weight: 850; line-height: 1.05;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.signal-card-role {
    margin-top: 5px; max-width: 100%;
    color: #758498; font-size: 11px; font-weight: 600; line-height: 1.25;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.signal-card-badge {
    margin-top: 13px; align-self: center;
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 25px; padding: 0 11px; border-radius: 999px;
    background: var(--accent-soft); border: 1px solid var(--accent-border);
    color: var(--accent); font-size: 10px; font-weight: 850;
    text-transform: uppercase; letter-spacing: .05em;
}
.signal-card-stats {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    margin-top: auto; border-radius: 15px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    background: rgba(3,8,14,.45);
}
.signal-stat {
    min-width: 0; padding: 10px 5px;
    text-align: center; border-right: 1px solid rgba(255,255,255,.065);
}
.signal-stat:last-child { border-right: 0; }
.signal-stat-label {
    display: block; margin-bottom: 5px;
    color: #607085; font-size: 8.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .04em;
}
.signal-stat-value {
    display: block; color: #d9e3ef; font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 850; line-height: 1.1;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.signal-stat-value.good { color: #74f29a; }
.signal-stat-value.bad { color: #ff777d; }
.signal-carousel-controls {
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.signal-carousel-btn {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035);
    color: #9aa8ba; cursor: pointer; font-size: 15px; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
    transition: color .14s, background .14s, border-color .14s, transform .14s;
}
.signal-carousel-btn:hover {
    color: #f0f6fc; background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.16); transform: translateY(-1px);
}
.signal-carousel-dots { display: inline-flex; align-items: center; gap: 6px; padding: 0 3px; }
.signal-carousel-dot {
    width: 6px; height: 6px; border-radius: 999px; border: 0;
    background: #303a48; cursor: pointer; padding: 0;
    transition: width .18s, background .18s;
}
.signal-carousel-dot.active { width: 18px; background: #9fb1c8; }

/* Right: chart panel */
.sp-chart-panel {
    display: flex; flex-direction: column; min-width: 0; width: 100%;
    background: linear-gradient(180deg, #0d1117 0%, #0a0f15 100%);
}
.sp-chart-wrap { padding: 14px 18px 18px; flex: 1; min-height: 0; min-width: 0; width: 100%; display: flex; flex-direction: column; }
@media (max-width: 620px) { .sp-chart-wrap { padding: 12px; } }
.sp-chart-shell {
    position: relative; flex: 1; min-height: 380px; min-width: 0; width: 100%;
    border-radius: 16px; overflow: hidden;
    background: #0b1118;
    border: 1px solid rgba(255,255,255,.05);
}
@media (max-width: 620px) { .sp-chart-shell { min-height: 320px; } }
.sp-chart-shell canvas { display: block; width: 100% !important; height: 100% !important; }
#chartLoading {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(13,17,23,.6); border-radius: 16px;
    pointer-events: none;
}

/* Compact in-chart legend */
.sp-layers {
    position: absolute; top: 11px; right: 78px; z-index: 5;
    display: inline-flex; align-items: center; gap: 14px;
    padding: 0; border: 0; background: transparent;
}
.sp-layer-btn {
    border: 0; background: transparent; color: #788595;
    padding: 2px 0; font-size: 10px; font-weight: 800;
    line-height: 1; letter-spacing: .055em; text-transform: uppercase;
    cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    transition: color .14s, opacity .14s, transform .14s;
}
.sp-layer-btn:hover { color: #dce8f6; transform: translateY(-1px); }
.sp-layer-btn:focus-visible { outline: 1px solid rgba(88,166,255,.55); outline-offset: 4px; border-radius: 6px; }
.sp-layer-btn .sp-mark { width: 18px; height: 10px; position: relative; display: inline-block; flex-shrink: 0; opacity: .95; }
.sp-layer-btn .sp-mark.price::before {
    content: ""; position: absolute; left: 0; right: 0; top: 5px; height: 2px;
    border-radius: 999px; background: #58a6ff;
    box-shadow: 0 0 10px rgba(88,166,255,.35);
}
.sp-layer-btn .sp-mark.sentiment::before {
    content: ""; position: absolute; left: 0; right: 0; top: 5px; height: 2px;
    border-radius: 999px; background: #a371f7;
    box-shadow: 0 0 8px rgba(163,113,247,.28);
}
.sp-layer-btn .sp-mark.posts { display: inline-flex; align-items: flex-end; justify-content: center; gap: 2px; }
.sp-layer-btn .sp-mark.posts i { display: block; width: 3px; border-radius: 999px; background: #3fb950; box-shadow: 0 0 8px rgba(63,185,80,.32); }
.sp-layer-btn .sp-mark.posts i:nth-child(1) { height: 5px; }
.sp-layer-btn .sp-mark.posts i:nth-child(2) { height: 9px; }
.sp-layer-btn .sp-mark.posts i:nth-child(3) { height: 7px; }
.sp-layer-btn.active.price { color: #d7ebff; }
.sp-layer-btn.active.sentiment { color: #eadcff; }
.sp-layer-btn.active.posts { color: #c4f7cd; }
.sp-layer-btn:not(.active) { opacity: .32; }
.sp-layer-btn:not(.active) .sp-label { text-decoration: line-through; text-decoration-thickness: 1px; text-decoration-color: rgba(139,148,158,.65); }
.sp-layer-btn:not(.active) .sp-mark { filter: grayscale(.8); opacity: .55; }
.sp-layer-btn.unavailable {
    cursor: not-allowed; opacity: .18; transform: none;
    color: #555f6d;
}
.sp-layer-btn.unavailable:hover { transform: none; color: #555f6d; }
.sp-layer-btn.unavailable .sp-label { text-decoration: line-through; text-decoration-color: rgba(139,148,158,.4); }
.sp-layer-btn.unavailable .sp-mark { filter: grayscale(1); opacity: .35; }

/* Embedded ticker buzz panel */
.sp-buzz-panel {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px;
    background: #0b1118;
}
.sp-buzz-authors { min-height: 96px; }
.sp-buzz-empty {
    padding: 18px 0; color: #667384; font-size: 12px;
}
.sp-buzz-grid {
    display: grid; gap: 0;
    background: #0d1117;
    border: 1px solid #212a36;
    border-radius: 8px;
    overflow: hidden;
}
.sp-buzz-col {
    padding: 14px 16px;
    border-right: 1px solid #212a36;
    min-width: 0;
}
.sp-buzz-col:last-child { border-right: 0; }
.sp-buzz-stacked .sp-buzz-col {
    border-right: 0;
    border-bottom: 1px solid #212a36;
}
.sp-buzz-stacked .sp-buzz-col:last-child { border-bottom: 0; }
.sp-buzz-label {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-bottom: 12px;
    font-size: 12px; font-weight: 850; text-transform: uppercase;
    letter-spacing: .06em;
}
.sp-buzz-label-bull { color: #22c55e; }
.sp-buzz-label-bear { color: #ff5b63; }
.sp-buzz-label-other { color: #77859a; }
.sp-buzz-count {
    min-width: 20px; height: 18px; padding: 0 6px;
    border-radius: 5px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; letter-spacing: 0;
    color: #8b98aa; background: rgba(255,255,255,.05);
}
.sp-buzz-label-bull .sp-buzz-count { background: rgba(34,197,94,.10); color: #64d987; }
.sp-buzz-label-bear .sp-buzz-count { background: rgba(248,81,73,.11); color: #ff858b; }
.sp-buzz-chips {
    --sp-buzz-row-h: 32px;
    --sp-buzz-row-gap: 6px;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
    max-height: calc((var(--sp-buzz-row-h) * 9) + (var(--sp-buzz-row-gap) * 8));
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(148,163,184,.28) transparent;
}
.sp-buzz-chips::-webkit-scrollbar { width: 5px; }
.sp-buzz-chips::-webkit-scrollbar-track { background: transparent; }
.sp-buzz-chips::-webkit-scrollbar-thumb {
    background: rgba(148,163,184,.26);
    border-radius: 999px;
}
.sp-buzz-author {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 9px 3px 3px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.035);
    color: #a9b7c9; cursor: pointer;
    font-family: inherit; appearance: none;
    transition: background .14s, border-color .14s, color .14s;
}
.sp-buzz-author:hover {
    background: rgba(255,255,255,.065);
    border-color: rgba(255,255,255,.12);
}
.sp-buzz-author.active {
    background: #f0f6fc;
    border-color: #f0f6fc;
    color: #070b10;
}
.sp-buzz-avatar {
    width: 24px; height: 24px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.07);
    display: inline-flex; align-items: center; justify-content: center;
}
.sp-buzz-avatar img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.sp-buzz-avatar-fallback {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800;
}
.sp-buzz-name {
    max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    font-size: 11.5px; font-weight: 550;
}
.sp-buzz-idea-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px; font-weight: 800; line-height: 1;
    color: #728094;
    padding-left: 1px;
}
.sp-buzz-author.active .sp-buzz-idea-count { color: rgba(7,11,16,.58); }
.sp-buzz-thesis {
    grid-column: 1 / -1;
    padding: 22px 26px;
    border-top: 1px solid #212a36;
    animation: spBuzzIn .16s ease;
}
.sp-buzz-thesis:empty { display: none; }
.sp-buzz-thesis-head {
    display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.sp-buzz-thesis .sp-buzz-avatar { width: 40px; height: 40px; }
.sp-buzz-thesis-name {
    font-size: 15px; font-weight: 850; color: #f0f6fc;
    text-decoration: none;
}
.sp-buzz-thesis-name:hover { color: #58a6ff; text-decoration: underline; }
.sp-buzz-role {
    display: block; margin-top: 1px;
    font-size: 12px; color: #7d8b9d;
}
.sp-buzz-text {
    font-size: 16px; line-height: 1.55; color: #e1e8f0;
    font-style: italic;
}
.sp-buzz-thesis-list {
    display: flex; flex-direction: column; gap: 12px;
}
.sp-buzz-thesis-list.scrollable {
    overflow-y: auto;
    padding-right: 8px;
}
.sp-buzz-thesis-list.scrollable::-webkit-scrollbar { width: 4px; }
.sp-buzz-thesis-list.scrollable::-webkit-scrollbar-thumb {
    background: #303a48; border-radius: 999px;
}
.sp-buzz-thesis-list.scrollable::-webkit-scrollbar-track { background: transparent; }
.sp-buzz-thesis-item {
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.sp-buzz-thesis-item:first-child {
    padding-top: 0;
    border-top: 0;
}
.sp-buzz-thesis-date {
    display: block; margin-bottom: 5px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 700;
    color: #647286;
}
@keyframes spBuzzIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (max-width: 760px) {
    .sp-buzz-panel { padding: 18px 14px 20px; }
    .sp-buzz-grid { grid-template-columns: 1fr !important; }
    .sp-buzz-col { border-right: 0; border-bottom: 1px solid #212a36; }
    .sp-buzz-col:last-child { border-bottom: 0; }
    .sp-buzz-thesis { padding: 18px 16px; }
    .sp-buzz-text { font-size: 15px; }
}

/* Ticker Top Calls */
.ticker-calls-panel {
    --exp-bg: #000;
    --exp-bg-card: #0d1117;
    --exp-bg-hover: #161b22;
    --exp-border: #21262d;
    --exp-border-strong: #30363d;
    --exp-text-pri: #E8EDF5;
    --exp-text-body: #D1D5DE;
    --exp-text-sec: #95A0B2;
    --exp-text-muted: #6B7A8D;
    --exp-text-faint: #4A5568;
    --exp-green: #22C55E;
    --exp-green-soft: rgba(34,197,94,0.12);
    --exp-green-text: #4ADE80;
    --exp-red: #EF4444;
    --exp-red-soft: rgba(239,68,68,0.12);
    --exp-red-text: #F87171;
    --exp-accent: #7AA2FF;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin-top: 36px; margin-bottom: 16px; overflow: visible;
}
.ticker-calls-panel .tc-head {
    display: flex; align-items: center; flex-wrap: wrap;
    padding: 0 0 18px; gap: 10px 12px;
}
.ticker-calls-panel .tc-title {
    flex-basis: 100%;
    font-size: 30px; font-weight: 800; color: #F0F4FC; letter-spacing: -0.5px;
}
.ticker-calls-panel .wl-toggle { display: flex; gap: 2px; }
.ticker-calls-panel .wl-btn,
.ticker-calls-panel .exp-period-btn {
    font-family: inherit; font-size: 11.5px; font-weight: 600;
    padding: 4px 14px; border-radius: 6px; cursor: pointer; appearance: none;
    border: 1px solid var(--exp-border); background: var(--exp-bg-card); color: var(--exp-text-muted);
    transition: background-color .15s, border-color .15s, color .15s;
}
.ticker-calls-panel .wl-btn:hover,
.ticker-calls-panel .exp-period-btn:hover { background: var(--exp-bg-hover); color: var(--exp-text-sec); border-color: var(--exp-border-strong); }
.ticker-calls-panel .wl-btn.win.active { background: var(--exp-green-soft); color: var(--exp-green); border-color: rgba(34,197,94,0.25); }
.ticker-calls-panel .wl-btn.lose.active { background: var(--exp-red-soft); color: var(--exp-red); border-color: rgba(239,68,68,0.25); }
.ticker-calls-panel .tc-controls { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.ticker-calls-panel .exp-period { display: flex; gap: 2px; }
.ticker-calls-panel .exp-period-btn { padding: 4px 12px; background: transparent; }
.ticker-calls-panel .exp-period-btn.active { background: var(--exp-bg-hover); color: var(--exp-text-pri); border-color: var(--exp-border-strong); }
.ticker-calls-panel .tc-track-wrap { position: relative; }
.ticker-calls-panel .tc-track-wrap::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 56px;
    background: linear-gradient(-90deg, var(--exp-bg), transparent);
    z-index: 10; pointer-events: none;
}
.ticker-calls-panel .tc-track {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 16px 56px 20px 4px; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    cursor: grab; -webkit-overflow-scrolling: touch;
}
.ticker-calls-panel .tc-track:active { cursor: grabbing; }
.ticker-calls-panel .tc-track::-webkit-scrollbar { display: none; }
.ticker-calls-panel .tc-card {
    flex-shrink: 0; width: 172px;
    background: var(--exp-bg-card); border: 1px solid var(--exp-border);
    border-radius: 8px; padding: 15px 15px 13px;
    cursor: pointer; scroll-snap-align: start;
    transition: transform .2s cubic-bezier(.34,1.56,.64,1), border-color .15s, background .15s, box-shadow .2s, width .25s cubic-bezier(.34,1.2,.64,1);
    position: relative; overflow: hidden; user-select: none;
}
.ticker-calls-panel .tc-card:hover {
    transform: scale(1.05) translateY(-3px);
    border-color: var(--exp-border-strong);
    background: var(--exp-bg-hover); box-shadow: 0 8px 24px rgba(0,0,0,.5); z-index: 5;
}
.ticker-calls-panel .tc-card.open {
    width: auto; display: flex; flex-direction: row; align-items: stretch;
    min-height: var(--tc-card-h, auto);
    border-color: var(--exp-border-strong); background: var(--exp-bg-hover);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    transform: translateY(-2px); z-index: 10; overflow: hidden;
}
.ticker-calls-panel .tc-card.open:hover { transform: translateY(-2px); scale: 1; }
.ticker-calls-panel .tc-card-main { flex-shrink: 0; width: 160px; }
.ticker-calls-panel .tc-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ticker-calls-panel .tc-ava {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 9.5px; font-weight: 700;
    border: 1px solid rgba(255,255,255,.06); overflow: hidden;
}
.ticker-calls-panel .tc-ava img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ticker-calls-panel .tc-author {
    font-size: 11.5px; font-weight: 500; color: var(--exp-text-sec);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.ticker-calls-panel .tc-idea { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; flex-wrap: wrap; }
.ticker-calls-panel .tc-sym {
    font-size: 17px; font-weight: 700; color: var(--exp-text-pri);
    font-family: 'SF Mono','Cascadia Code','Consolas', monospace;
}
.ticker-calls-panel .tc-card.open .tc-sym { font-size: 20px; }
.ticker-calls-panel .tc-card.open .tc-dir { font-size: 10px; padding: 3px 8px; }
.ticker-calls-panel .tc-card.open .tc-ret { font-size: 26px; }
.ticker-calls-panel .tc-dir { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; border: none; }
.ticker-calls-panel .tc-dir-long { background: var(--exp-green-soft); color: var(--exp-green-text); }
.ticker-calls-panel .tc-dir-short { background: var(--exp-red-soft); color: var(--exp-red-text); }
.ticker-calls-panel .tc-ret {
    font-size: 22px; font-weight: 700; line-height: 1; margin-bottom: 8px;
    font-family: 'SF Mono','Cascadia Code','Consolas', monospace;
}
.ticker-calls-panel .tc-ret.ti10-pos { color: var(--exp-green); }
.ticker-calls-panel .tc-ret.ti10-neg { color: var(--exp-red); }
.ticker-calls-panel .tc-meta { margin-top: 2px; display: flex; align-items: center; gap: 5px; }
.ticker-calls-panel .tc-date { font-size: 10px; color: var(--exp-text-muted); margin-left: auto; white-space: nowrap; flex-shrink: 0; }
.ticker-calls-panel .tc-broken {
    font-size: 8.5px; font-weight: 700; color: var(--exp-text-faint);
    background: rgba(255,255,255,.03); border: none;
    border-radius: 4px; padding: 2px 6px; margin-bottom: 6px;
    display: inline-block;
}
.ticker-calls-panel .tc-thesis { display: none; }
.ticker-calls-panel .tc-card.open .tc-thesis {
    display: flex; align-items: flex-start; padding: 8px 0 4px;
}
.ticker-calls-panel .tc-thesis-body {
    font-size: 13px; color: var(--exp-text-sec); line-height: 1.65;
    padding: 0 16px 0 18px; border-left: 2px solid rgba(255,255,255,.06);
    width: 480px; max-height: 260px;
    overflow-y: auto; overflow-x: hidden;
}
.ticker-calls-panel .tc-thesis-body.long { border-left-color: rgba(34,197,94,0.20); }
.ticker-calls-panel .tc-thesis-body.short { border-left-color: rgba(239,68,68,0.20); }
.ticker-calls-panel .tc-card.open .tc-thesis-inner {
    display: flex; flex-direction: column; gap: 8px;
}
.ticker-calls-panel .tc-prices {
    display: flex; align-items: center; gap: 6px;
    padding: 0 16px 0 18px;
    font-family: 'SF Mono','Cascadia Code','Consolas', monospace;
    font-size: 12px;
}
.ticker-calls-panel .tc-price-lbl {
    color: var(--exp-text-muted); font-size: 10px;
    text-transform: uppercase; letter-spacing: .5px;
}
.ticker-calls-panel .tc-price-val { color: var(--exp-text-pri); font-weight: 600; }
.ticker-calls-panel .tc-price-arrow { color: var(--exp-text-muted); padding: 0 2px; }
.ticker-calls-panel .tc-price-date {
    color: var(--exp-text-muted); font-size: 11px; margin-right: 6px;
    padding-right: 8px; border-right: 1px solid rgba(255,255,255,.08);
    white-space: nowrap;
}
.ticker-calls-panel .tc-src-wrap { padding: 0 16px 0 18px; }
.ticker-calls-panel .tc-src-link {
    display: inline-block; font-size: 11px; font-weight: 600;
    color: var(--exp-accent, #7aa2ff); text-decoration: none;
    padding: 4px 10px; border: 1px solid rgba(122,162,255,.25);
    border-radius: 5px; transition: background .12s, border-color .12s;
}
.ticker-calls-panel .tc-src-link:hover {
    background: rgba(122,162,255,.08);
    border-color: rgba(122,162,255,.45);
    text-decoration: none;
}
.ticker-calls-panel .tc-card.open .tc-author { cursor: pointer; transition: color .12s; }
.ticker-calls-panel .tc-card.open .tc-author:hover { color: var(--exp-accent); text-decoration: underline; }

.tc-sheet {
    --exp-bg-card: #0d1117;
    --exp-bg-hover: #161b22;
    --exp-border: #21262d;
    --exp-border-strong: #30363d;
    --exp-text-pri: #E8EDF5;
    --exp-text-body: #D1D5DE;
    --exp-text-sec: #95A0B2;
    --exp-text-muted: #6B7A8D;
    --exp-green: #22C55E;
    --exp-green-soft: rgba(34,197,94,0.12);
    --exp-green-text: #4ADE80;
    --exp-red: #EF4444;
    --exp-red-soft: rgba(239,68,68,0.12);
    --exp-red-text: #F87171;
    --exp-accent: #7AA2FF;
    display: none;
}
@media (max-width: 768px) {
    .ticker-calls-panel .tc-track {
        padding: 18px 16px 28px; scroll-snap-type: x mandatory;
        scroll-padding-inline: 16px; overflow-y: visible; cursor: auto;
    }
    .ticker-calls-panel .tc-track-wrap { overflow: visible; scroll-margin-top: 70px; }
    .ticker-calls-panel .tc-track-wrap::after { display: none; }
    .ticker-calls-panel .tc-card {
        width: 180px; scroll-snap-align: center; opacity: .42;
        transform: scale(.92); transform-origin: center center;
        transition: opacity .22s ease, transform .25s cubic-bezier(.34,1.2,.64,1);
    }
    .ticker-calls-panel .tc-track .tc-card:first-child { scroll-snap-align: start; }
    .ticker-calls-panel .tc-track .tc-card:last-child { scroll-snap-align: end; }
    .ticker-calls-panel .tc-card.is-focus {
        opacity: 1; transform: scale(1.06); z-index: 2;
        border-color: var(--exp-border-strong); box-shadow: 0 10px 28px rgba(0,0,0,.5);
    }
    .ticker-calls-panel .tc-card:hover {
        transform: scale(.92); box-shadow: none; background: var(--exp-bg-card); border-color: var(--exp-border);
    }
    .ticker-calls-panel .tc-card.is-focus:hover {
        transform: scale(1.06); box-shadow: 0 10px 28px rgba(0,0,0,.5);
        background: var(--exp-bg-card); border-color: var(--exp-border-strong);
    }
    .ticker-calls-panel .tc-card.open {
        width: 180px; flex-direction: column; height: auto;
        transform: scale(1.06); background: var(--exp-bg-card);
    }
    .ticker-calls-panel .tc-card.open .tc-thesis { display: none; }
    .ticker-calls-panel .tc-card.open .tc-sym { font-size: 17px; }
    .ticker-calls-panel .tc-card.open .tc-dir { font-size: 9px; padding: 2px 6px; }
    .ticker-calls-panel .tc-card.open .tc-ret { font-size: 22px; }

    .tc-sheet {
        display: block; position: fixed; inset: 0; z-index: 9999;
        visibility: hidden; pointer-events: none;
    }
    .tc-sheet.open { visibility: visible; pointer-events: auto; }
    .tc-sheet-backdrop {
        position: absolute; inset: 0; background: rgba(0,0,0,.65);
        opacity: 0; transition: opacity .22s ease;
    }
    .tc-sheet.open .tc-sheet-backdrop { opacity: 1; }
    .tc-sheet-panel {
        position: absolute; left: 0; right: 0; bottom: 0;
        background: var(--exp-bg-card, #111214); border-top: 1px solid var(--exp-border, #22252a);
        border-top-left-radius: 18px; border-top-right-radius: 18px;
        padding: 10px 20px 24px; max-height: 80svh; overflow-y: auto;
        -webkit-overflow-scrolling: touch; transform: translateY(100%);
        transition: transform .28s cubic-bezier(.22,1,.36,1);
        box-shadow: 0 -12px 40px rgba(0,0,0,.55); touch-action: pan-y;
    }
    .tc-sheet.open .tc-sheet-panel { transform: translateY(0); }
    .tc-sheet-panel.tc-sheet-dragging { transition: none; }
    .tc-sheet-grabber {
        width: 44px; height: 4px; background: rgba(255,255,255,.18);
        border-radius: 2px; margin: 0 auto 14px; cursor: grab;
    }
    .tc-sheet-close {
        position: absolute; top: 8px; right: 10px; width: 44px; height: 44px;
        border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04);
        color: var(--exp-text-sec, #c9d1d9); font-size: 24px; line-height: 1;
        cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }
    .tc-sheet-close:hover, .tc-sheet-close:active { background: rgba(255,255,255,.10); color: #fff; }
    .tc-sheet-counter {
        font-size: 11px; font-weight: 600; letter-spacing: .5px;
        color: var(--exp-text-muted, #8b949e); font-variant-numeric: tabular-nums;
        margin: 4px 0 10px; padding-right: 48px;
    }
    .tc-sheet-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .tc-sheet-ava {
        width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
        display: flex; align-items: center; justify-content: center;
        font-size: 13px; font-weight: 700; border: 1px solid rgba(255,255,255,.06);
    }
    .tc-sheet-ava img { width: 100%; height: 100%; object-fit: cover; }
    .tc-sheet-author-wrap { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
    .tc-sheet-author {
        font-size: 15px; font-weight: 600; color: var(--exp-text-sec, #c9d1d9);
        text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }
    .tc-sheet-author:hover { color: var(--exp-accent, #7aa2ff); text-decoration: underline; }
    .tc-sheet-role {
        font-size: 12px; color: var(--exp-text-muted, #8b949e); line-height: 1.35;
        overflow: hidden; text-overflow: ellipsis;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    }
    .tc-sheet-role:empty { display: none; }
    .tc-sheet-title { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
    .tc-sheet-sym {
        font-family: 'SF Mono','Cascadia Code','Consolas',monospace;
        font-size: 24px; font-weight: 700; color: var(--exp-text-pri, #f0f4fc);
    }
    .tc-sheet-dir { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
    .tc-sheet-dir.tc-dir-long { background: var(--exp-green-soft); color: var(--exp-green-text); }
    .tc-sheet-dir.tc-dir-short { background: var(--exp-red-soft); color: var(--exp-red-text); }
    .tc-sheet-ret {
        font-family: 'SF Mono','Cascadia Code','Consolas',monospace;
        font-size: 30px; font-weight: 700; line-height: 1; margin-bottom: 4px;
    }
    .tc-sheet-ret.ti10-pos { color: var(--exp-green, #3fb950); }
    .tc-sheet-ret.ti10-neg { color: var(--exp-red, #f85149); }
    .tc-sheet-date { font-size: 12px; color: var(--exp-text-muted, #8b949e); margin-bottom: 18px; }
    .tc-sheet-prices {
        display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
        margin-bottom: 18px; padding: 10px 12px; border-radius: 8px;
        background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
        font-family: 'SF Mono','Cascadia Code','Consolas',monospace; font-size: 12px;
    }
    .tc-sheet-prices .tc-price-lbl {
        color: var(--exp-text-muted, #8b949e); font-size: 10px;
        text-transform: uppercase; letter-spacing: .5px;
    }
    .tc-sheet-prices .tc-price-val { color: var(--exp-text-pri, #f0f4fc); font-weight: 600; }
    .tc-sheet-prices .tc-price-arrow { color: var(--exp-text-muted, #8b949e); }
    .tc-sheet-thesis {
        font-size: 15px; line-height: 1.6; color: var(--exp-text-body, #c9d1d9);
        padding: 14px 0 0 16px; border-left: 2px solid rgba(255,255,255,.08); white-space: pre-wrap;
    }
    .tc-sheet-thesis.long { border-left-color: rgba(34,197,94,0.32); }
    .tc-sheet-thesis.short { border-left-color: rgba(239,68,68,0.32); }
    .tc-sheet-src-link {
        display: inline-block; margin-top: 14px;
        color: var(--exp-accent, #7aa2ff); text-decoration: none;
        font-size: 13px; font-weight: 600;
    }
    .tc-sheet-src-link:hover { text-decoration: underline; }
    .tc-sheet-nav { display: flex; gap: 10px; margin-top: 22px; }
    .tc-sheet-nav-btn {
        flex: 1; min-height: 48px; border: 1px solid var(--exp-border, #22252a);
        background: var(--exp-bg-hover, rgba(255,255,255,.04));
        color: var(--exp-text-pri, #f0f4fc); font-family: inherit; font-size: 14px; font-weight: 600;
        touch-action: manipulation; -webkit-tap-highlight-color: transparent;
    }
    .tc-sheet-nav-btn:hover, .tc-sheet-nav-btn:active { background: rgba(122,162,255,.08); border-color: rgba(122,162,255,.25); }
    .tc-sheet-nav-btn:disabled { opacity: .35; cursor: not-allowed; }
    .tc-sheet-nav-btn span { font-size: 16px; line-height: 1; }
    body.tc-sheet-lock { overflow: hidden; }
}

/* ═══ FEED ═══ */
.feed-header {
    display: flex; align-items: center; flex-wrap: wrap;
    margin: 28px 0 0; padding: 0 0 18px; gap: 10px 12px;
}
.feed-section-title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 30px; font-weight: 800; color: #F0F4FC;
    letter-spacing: -0.5px; line-height: 1.05;
}
.filter-bar { display: flex; align-items: center; gap: 6px; margin: 0 0 6px; flex-wrap: wrap; }

/* filter pills: see static/css/filter-bar.css */

/* ─── Feed rows (sources-style) ─── */
.sr-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .12s; cursor: pointer;
}
.sr-row:hover { background: rgba(255,255,255,.03); }
.sr-row.expanded { background: rgba(255,255,255,.02); }
.sr-time {
    font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
    font-size: 0.75rem; color: #555D6B; white-space: nowrap;
    min-width: 46px; padding-top: 2px; text-align: right; flex-shrink: 0;
}
.sr-date { display: block; font-size: 0.68rem; color: #6e7681; }
.sr-icon { flex-shrink: 0; padding-top: 2px; }
.sr-body { flex: 1; min-width: 0; }

/* ── Speaker line (top) ── */
.sr-speaker-line { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 3px; }
.sr-author, .sr-author:visited, .sr-author:link {
    font-size: 0.84rem; color: #F0F4FC; text-decoration: none; font-weight: 700;
}
.sr-author:hover { color: #58a6ff; }
.sr-author-role { font-size: 0.72rem; color: #7a8a9d; }
.sr-author-channel { font-size: 0.72rem; }
.sr-author-channel a { color: #58a6ff; text-decoration: none; }
.sr-author-channel a:hover { text-decoration: underline; }
.sr-author-role + .sr-author-channel::before { content: '·'; color: #30363d; margin: 0 4px; }

/* ── Thesis ── */
.sr-thesis {
    font-size: 0.82rem; color: #7a8a9d; line-height: 1.55;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    transition: white-space .15s;
}
.sr-row.expanded .sr-thesis { white-space: normal; }
/* Short thesis (headline) — readable but dimmed */
.sr-thesis[style*="font-weight: 600"] { color: #7a8a9d !important; }
/* YouTube + Substack: hide full thesis until expanded */
.sr-row[data-src="youtube"] .sr-thesis-full,
.sr-row[data-src="newsletter"] .sr-thesis-full { display: none; }
.sr-row[data-src="youtube"].expanded .sr-thesis-full,
.sr-row[data-src="newsletter"].expanded .sr-thesis-full {
    display: block;
    margin-top: 6px; padding-left: 10px;
    border-left: 2px solid rgba(255, 255, 255, 0.07);
    color: rgba(192, 205, 224, 0.62); font-size: 0.78rem;
}

/* ── Meta: tickers + score ── */
.sr-meta {
    display: flex; align-items: center; gap: 6px; margin-top: 4px; flex-wrap: wrap;
}
.sr-meta .ticker-pill {
    display: inline-flex; align-items: center; gap: 4px;
    line-height: 1; padding: 1px 0; vertical-align: middle;
}
.sr-meta .ticker-symbol-text { line-height: 1; }
.sr-meta .ticker-pill .ticker-badge {
    margin-left: 1px; padding: 1px 4px; border-radius: 999px;
    background: rgba(88,166,255,.10); border: 1px solid rgba(88,166,255,.20);
    color: #9fcbff; font-size: 7px; font-weight: 800; letter-spacing: .03em;
}
.sr-meta .ticker-pill .ticker-badge.first {
    background: rgba(251,191,36,.10); border-color: rgba(251,191,36,.20); color: #f9d77e;
}
.sr-meta .ticker-pill .ticker-badge.new {
    background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.20); color: #7ee09b;
}
.sr-right {
    display: flex; flex-direction: column; align-items: center;
    gap: 2px; flex-shrink: 0; align-self: center;
}
.sr-score-label {
    font-size: 9px; font-weight: 600; letter-spacing: 0.4px;
    color: #555D6B; font-family: 'Inter', system-ui, sans-serif;
    line-height: 1; user-select: none;
}

/* ── Save button (right side) ── */
.sr-save {
    background: none; border: none; cursor: pointer;
    font-size: 16px; color: #30363d; padding: 0 4px;
    line-height: 1;
}
.sr-save:hover { color: #7a8a9d; }
.sr-save.saved { color: #F59E0B; }

/* ── Tweet embed (hidden until expanded) ── */
.sr-tweet-embed { display: none; margin-top: 8px; max-width: 500px; overflow: hidden; border-radius: 8px; }
.sr-row.expanded .sr-tweet-embed { display: block; }
.sr-tweet-embed.loading { min-height: 200px; background: #0a0e16; border-radius: 8px; }
.sr-tweet-embed iframe { border-radius: 8px !important; }

.load-more { width: 100%; background: #0d1117; border: 1px solid #21262d; color: #7a8a9d; border-radius: 6px; padding: 9px; font-size: 11px; font-family: inherit; margin-top: 8px; cursor: pointer; transition: background .12s; }
.load-more:hover { background: #131920; color: #c9d1d9; }
.page-footer { text-align: center; font-size: 9px; color: #30363d; padding: 16px 0 2px; }
