/* Single blog article - shared layout */
.post-wrap {
    padding: clamp(6.5rem, 10vw, 8rem) var(--gutter, 16px) var(--space-xl, 3rem);
    background: linear-gradient(180deg, #f8f9fb 0%, #fff 35%);
}
.post-wrap .container {
    max-width: min(90vw, 720px);
    margin: 0 auto;
}
.post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy, #0b1635);
    text-decoration: none;
    margin-bottom: 1.5rem;
}
.post-back:hover { color: var(--gold, #ff6600); }
.post-back svg { width: 16px; height: 16px; flex-shrink: 0; }
.post-meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold, #ff6600);
    margin-bottom: 0.5rem;
}
.post-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--navy, #0b1635);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1.25rem;
}
.post-lead {
    font-size: 1.0625rem;
    color: var(--muted, #6b7280);
    line-height: 1.65;
    margin: 0 0 1.75rem;
}
.post-lead a { font-weight: 600; color: var(--navy, #0b1635); text-decoration: underline; text-underline-offset: 2px; }
.post-lead a:hover { color: var(--gold, #ff6600); }
/* In-article hero image */
.post-hero-figure {
    margin: 0 0 1.75rem;
    border-radius: 10px;
    overflow: hidden;
    background: #0b1635;
}
.post-hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
.post-filogix-note {
    margin: 0 0 1.25rem;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--gold, #ff6600);
    background: rgba(255, 102, 0, 0.08);
    font-size: 0.9375rem;
    line-height: 1.6;
}
/* Left-heavy branded art (headline on the left) */
.post-hero-figure.post-hero-figure--object-left {
    margin: 0 0 1.75rem;
    border-radius: 10px;
    overflow: hidden;
    background: #0b1635;
    aspect-ratio: 1024 / 537;
    max-height: min(58vh, 440px);
}
.post-hero-figure.post-hero-figure--object-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}
.post-prose {
    font-size: 1rem;
    color: var(--charcoal, #1a1a1a);
    line-height: 1.7;
}
.post-prose p { margin: 0 0 1rem; }
.post-prose h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy, #0b1635);
    margin: 1.75rem 0 0.75rem;
}
.post-prose ul { margin: 0 0 1rem 1.25rem; padding: 0; }
.post-prose li { margin-bottom: 0.35rem; }
.post-cta {
    margin-top: 2rem;
    padding: 1.25rem 1.35rem;
    background: rgba(11, 22, 53, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    font-size: 0.9375rem;
    color: var(--charcoal, #1a1a1a);
}
.post-cta a {
    font-weight: 600;
    color: var(--navy, #0b1635);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.post-cta a:hover { color: var(--gold, #ff6600); }
.post-disclaimer {
    margin-top: 2rem;
    font-size: 0.8125rem;
    color: var(--muted, #6b7280);
    line-height: 1.55;
}

/* Long-form articles: tables, quotes, subheads, lists */
.post-prose h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy, #0b1635);
    margin: 1.35rem 0 0.5rem;
    line-height: 1.35;
}
.post-prose ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}
.post-prose ol li { margin-bottom: 0.4rem; }
.post-prose blockquote {
    margin: 1.25rem 0;
    padding: 1rem 1.15rem 1rem 1.25rem;
    border-left: 4px solid var(--gold, #ff6600);
    background: rgba(11, 22, 53, 0.04);
    font-style: italic;
    color: var(--navy, #0b1635);
}
.post-prose blockquote cite {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    color: var(--muted, #6b7280);
}
.post-prose .post-lead-em {
    font-size: 1.0625rem;
    color: var(--charcoal, #1a1a1a);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-style: italic;
    line-height: 1.75;
}
.post-prose .post-table-wrap {
    overflow-x: auto;
    margin: 1.25rem 0;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.post-prose .post-table-wrap table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.post-prose .post-table-wrap th,
.post-prose .post-table-wrap td {
    padding: 0.65rem 0.85rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.post-prose .post-table-wrap th {
    background: var(--navy, #0b1635);
    color: #fff;
    font-weight: 600;
}
.post-prose .post-table-wrap tr:nth-child(even) td {
    background: rgba(11, 22, 53, 0.03);
}
.post-prose .post-inline-cta {
    margin: 1.75rem 0;
    padding: 1.35rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy, #0b1635) 0%, #11254f 100%);
    color: #fff;
    text-align: center;
}
.post-prose .post-inline-cta p {
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9375rem;
}
.post-prose .post-inline-cta .post-inline-cta-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #fff;
}
.post-prose .post-inline-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy, #0b1635);
    background: var(--gold, #ff6600);
    border-radius: 10px;
    text-decoration: none;
}
.post-prose .post-inline-cta a:hover {
    filter: brightness(1.06);
    color: #fff;
}
.post-prose .post-related {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9375rem;
}
.post-prose .post-related h3 {
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold, #ff6600);
    margin-top: 0;
}
.post-prose .post-related ul { margin-bottom: 0.75rem; }
.post-prose .post-related a {
    font-weight: 600;
    color: var(--navy, #0b1635);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.post-prose .post-related a:hover { color: var(--gold, #ff6600); }
.post-prose .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}
.post-prose .post-tags li {
    margin: 0;
    padding: 0.3rem 0.65rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted, #6b7280);
    background: rgba(11, 22, 53, 0.06);
    border-radius: 6px;
}
.post-prose .post-external-note {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--muted, #6b7280);
}
.post-prose .key-term { font-weight: 600; color: var(--navy, #0b1635); }
.post-prose .post-byline {
    margin-top: 1.75rem;
    padding: 1rem 1.15rem;
    background: rgba(11, 22, 53, 0.04);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--charcoal, #1a1a1a);
}
.post-prose .post-byline a {
    font-weight: 600;
    color: var(--navy, #0b1635);
}

/* Stat strip (investor / MIC articles) */
.post-prose .post-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
.post-prose .post-stat-item {
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(11, 22, 53, 0.04);
    border-radius: 10px;
    border-top: 3px solid var(--gold, #ff6600);
}
.post-prose .post-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy, #0b1635);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}
.post-prose .post-stat-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted, #6b7280);
    line-height: 1.35;
}
@media (max-width: 600px) {
    .post-prose .post-stat-row {
        grid-template-columns: 1fr;
    }
}

.post-prose .post-author-bio {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-top: 2rem;
    padding: 1.35rem 1.25rem;
    background: rgba(11, 22, 53, 0.04);
    border-radius: 12px;
    border-top: 3px solid var(--gold, #ff6600);
}
.post-prose .post-author-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--navy, #0b1635);
    color: var(--gold, #ff6600);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.post-prose .post-author-bio strong {
    display: block;
    font-size: 1rem;
    color: var(--navy, #0b1635);
    margin-bottom: 0.25rem;
}
.post-prose .post-author-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted, #6b7280);
    font-weight: 600;
}
@media (max-width: 520px) {
    .post-prose .post-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
