/* ── Blog page styles ──────────────────────────────────── */

.blog-hero {
    padding: 140px 0 48px;
    background: var(--bg-white);
    text-align: center;
}

.blog-hero .section-label {
    margin-bottom: 16px;
}

.blog-hero-title {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text);
    max-width: 820px;
    margin: 0 auto 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.blog-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-faint);
}

/* ── Article body ──────────────────────────────────────── */
.blog-article {
    padding: 56px 0 80px;
    background: var(--bg-white);
}

.blog-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.0rem;
    line-height: 1.75;
    color: var(--text);
}

.blog-content p {
    margin-bottom: 1.5em;
}

.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 2.4em 0 0.8em;
    line-height: 1.3;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 2em 0 0.7em;
    line-height: 1.35;
}

.blog-content strong {
    font-weight: 650;
    color: var(--text);
}

/* ── Intro blockquote ──────────────────────────────────── */
.blog-intro-quote {
    border-left: 3px solid var(--brand);
    padding: 20px 28px;
    background: var(--bg-elevated);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 2em;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

/* ── Callout / Aside box ───────────────────────────────── */
.blog-callout {
    background: var(--accent-light);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 2em 0;
}

.blog-callout-icon {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.blog-callout p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blog-callout ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-callout li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 0;
    line-height: 1.6;
}

.blog-callout li strong {
    color: var(--text);
}

/* ── Figures / Media ───────────────────────────────────── */
.blog-figure {
    margin: 2.5em 0;
}

.blog-figure img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.blog-figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

.blog-figcaption a {
    color: var(--accent);
}

.blog-figcaption a:hover {
    text-decoration: underline;
}

/* ── Tables ────────────────────────────────────────────── */
.blog-table-wrap {
    overflow-x: auto;
    margin: 2em 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    background: var(--bg-card);
    min-width: 600px;
}

.blog-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.blog-table td {
    padding: 12px 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.55;
}

.blog-table tr:last-child td {
    border-bottom: none;
}

.blog-table tr:hover td {
    background: var(--bg-elevated);
}

.blog-table .status-pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.status-enacted {
    background: #dcfce7;
    color: #166534;
}

.status-passed {
    background: #dbeafe;
    color: #1e40af;
}

.status-stalled {
    background: #fef9c3;
    color: #854d0e;
}

.status-committee {
    background: var(--bg-elevated);
    color: var(--text-muted);
}

.status-active {
    background: #ede9fe;
    color: #5b21b6;
}

.prob-high { color: #166534; font-weight: 600; }
.prob-medium { color: #854d0e; font-weight: 600; }
.prob-low { color: #b91c1c; font-weight: 600; }

/* ── Section label for tables ──────────────────────────── */
.blog-table-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 2.4em 0 0.6em;
}

/* ── Conclusion list ───────────────────────────────────── */
.blog-content .blog-list {
    list-style: none;
    margin: 0 0 1.5em 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-list li {
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-faint);
}

/* ── CTA box inside article ────────────────────────────── */
.blog-cta-box {
    background: var(--brand-light);
    border: 1px solid #c3cfe2;
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    text-align: center;
    margin-top: 3em;
}

.blog-cta-box p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brand);
    margin-bottom: 20px;
    line-height: 1.55;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .blog-hero {
        padding: 110px 0 36px;
    }

    .blog-hero-title {
        font-size: 1.75rem;
    }

    .blog-article {
        padding: 40px 0 64px;
    }

    .blog-intro-quote {
        padding: 16px 20px;
    }

    .blog-callout {
        padding: 20px;
    }

    .blog-table {
        font-size: 0.8rem;
    }

    .blog-table th,
    .blog-table td {
        padding: 10px 12px;
    }
}
