/* ===== BLOG ARTICLE — Sirmium Capital "Quiet Luxury" Design ===== */

:root {
    --article-bg: #F8F9FB;
    /* Alabaster */
    --article-surface: #FFFFFF;
    /* White */
    --article-text: #1A1C1E;
    /* Deep Graphite */
    --article-text-muted: #64748b;
    --article-accent: #C4956A;
    /* Copper/Gold */
    --article-border: rgba(0, 0, 0, 0.08);
    --article-gold: #C4956A;
    --article-amber: #f59e0b;
    --article-red: #ef4444;
    --article-green: #22c55e;
}

/* Indicator Badge & Dot */
.indicator-badge {
    background: rgba(196, 149, 106, 0.15);
    color: var(--article-accent);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(196, 149, 106, 0.25);
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--article-accent);
    flex-shrink: 0;
    animation: indicator-pulse 2s ease-in-out infinite;
}

@keyframes indicator-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(196, 149, 106, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(196, 149, 106, 0);
    }
}

/* Back to Articles Link */
.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--article-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    padding: 8px 0;
    transition: color 0.25s ease, gap 0.25s ease;
}

.article-back:hover {
    color: var(--article-accent);
    gap: 12px;
}

.article-back svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.article-back:hover svg {
    transform: translateX(-3px);
}

.premium-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: inherit;
}

/* Base Layout */
body.article-page {
    background-color: var(--article-bg);
    color: var(--article-text);
    font-family: var(--font-primary);
    line-height: 1.6;
}

/* Article Hero */
.article-hero {
    background: var(--article-surface);
    padding: 10rem 0 4rem;
    border-bottom: 2px solid var(--article-bg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.article-hero.cinematic {
    padding: 12rem 0 6rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    /* Keep white text for cinematic backgrounds */
}

.article-hero.cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 15, 28, 0.3), rgba(10, 15, 28, 0.8));
    z-index: 1;
}

.article-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Specific Hero Backgrounds */
.article-hero-pension {
    background-image: url('../images/generational-pension-loud.png');
}

.article-hero-nurse {
    background-image: url('../images/2D-Nurses-Retirement.jpg');
}

.article-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--article-accent);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.article-category::before,
.article-category::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--article-accent);
    opacity: 0.4;
}

.article-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.article-subtitle {
    color: #e2e8f0;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #e2e8f0;
    font-size: 0.85rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.article-meta-item strong {
    color: inherit;
    font-weight: 700;
}

/* Article Body */
.article-body {
    padding: 4rem 0 6rem;
}

.article-content {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.85;
    color: #334155;
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--article-text);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--article-accent);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: var(--article-text);
    font-weight: 700;
}

.article-content a {
    color: var(--article-accent);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s;
}

.article-content a:hover {
    opacity: 0.8;
}

/* Responsive Table Decoration */
.article-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 3rem 0;
    border: 1px solid var(--article-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--article-surface);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.article-content th {
    background: #f1f5f9;
    padding: 1.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--article-text-muted);
    border-bottom: 1px solid var(--article-border);
}

.article-content td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--article-border);
    font-size: 0.95rem;
}

.article-content tr:last-child td {
    border-bottom: none;
}

/* Premium Callouts */
.article-callout {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid var(--article-border);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.article-warning-title {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    color: var(--article-text);
}

.article-callout-gold {
    border-left: 4px solid var(--article-gold);
    background: rgba(196, 149, 106, 0.05);
}

.article-callout-amber {
    border-left: 4px solid var(--article-amber);
    background: rgba(245, 158, 11, 0.05);
}

.article-title-amber {
    color: var(--article-amber);
}

/* Data & Comparison Components */
.article-data-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-data-card {
    flex: 1;
    min-width: 250px;
    background: var(--article-surface);
    border: 1px solid var(--article-border);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.article-data-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--article-accent);
    margin-bottom: 1rem;
}

.article-data-value {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.article-data-desc {
    font-size: 0.9rem;
    color: var(--article-text-muted);
    margin-bottom: 0 !important;
}

/* List Number Circles */
.article-list-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(196, 149, 106, 0.1);
    color: var(--article-accent);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.75rem;
    margin-right: 0.75rem;
    vertical-align: middle;
}

