/* ─── Tipping Point announcement post ─── */

.tp-hero {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.10) 0%, rgba(110, 168, 255, 0.05) 60%, transparent 100%);
    padding: 2.5rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(167, 139, 250, 0.15);
}
.tp-hero h1 { margin: 0 0 0.75rem; font-size: 2.1rem; line-height: 1.2; }
.tp-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary, #cbd5e1);
    max-width: 760px;
    margin: 0 0 1rem;
}
.tp-hero-meta {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    margin: 0;
}
.tp-byline {
    margin: 0 0 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
}

.tp-key-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}
.tp-stat {
    background: var(--bg-card, #1a1a2e);
    border: 1px solid var(--card-border, rgba(255,255,255,0.08));
    border-radius: 8px;
    padding: 1rem 1.25rem;
}
.tp-stat .tp-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #c084fc;
    line-height: 1;
}
.tp-stat .tp-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary, #cbd5e1);
    margin-top: 0.4rem;
}

.tp-pullquote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary, #e2e8f0);
    border-left: 4px solid #c084fc;
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin: 1.5rem 0;
    max-width: 720px;
}
.tp-pullquote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
}

.tp-data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.92rem;
}
.tp-data-table caption {
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    padding: 0 0 0.5rem;
    caption-side: top;
}
.tp-data-table th,
.tp-data-table td {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: left;
}
.tp-data-table th {
    background: rgba(255,255,255,0.02);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.tp-data-table td.numeric { text-align: right; font-variant-numeric: tabular-nums; }
.tp-data-table td.tp-tip-fast   { color: #4ade80; font-weight: 600; }
.tp-data-table td.tp-tip-mid    { color: #6ea8ff; font-weight: 600; }
.tp-data-table td.tp-tip-slow   { color: #eab308; font-weight: 600; }
.tp-data-table td.tp-tip-broken { color: #f87171; font-weight: 600; }
.tp-data-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
}

.tp-callout {
    background: rgba(110, 168, 255, 0.06);
    border: 1px solid rgba(110, 168, 255, 0.2);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}
.tp-callout h3 { color: #6ea8ff; margin-top: 0; }
.tp-callout p { margin-bottom: 0; }

.tp-finding {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}
.tp-finding h3 { margin-top: 0; }
.tp-finding .tp-finding-stat {
    display: inline-block;
    background: rgba(192, 132, 252, 0.12);
    color: #c084fc;
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.tp-comparator {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}
.tp-comparator th,
.tp-comparator td {
    padding: 0.5rem 0.65rem;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}
.tp-comparator th { background: rgba(255,255,255,0.03); font-weight: 600; }
.tp-comparator td.match    { color: #4ade80; }
.tp-comparator td.partial  { color: #eab308; }
.tp-comparator td.absent   { color: #f87171; }

.tp-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2rem 0;
}
.tp-cta a {
    display: inline-block;
    padding: 0.65rem 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.tp-cta a.cta-primary {
    background: linear-gradient(135deg, #6ea8ff 0%, #c084fc 100%);
    color: #0b0d12;
}
.tp-cta a.cta-secondary {
    background: rgba(255,255,255,0.04);
    color: var(--text-primary, #e2e8f0);
    border: 1px solid rgba(255,255,255,0.1);
}
.tp-cta a.cta-secondary:hover { border-color: rgba(167, 139, 250, 0.4); }

.tp-faq {
    margin: 2rem 0;
}
.tp-faq h2 { margin-bottom: 0.75rem; }
.tp-faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
}
.tp-faq-q {
    font-weight: 600;
    color: var(--text-primary, #e2e8f0);
    margin: 0 0 0.5rem;
    font-size: 1rem;
}
.tp-faq-a { margin: 0; color: var(--text-secondary, #cbd5e1); }
.tp-faq-a code {
    background: rgba(255,255,255,0.05);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
}

.tp-source-row {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
}
.tp-source-row ul { margin: 0.5rem 0; padding-left: 1.25rem; }
.tp-source-row li { margin: 0.2rem 0; }

@media (max-width: 480px) {
    .tp-hero { padding: 1.5rem 1rem; }
    .tp-hero h1 { font-size: 1.6rem; }
    .tp-stat .tp-stat-value { font-size: 1.6rem; }
    .tp-data-table { font-size: 0.82rem; }
    .tp-data-table th, .tp-data-table td { padding: 0.4rem 0.5rem; }
}
