/* ==========================================================================
   Article stylesheet — shared by every post in /blog
   Extracted from the original inline styles so all posts stay identical.
   New posts link this file; edit here to restyle the whole blog at once.
   ========================================================================== */
*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #D4A843;
            --gold-light: #E8C872;
            --dark: #0F0F0F;
            --dark-surface: #1A1A1A;
            --dark-card: #222222;
            --text-primary: #F5F5F5;
            --text-secondary: #A0A0A0;
            --text-muted: #6B6B6B;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Verdana', Geneva, sans-serif;
            background: var(--dark);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ── Navigation ── */
        nav {
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(212, 168, 67, 0.1);
            position: sticky;
            top: 0;
            background: rgba(15, 15, 15, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 100;
        }

        .nav-logo {
            font-family: 'Verdana', Geneva, sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--gold); }

        .nav-cta {
            background: var(--gold) !important;
            color: var(--dark) !important;
            padding: 0.6rem 1.5rem;
            border-radius: 100px;
            font-weight: 600 !important;
            transition: transform 0.2s, box-shadow 0.2s !important;
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
            color: var(--dark) !important;
        }

        .nav-back {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.2s;
        }

        .nav-back:hover { color: var(--gold); }

        /* ── Article ── */
        .article-header {
            max-width: 760px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        .article-meta {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.25rem;
        }

        .article-header h1 {
            font-family: 'Verdana', Geneva, sans-serif;
            font-size: clamp(2rem, 5vw, 3.25rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.25rem;
        }

        .article-header .subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        .article-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            margin: 3rem auto;
            border-radius: 2px;
        }

        .article-body {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }

        .article-body p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.85;
            margin-bottom: 1.5rem;
        }

        .article-body h2 {
            font-family: 'Verdana', Geneva, sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: 3rem;
            margin-bottom: 1.25rem;
            line-height: 1.3;
        }

        .article-body h3 {
            font-family: 'Verdana', Geneva, sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .article-body strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .article-body em {
            color: var(--gold-light);
            font-style: italic;
        }

        .article-body .highlight {
            color: var(--text-primary);
            font-size: 1.3rem;
            font-family: 'Verdana', Geneva, sans-serif;
            line-height: 1.5;
            border-left: 3px solid var(--gold);
            padding-left: 1.5rem;
            margin: 2.5rem 0;
        }

        .article-body .steps {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .article-body .steps p {
            margin-bottom: 1.25rem;
        }

        .article-body .steps p:last-child {
            margin-bottom: 0;
        }

        /* ── CTA Banner ── */
        .article-cta {
            max-width: 700px;
            margin: 0 auto 4rem;
            padding: 0 2rem;
        }

        .article-cta-box {
            background: var(--dark-card);
            border: 1px solid rgba(212, 168, 67, 0.15);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
        }

        .article-cta-box h3 {
            font-family: 'Verdana', Geneva, sans-serif;
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .article-cta-box p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gold);
            color: var(--dark);
            padding: 1rem 2.25rem;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 168, 67, 0.25);
        }

        /* ── Footer ── */
        footer {
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        footer p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }


        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            margin: 5px 0;
        }

        @media (max-width: 680px) {
            nav { padding: 1rem 1.5rem; }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #0F0F0F;
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: flex-start;
                padding: 1.5rem;
                gap: 1.25rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .nav-links.open { display: flex; }

            .mobile-toggle { display: block; }

            .article-header { padding: 3rem 1.5rem 1.5rem; }
            .article-body { padding: 0 1.5rem 3rem; }
            .article-cta { padding: 0 1.5rem; }
            .article-body .steps { padding: 1.5rem; }
        }

/* ── Cover image (added when the blog moved to shared styles) ── */
.article-cover {
    max-width: 820px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.article-cover img,
.article-cover svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius, 12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.article-cover figcaption {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 680px) {
    .article-cover { padding: 0 1.5rem; margin-bottom: 2rem; }
}