/* Blog Newsletter Capture Box */
.blog-newsletter-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.blog-newsletter-container h3 {
    color: #fff !important;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    margin-top: 0 !important;
}

.blog-newsletter-container p {
    color: #8899aa !important;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.blog-newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 420px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.9rem;
}

.blog-newsletter-input:focus {
    outline: none;
    border-color: var(--article-accent);
}

.blog-newsletter-submit {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0f172a !important;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.blog-newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.blog-newsletter-fineprint {
    color: #556677 !important;
    font-size: 0.75rem;
    margin-top: 0.75rem;
}

/* Callouts & Quotes */
.article-callout {
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid #d4af37;
    position: relative;
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-callout-title {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    margin-top: 0 !important;
}

.article-callout-gold {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid #d4af37;
}

.article-callout-green {
    background: rgba(34, 197, 94, 0.05);
    border-left: 4px solid #22c55e;
}

.article-callout-red {
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #ef4444;
}

.article-warning-title {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #d4af37;
}

.article-callout-blue {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
}

.article-callout-slate {
    background: rgba(71, 85, 105, 0.05);
    border-left: 4px solid #475569;
}

.article-title-blue {
    color: #3b82f6;
}

.article-title-slate {
    color: #475569;
}

.article-title-green {
    color: #22c55e;
}

.article-title-red {
    color: #ef4444;
}

/* Takeaway */
.article-takeaway {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    padding: 3rem 2rem;
    margin: 4rem 0;
    background: var(--article-surface);
    border-top: 1px solid var(--article-accent);
    border-bottom: 1px solid var(--article-accent);
    color: var(--article-text);
}

/* Buttons */
.btn-premium {
    display: inline-block;
    background: var(--article-accent);
    color: white !important;
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(196, 149, 106, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 149, 106, 0.4);
    background: #AF855E;
}

/* Email Capture */
.article-email-capture {
    background: #1A1C1E;
    color: white;
    padding: 4rem 2rem;
    border-radius: 24px;
    text-align: center;
    margin: 5rem 0;
}

.article-email-capture h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.article-email-capture p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

/* Hero Accent (italic emphasis in hero titles) */
.article-hero-accent {
    color: var(--article-accent);
    font-style: italic;
}

/* Inline Newsletter Capture (inside callout cards) */
.article-callout-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.article-callout-input {
    flex: 1;
    min-width: 200px;
    padding: 0.7rem 1rem;
    border: 1px solid var(--article-border);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--article-surface);
    color: var(--article-text);
    transition: border-color 0.2s ease;
}

.article-callout-input:focus {
    outline: none;
    border-color: var(--article-accent);
}

.article-callout-submit {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: var(--article-accent);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.article-callout-submit:hover {
    background: #AF855E;
    transform: translateY(-1px);
}

/* Article CTA Block */
.article-cta-block {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(196, 149, 106, 0.2);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.article-cta-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.article-cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.article-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--article-accent), #AF855E);
    color: white !important;
    text-decoration: none !important;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196, 149, 106, 0.25);
}

.article-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 149, 106, 0.35);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .article-hero {
        padding: 8rem 0 3rem;
    }

    .article-hero h1 {
        font-size: 2.25rem;
    }

    .article-content {
        font-size: 1.05rem;
        padding: 0 1.25rem;
    }

    .u-overflow-x {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding: 0 1.25rem;
    }

    .article-callout {
        padding: 1.5rem;
    }

    .article-back {
        font-size: 0.7rem;
        margin-bottom: 2rem;
    }

    .indicator-badge {
        font-size: 0.55rem;
        padding: 4px 10px;
        letter-spacing: 1.5px;
    }

    .article-callout-form {
        flex-direction: column;
    }

    .article-cta-block {
        padding: 2rem 1.5rem;
    }
}

/* Author Box */
.article-author {
    border-top: 1px solid var(--article-border);
    margin: 6rem auto 0;
    padding-top: 3rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
}

