/* =============================================
   SPARSH — Content & Legal Pages Shared Styles
   Used by: FAQs, Blog index/posts, Privacy,
   Disclaimer, Terms of Service, Data Deletion
   ============================================= */

/* Body wrapper for these pages — relies on existing
   ambient sky + moon + stars from style.css       */
body.content-page,
body.legal-page,
body.blog-page,
body.faq-page {
    min-height: 100vh;
    background: var(--sky-deep);
}

/* ---------- HERO BANNER (compact) ---------- */
.page-hero {
    position: relative;
    padding: 220px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero .page-hero-glow {
    /* Heading glow removed sitewide — the dreamy gradient + drop-shadow
       on h1 already provides enough atmosphere without a warm halo. */
    display: none;
}

.page-hero .page-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0 auto 18px;
    max-width: 900px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.page-hero .page-hero-title {
    /* NO `will-change` here. A persistent `will-change: transform` forces
       this element (which is gradient-filled via background-clip:text +
       transparent fill) onto its own GPU layer forever. On Windows Chrome,
       a composited background-clip:text element gets its clipped gradient
       rasterized at a stale offset — the "ghost / overlapping heading" bug.
       Mac's Metal backend composites it correctly, which is why it only
       reproduced on Windows. The entrance is a one-time GSAP tween, so no
       persistent hint is needed; Chrome composites on-demand during the
       tween and drops back to the main thread (clean) once it settles. */
    will-change: auto;
}

.page-hero h1 .accent {
    color: var(--accent-gold);
    font-style: italic;
    display: inline-block;
    /* No will-change — same Windows composited-clip ghost reason as above.
       The accent also must NOT be transform-animated independently of its
       parent <h1> (see about.html); the parent's text-clip includes the
       accent glyphs, so any relative offset paints a silver ghost of the
       accent over line 1. */
    will-change: auto;
}

.page-hero p.page-lede {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    will-change: transform, opacity;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 0 24px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .sep {
    margin: 0 10px;
    opacity: 0.5;
}

/* ---------- SHARED BUTTONS ---------- */
.cta-gold {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-gold);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 25px rgba(97, 181, 100, 0.25);
    position: relative;
    z-index: 5;
    border: none;
    cursor: pointer;
}

.cta-gold:hover {
    transform: translateY(-3px);
    background: #72c575;
    box-shadow: 0 15px 35px rgba(97, 181, 100, 0.4);
    color: #fff;
}

.cta-outline {
    display: inline-block;
    padding: 15px 38px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 5;
    cursor: pointer;
}

.cta-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
}

/* ---------- ARTICLE / LEGAL BODY ---------- */
.page-body {
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 24px 120px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.page-body h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    color: var(--text-primary);
    margin: 60px 0 18px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.page-body h2:first-child {
    margin-top: 0;
}

.page-body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    color: var(--text-primary);
    margin: 36px 0 12px;
}

.page-body h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin: 24px 0 8px;
    letter-spacing: 0.3px;
}

.page-body p {
    margin: 0 0 18px;
    color: var(--text-secondary);
}

.page-body ul,
.page-body ol {
    margin: 0 0 22px 22px;
    color: var(--text-secondary);
}

.page-body li {
    margin-bottom: 10px;
}

.page-body a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(97, 181, 100, 0.3);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.page-body a:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.page-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.page-body hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 50px 0;
}

