        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: Georgia, 'Times New Roman', serif; line-height: 1.8; color: #1a1a1a; background: #fafaf7; }
        .container { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem; }
        header { border-bottom: 3px solid #1a5632; padding-bottom: 1rem; margin-bottom: 2rem; }
        .site-name { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #1a5632; font-family: Arial, sans-serif; }
        .section-label { font-size: 0.8rem; color: #666; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; font-family: Arial, sans-serif; }
        h1 { font-size: 2rem; line-height: 1.3; margin-bottom: 1rem; color: #111; }
        .lead { font-size: 1.15rem; color: #333; border-left: 4px solid #1a5632; padding-left: 1rem; margin-bottom: 2rem; }
        .article-meta { font-size: 0.85rem; color: #666; margin-bottom: 2rem; font-family: Arial, sans-serif; }
        .article-meta a { color: #1a5632; text-decoration: none; }
        h2 { font-size: 1.3rem; margin: 2rem 0 1rem; color: #1a5632; }
        p { margin-bottom: 1.2rem; }
        .disclaimer { background: #f0f0e8; padding: 1rem 1.5rem; border-radius: 4px; font-size: 0.9rem; color: #555; margin: 2rem 0; font-style: italic; }
        .sources { border-top: 1px solid #ddd; padding-top: 1.5rem; margin-top: 2rem; }
        .sources h3 { font-size: 1rem; color: #333; margin-bottom: 0.5rem; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 1px; }
        .sources p { font-size: 0.85rem; color: #555; }
        .sources a { color: #1a5632; }
        footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid #ddd; font-size: 0.8rem; color: #999; font-family: Arial, sans-serif; }
    
    .site-nav { background: #1a5632; padding: 0; position: sticky; top: 0; z-index: 100; }
    .nav-container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; min-height: 56px; }
    .nav-brand { color: #fff; text-decoration: none; font-family: Georgia, serif; font-size: 1.15rem; font-weight: bold; letter-spacing: 0.5px; }
    .nav-links { display: flex; gap: 1.5rem; align-items: center; }
    .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-family: Arial, sans-serif; font-size: 0.85rem; transition: color 0.2s; }
    .nav-links a:hover { color: #fff; }
    @media (max-width: 700px) {
        .nav-container { flex-direction: column; padding: 0.8rem 1rem; gap: 0.5rem; }
        .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    }

    .site-footer { background: #1a2e1a; color: #ccc; padding: 3rem 0 2rem; margin-top: 3rem; }
    .footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
    .footer-brand { font-family: Georgia, serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
    .footer-desc { font-size: 0.85rem; line-height: 1.6; color: #aaa; }
    .footer-heading { font-family: Arial, sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 0.8rem; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.4rem; }
    .footer-links a { color: #aaa; text-decoration: none; font-size: 0.85rem; font-family: Arial, sans-serif; transition: color 0.2s; }
    .footer-links a:hover { color: #8bc34a; }
    .footer-bottom { border-top: 1px solid #2a3e2a; padding-top: 1.5rem; text-align: center; }
    .footer-bottom p { font-size: 0.78rem; color: #777; font-family: Arial, sans-serif; margin: 0; }
    @media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

    /* Hero image */
    .article-hero { width: 100%; margin: 0; overflow: hidden; }
    .article-hero img, .article-hero svg { width: 100%; height: auto; display: block; }

    /* Category badge */
    .cat-badge { display: inline-block; padding: 4px 14px; border-radius: 20px;
        font-family: Arial, sans-serif; font-size: 0.75rem; font-weight: bold;
        text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 1rem; }

    /* Author block */
    .author-block { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
        padding: 1rem 0; border-bottom: 1px solid #eee; }
    .author-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex;
        align-items: center; justify-content: center; font-family: Arial, sans-serif;
        font-weight: bold; font-size: 1rem; color: #fff; flex-shrink: 0; }
    .author-info { font-family: Arial, sans-serif; font-size: 0.85rem; color: #666; }
    .author-info .name { color: #111; font-weight: 600; }
    .author-info .name a { color: #111; text-decoration: none; }
    .author-info .name a:hover { color: #1a5632; }

    /* Pull quote */
    .pull-quote { margin: 2rem -1rem; padding: 1.5rem 2rem; border-left: 4px solid;
        background: #fafaf7; font-size: 1.2rem; line-height: 1.5; font-style: italic;
        color: #333; }

    /* Key points box */
    .key-points { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px;
        padding: 1.5rem; margin: 2rem 0; }
    .key-points h4 { font-family: Arial, sans-serif; font-size: 0.85rem; text-transform: uppercase;
        letter-spacing: 1px; margin-bottom: 0.8rem; }
    .key-points ul { padding-left: 1.2rem; }
    .key-points li { margin-bottom: 0.4rem; font-size: 0.95rem; }

    /* Related articles */
    .related-articles { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid #eee; }
    .related-articles h3 { font-family: Arial, sans-serif; font-size: 1rem; text-transform: uppercase;
        letter-spacing: 1px; color: #333; margin-bottom: 1.5rem; }
    .related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
    .related-card { border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s; }
    .related-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
    .related-card img, .related-card svg { width: 100%; height: 140px; object-fit: cover; display: block; }
    .related-card .rc-body { padding: 0.8rem; }
    .related-card .rc-cat { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
        font-family: Arial, sans-serif; margin-bottom: 0.3rem; }
    .related-card h4 { font-size: 0.9rem; line-height: 1.3; margin: 0; }
    .related-card h4 a { color: #111; text-decoration: none; }
    .related-card h4 a:hover { color: #1a5632; }

    /* Breadcrumb */
    .breadcrumb { font-family: Arial, sans-serif; font-size: 0.8rem; color: #888; padding: 1rem 0; }
    .breadcrumb a { color: #666; text-decoration: none; }
    .breadcrumb a:hover { color: #1a5632; }
    .breadcrumb .sep { margin: 0 0.4rem; }

    
    .img-attribution { font-size: 0.75rem; color: #888; font-family: Arial, sans-serif;
        padding: 0.3rem 1.5rem; background: rgba(0,0,0,0.03); }
    .img-attribution a { color: #666; }
    .article-figure { margin: 2rem 0; text-align: center; }
    .article-figure img { width: 100%; max-width: 800px; height: auto; border-radius: 8px; }
    .article-figure figcaption { font-size: 0.75rem; color: #888; font-family: Arial, sans-serif;
        padding: 0.4rem 0; text-align: center; }
    .article-figure figcaption a { color: #666; }
