/* ═══════════════════════════════════════════
   BioFuture Additives — Main Stylesheet
   ═══════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: #0a0f0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Font families ── */
.font-display { font-family: 'Instrument Serif', Georgia, serif; }
.font-body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }

/* ── Headings — keep Instrument Serif light/regular ── */
h1, h2, h3, h4, h5, h6,
.section-heading,
.stat-number {
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased;
}

/* ── Grain overlay ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.section { padding: 8rem 0; position: relative; }

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes pulse-soft {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.anim-fade-up { animation: fadeUp 0.9s ease-out both; }
.anim-fade-in { animation: fadeIn 1s ease-out both; }
.anim-scale-in { animation: scaleIn 0.8s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1.0s; }

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ── WP Admin bar offset ── */
body.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* ── Header / Nav ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
.site-header.scrolled,
body:not(.home) .site-header {
    background: rgba(10, 15, 10, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom-color: rgba(255,255,255,0.05);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}
.header-logo img { height: 2.5rem; width: auto; filter: brightness(1.1); }
.header-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .header-nav { display: flex; } }
.header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.header-nav a:hover { color: #6bbd6b; }

/* ── Nav dropdowns ── */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.nav-dropdown-trigger svg {
    transition: transform 0.3s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 10rem;
    padding: 0.5rem;
    background: rgba(15, 26, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    border-radius: 0.5rem;
    transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
    color: #6bbd6b;
    background: rgba(74, 154, 74, 0.08);
}

/* ── Mobile menu ── */
#mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    color: rgba(255,255,255,0.6);
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu {
    display: none;
    background: rgba(10, 15, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
}
.mobile-menu.open {
    display: block;
}
.mobile-menu a {
    display: block;
    padding: 0.625rem 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: color 0.2s;
}
.mobile-menu a:hover {
    color: #6bbd6b;
}
.mobile-menu .cta-btn {
    border-bottom: none;
    display: inline-flex;
}
.hidden { display: none !important; }

/* ── CTA Button ── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: #2d5a2d;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.cta-btn:hover { background: #3d7a3d; }
.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}
.cta-btn:hover::after { left: 100%; }
.cta-btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}
.cta-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
}
.cta-btn-outline:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: transparent;
}

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(74,154,74,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(107,189,107,0.08) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(10,15,10,0.6), rgba(10,15,10,0.4), #0a0f0a);
}
.hero-content { position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; padding: 8rem 1.5rem 5rem; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(74,154,74,0.2);
    background: rgba(15,26,15,0.4);
    margin-bottom: 2rem;
}
.hero-eyebrow .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #4a9a4a; animation: pulse-soft 2s ease-in-out infinite; }
.hero-eyebrow span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6bbd6b;
}
.hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #fff;
}
.hero h1 em { color: #6bbd6b; font-style: italic; }
.hero-sub {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.5);
    max-width: 40rem;
    line-height: 1.7;
    font-weight: 300;
}
.hero-ctas { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.hero-trust p {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 1.25rem;
}
.hero-trust img { height: 2.5rem; width: auto; opacity: 0.4; transition: opacity 0.5s; }
.hero-trust img:hover { opacity: 0.6; }

/* ── Stat numbers ── */
.stat-number {
    font-family: 'Instrument Serif', Georgia, serif;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, #6bbd6b, #a3d9a3, #6bbd6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}

/* ── Eyebrow label ── */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4a9a4a;
    margin-bottom: 1.5rem;
}

/* ── Section heading ── */
.section-heading {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1.05;
    color: #fff;
}
.section-heading em { color: #6bbd6b; font-style: italic; }

/* ── Cards ── */
.card {
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(15,26,15,0.2);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74,154,74,0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.card:hover::before { opacity: 1; }
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(74,154,74,0.3);
}
.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    background: rgba(30,58,30,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon img { width: 2rem; height: 2rem; }

/* ── Environment cards ── */
.env-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(15,26,15,0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.env-card:hover { transform: translateY(-8px) scale(1.02); }
.env-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: rgba(15,26,15,0.3);
}
.env-card-icon img { width: 6rem; height: 6rem; object-fit: contain; }
.env-card-body { padding: 2rem; }
.env-card-body h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
}
.env-card-body p { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* ── Polymer tags ── */
.polymer-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #6bbd6b;
    border: 1px solid rgba(61,122,61,0.2);
    border-radius: 9999px;
    background: rgba(15,26,15,0.3);
    transition: all 0.3s ease;
}
.polymer-tag:hover {
    background: rgba(74,154,74,0.2);
    border-color: rgba(74,154,74,0.5);
    transform: translateY(-2px);
}

/* ── Horizontal accent rule ── */
.hr-accent {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74,154,74,0.4), transparent);
}

/* ── Blog cards ── */
.blog-card {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(15,26,15,0.15);
    transition: all 0.5s ease;
}
.blog-card:hover { border-color: rgba(74,154,74,0.15); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag { font-size: 0.75rem; color: #4a9a4a; font-weight: 500; margin-bottom: 0.75rem; }
.blog-card-body h3 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}
.blog-card:hover .blog-card-body h3 { color: #a3d9a3; }
.blog-card-body p { font-size: 0.875rem; color: rgba(255,255,255,0.3); line-height: 1.7; }

/* ── Testimonial cards ── */
.testimonial-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(15,26,15,0.15);
}
.testimonial-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(61,122,61,0.2);
}
.testimonial-name { font-weight: 600; color: #fff; font-size: 0.875rem; }
.testimonial-role { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.testimonial-text { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; font-style: italic; }

/* ── Video embed ── */
.video-embed {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(15,26,15,0.3);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
}
.video-embed .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Pillar cards (What We Do) ── */
.pillar-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(15,26,15,0.15);
    transition: all 0.5s ease;
}
.pillar-card:hover { border-color: rgba(61,122,61,0.2); }
.pillar-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    background: rgba(30,58,30,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a9a4a;
    transition: background 0.3s;
}
.pillar-card:hover .pillar-icon { background: rgba(45,90,45,0.3); }
.pillar-card h3 { font-weight: 600; color: #fff; font-size: 1.125rem; margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.7; }

/* ── Science checks ── */
.science-check {
    display: flex;
    gap: 1rem;
}
.science-check-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(30,58,30,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a9a4a;
}
.science-check h4 { color: #fff; font-weight: 500; margin-bottom: 0.25rem; }
.science-check p { font-size: 0.875rem; color: rgba(255,255,255,0.35); }

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.faq-question svg { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: #4a9a4a; transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner { padding-bottom: 1.5rem; font-size: 0.9375rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── Footer ── */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #0a0f0a;
    padding: 4rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 2.5rem; width: auto; filter: brightness(1.1); margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 28rem; }
.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}
.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: #6bbd6b; }
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── Utility grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── WP block overrides ── */
.wp-block-post-content { max-width: 768px; margin: 0 auto; }
.wp-block-post-content p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.wp-block-post-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.25rem;
    margin: 3rem 0 1rem;
}
.wp-block-post-content h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.5rem;
    margin: 2rem 0 0.75rem;
}
.wp-block-post-content img { border-radius: 1rem; margin: 2rem 0; }
.wp-block-post-content ul, .wp-block-post-content ol {
    padding-left: 1.5rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}
.wp-block-post-content li { margin-bottom: 0.5rem; }

/* ── Mobile nav ── */
@media (max-width: 767px) {
    .header-nav { display: none !important; }
    #mobile-menu-btn { display: block !important; }
    .nav-dropdown-menu { display: none !important; }
    .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .footer-grid { grid-template-columns: 1fr; }
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns:5rem 1fr"] { grid-template-columns: 3.5rem 1fr !important; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0f0a; }
::-webkit-scrollbar-thumb { background: #2d5a2d; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3d7a3d; }

/* ── Article body (single.php) ── */
.article-body { font-size: 1.0625rem; line-height: 1.85; color: rgba(255,255,255,0.55); }
.article-body h1, .article-body h2, .article-body h3, .article-body h4 {
    font-family: 'Instrument Serif', Georgia, serif;
    color: rgba(255,255,255,0.9);
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
}
.article-body h1 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.article-body h2 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
.article-body h3 { font-size: 1.25rem; }
.article-body p { margin-bottom: 1.5rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: rgba(255,255,255,0.8); font-weight: 600; }
.article-body a { color: #6bbd6b; text-decoration: underline; text-decoration-color: rgba(107,189,107,0.3); transition: color 0.2s; }
.article-body a:hover { color: #a3d9a3; }
.article-body blockquote {
    border-left: 3px solid #4a9a4a;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(15,26,15,0.3);
    border-radius: 0 0.5rem 0.5rem 0;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}
.article-body hr { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 2.5rem 0; }