.page-body .meta-line {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.page-body .callout {
    background: rgba(97, 181, 100, 0.06);
    border-left: 3px solid var(--accent-gold);
    padding: 20px 24px;
    margin: 30px 0;
    border-radius: 4px;
    color: var(--text-secondary);
}

.page-body .callout p:last-child {
    margin-bottom: 0;
}

/* ---------- FAQ-SPECIFIC (premium) ---------- */
.faq-categories {
    max-width: 1100px;
    margin: 44px auto 0;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.faq-cat-pill {
    display: inline-block;
    padding: 9px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.faq-cat-pill:hover,
.faq-cat-pill.active {
    background: rgba(97, 181, 100, 0.12);
    border-color: rgba(97, 181, 100, 0.5);
    color: var(--accent-gold);
    transform: translateY(-1px);
}

.faq-section {
    max-width: 880px;
    margin: 0 auto;
    padding: 30px 24px 0;
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.3vw, 1.85rem);
    color: var(--text-primary);
    margin: 70px 0 8px;
    letter-spacing: -0.5px;
    padding-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-section h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(97, 181, 100, 0.4) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
    border-radius: 10px;
    margin: 0 -16px;
    padding: 0 16px;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.015);
}

.faq-item[open] {
    background: linear-gradient(180deg, rgba(97, 181, 100, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-bottom-color: rgba(97, 181, 100, 0.18);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.03rem;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    transition: color 0.3s ease;
    letter-spacing: -0.1px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(97, 181, 100, 0.4);
    background:
        linear-gradient(currentColor, currentColor) center / 10px 1px no-repeat,
        linear-gradient(currentColor, currentColor) center / 1px 10px no-repeat;
    color: var(--accent-gold);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), background-color 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(135deg);
    background:
        linear-gradient(currentColor, currentColor) center / 10px 1px no-repeat;
    background-color: rgba(97, 181, 100, 0.1);
}

.faq-item summary:hover { color: var(--accent-gold); }

.faq-answer {
    padding: 0 4px 26px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.78;
    font-size: 0.97rem;
    animation: faqAnswerIn 0.35s ease;
}

@keyframes faqAnswerIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(97, 181, 100, 0.3);
    transition: color 0.3s ease, border-color 0.3s ease;
}
.faq-answer a:hover { color: var(--accent-gold); border-bottom-color: var(--accent-gold); }

/* ---------- BLOG INDEX GRID ---------- */
.blog-grid {
    max-width: 1200px;
    margin: 50px auto 110px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* Featured first card spans the full grid width */
.blog-grid .blog-card.featured {
    grid-column: 1 / -1;
    min-height: 220px;
}

.blog-grid .blog-card.featured .blog-card-body {
    padding: 48px 56px;
    max-width: 760px;
}

.blog-grid .blog-card.featured h3 {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-grid .blog-card.featured p {
    font-size: 1.02rem;
}

.blog-grid .blog-card.featured::before {
    content: 'Featured Read';
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 700;
    padding: 6px 14px;
    background: rgba(97, 181, 100, 0.08);
    border: 1px solid rgba(97, 181, 100, 0.25);
    border-radius: 100px;
    z-index: 2;
}

.blog-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                background 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Subtle gold glow that fades in on hover */
.blog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(97, 181, 100, 0.10) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(97, 181, 100, 0.32);
    background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(97, 181, 100, 0.12);
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-card-body {
    padding: 32px 30px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.blog-card-cat {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card-cat::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(97, 181, 100, 0.3), transparent);
    max-width: 80px;
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 14px;
}

.blog-dropdown-btn {
    display: none; /* Hidden by default on desktop */
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.blog-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.28;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.4px;
}

.blog-card p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 22px;
    flex: 1;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card-meta .read-arrow {
    margin-left: auto;
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.blog-card:hover .read-arrow {
    gap: 10px;
    color: var(--accent-gold);
}

/* ---------- BLOG POST (single) ---------- */
.blog-post {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 24px 120px;
    position: relative;
    z-index: 2;
}

.blog-post .post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.blog-post .post-meta .cat {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.blog-post h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    color: var(--text-primary);
    margin: 0 0 24px;
    letter-spacing: -1px;
}

.blog-post .post-lede {
    font-size: 1.18rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: var(--font-body);
    font-weight: 400;
}

.blog-post .post-content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.blog-post .post-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.85rem;
    margin: 50px 0 16px;
    letter-spacing: -0.5px;
}

.blog-post .post-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 36px 0 12px;
}

.blog-post .post-content p {
    margin: 0 0 22px;
}

.blog-post .post-content ul,
.blog-post .post-content ol {
    margin: 0 0 26px 24px;
}

.blog-post .post-content li {
    margin-bottom: 10px;
}

.blog-post .post-content a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(97, 181, 100, 0.35);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-post .post-content a:hover {
    color: var(--accent-gold);
}

.blog-post .post-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blog-post .post-content blockquote {
    border-left: 3px solid var(--accent-gold);
    padding: 6px 0 6px 24px;
    margin: 30px 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.55;
}

/* Bold-italic emphasis (used inside body copy) */
.page-body em,
.blog-post .post-content em,
.faq-answer em,
.callout em {
    font-style: italic;
    font-weight: 700;
    color: var(--text-primary);
}

.post-cta-card {
    margin-top: 60px;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(97, 181, 100, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(97, 181, 100, 0.2);
    border-radius: 16px;
    text-align: center;
}

.post-cta-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    font-size: 1.4rem;
}

.post-cta-card p {
    color: var(--text-secondary);
    margin: 0 0 18px;
}

.post-cta-card a.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--accent-gold);
    border: 1px solid transparent;
    border-bottom: 1px solid transparent;
    color: #0a0e1a;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    vertical-align: top;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.blog-post .post-content .post-cta-card a.cta-btn:hover {
    color: #0a0e1a;
    transform: translateY(-2px);
    background: #6dc370;
    border-color: rgba(97, 181, 100, 0.55);
    box-shadow: 0 10px 30px rgba(97, 181, 100, 0.3);
}