.article-author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--article-accent);
}

.article-author-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.article-author-text p {
    font-size: 0.95rem;
    color: var(--article-text-muted);
}

/* Related Content */
.article-related-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid var(--article-bg);
}

.article-related-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-related-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--article-border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.article-related-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--article-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.article-related-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 1.25rem 0;
    line-height: 1.3;
}

/* --- Shared Article Data Displays --- */
.stack-diagram {
    background: rgba(200, 164, 78, 0.06);
    border: 1px solid rgba(200, 164, 78, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.stack-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stack-row:last-child {
    border-bottom: none;
}

.stack-label {
    flex: 1;
    font-weight: 600;
    color: #e0e0e0;
}

.stack-tax {
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.stack-free {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.stack-low {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.stack-full {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.stack-amount {
    color: var(--article-accent);
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

.tax-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9rem;
}

.tax-compare-table th {
    background: rgba(200, 164, 78, 0.15);
    color: var(--article-accent);
    text-align: left;
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tax-compare-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
}

.tax-good {
    color: #22c55e;
    font-weight: 600;
}

.tax-bad {
    color: #ef4444;
    font-weight: 600;
}

/* Rule Cards */
.rule-card {
    background: rgba(196, 149, 106, 0.05);
    border: 1px solid rgba(196, 149, 106, 0.15);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    position: relative;
}

.rule-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--article-accent);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rule-card h3 {
    margin-top: 0.5rem;
    color: var(--article-text);
}

.rule-who {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.rule-who strong {
    color: var(--article-accent);
}

/* Timeline Components */
.timeline-bar {
    background: rgba(196, 149, 106, 0.06);
    border: 1px solid rgba(196, 149, 106, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.timeline-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.timeline-row:last-child {
    border-bottom: none;
}

.timeline-year {
    flex: 0 0 80px;
    font-weight: 800;
    color: var(--article-accent);
    font-size: 1.1rem;
}

.timeline-event {
    flex: 1;
    color: var(--article-text);
}

.timeline-tag {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.tag-window {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.tag-risk {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.tag-unknown {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Veteran / Military Specific Blog Styles */
.hero-bg-military {
    background: linear-gradient(135deg, #020617 0%, #0a1628 50%, #132240 100%);
}

.article-warning-alert {
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #ef4444;
}

.text-alert {
    color: #ef4444;
}

.related-reading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: rgba(196, 149, 106, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(196, 149, 106, 0.1);
}

.small-caps-accent {
    font-size: 0.8rem;
    color: var(--article-accent);
    text-transform: uppercase;
    font-weight: 600;
}

.hero-bg-pslf {
    background-image: linear-gradient(rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.7)), url('../assets/images/PSLF-Nurse-2D.jpg');
    background-size: cover;
    background-position: center;
}

.hero-bg-ems {
    background-image: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.8)), url('../assets/images/FDNY-EMS-2D.jpg');
    background-size: cover;
    background-position: center;
}

.hero-bg-hnw {
    background-image: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.8)), url('../assets/images/HNW-Strategy-2D.jpg');
    background-size: cover;
    background-position: center;
}

.hero-bg-general {
    background-image: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.8)), url('../assets/images/Blog-General-2D.jpg');
    background-size: cover;
    background-position: center;
}

.article-link-highlight {
    color: var(--article-accent);
    text-decoration: underline;
    font-weight: 600;
}

.article-link-highlight:hover {
    color: #fff;
}

/* Timeline & Lists */
.timeline-bar {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-list-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--article-accent);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    margin-right: 12px;
    position: relative;
    top: -2px;
}

.article-hero-gradient {
    background: linear-gradient(135deg, #020617 0%, #0a1628 50%, #162040 100%) !important;
}

.timeline-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    padding: 1.5rem;
    background: var(--article-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    gap: 2rem;
}

@media (max-width: 768px) {
    .timeline-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.timeline-year {
    font-weight: 800;
    color: var(--article-accent);
    font-size: 1.1rem;
}

.timeline-event {
    color: var(--article-text);
}

.timeline-tag {
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-window {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tag-risk {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}