/* ---------- TOC for legal pages ---------- */
.legal-toc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 0 0 50px;
}

.legal-toc h4 {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin: 0 0 14px;
}

.legal-toc ol {
    margin: 0;
    padding-left: 22px;
    font-size: 0.95rem;
    line-height: 1.9;
}

.legal-toc a {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: none;
    transition: color 0.3s ease;
}

.legal-toc a:hover {
    color: var(--accent-gold);
}

/* ---------- FOOTER (extended with legal column) ---------- */
.footer .footer-links {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
}

@media (max-width: 768px) {
    .page-hero {
        padding: 160px 20px 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .legal-toc {
        padding: 20px 22px;
    }

    .footer .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .blog-post h1 {
        font-size: 2rem;
    }

    .blog-post .post-content {
        font-size: 1rem;
    }
}

/* =============================================================
   INTER TYPE SYSTEM — project-wide enforcement
   - Body: Inter Regular (400)
   - Headings: Inter Bold (700)
   - Emphasis (em / blockquote / .accent): Inter Bold Italic (700)
   Loaded last so it overrides legacy weights and serif families.
   ============================================================= */

body, p, li, span, a, button, input, textarea, select, label,
figcaption, dt, dd, code, blockquote {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.brand-name, .hero-main-text, .hero-title,
.products-title, .product-name, .section-title,
.pdp-title, .cta-heading, .crisis-line,
.section-heading, .philosophy-text,
.tagline-primary, .tagline-secondary,
.feature-tile h4, .layer-info-item h4,
.compare-card h3, .layer-info h4,
.diff-card h3, .person-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* Heading-like blocks that previously used italic decorative weight */
.tagline-primary {
    font-style: normal;
    font-weight: 700;
}

/* Hero "Rest Right With Sparsh" — keep dramatic but cap at Bold */
.hero-main-text {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Subtitles / supporting copy — Regular, never Light */
.products-subtitle, .hero-subtitle,
.pdp-tagline, .section-desc,
.layer-info-item p, .product-desc,
.review-card p, .faq-answer,
.crisis-line + p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Bold-italic emphasis */
em, i, .em-bold,
.page-body em, .blog-post .post-content em,
.callout em, .faq-answer em,
.page-hero h1 .accent {
    font-style: italic;
    font-weight: 700;
}

/* Restore the gold colour on the page-hero accent (it was already
   set, but the override above re-asserts the italic+weight). */
.page-hero h1 .accent {
    color: var(--accent-gold);
}

/* ---------- BLOG INLINE IMAGES ---------- */
.blog-post .post-content figure {
    margin: 40px auto;
    max-width: 100%;
    text-align: center;
}

.blog-post .post-content figure img,
.blog-post .post-content > img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: block;
    margin: 0 auto 12px;
}

body.light-mode .blog-post .post-content figure img,
body.light-mode .blog-post .post-content > img {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.blog-post .post-content figure img:hover {
    transform: translateY(-2px);
    border-color: rgba(97, 181, 100, 0.4);
}

.blog-post .post-content figcaption {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
    letter-spacing: 0.2px;
}



