 
        .blog-hero {
            background: var(--primary-color);
            padding: 48px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .blog-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-color);
        }

        .blog-hero-inner {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .blog-hero-source {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blog-hero-source i {
            font-size: 10px;
        }

        .blog-hero h1 {
            font-size: clamp(26px, 3.5vw, 40px);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.25;
            margin-bottom: 20px;
        }

        .blog-hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
        }

        .blog-hero-breadcrumb a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-weight: 500;
        }

        .blog-hero-breadcrumb a:hover {
            color: #fff;
        }

        .blog-hero-breadcrumb i {
            font-size: 10px;
        }

        /* ── MAIN CONTENT AREA ── */
        .blog-content-wrap {
            max-width: 1300px;
            margin: 0 auto;
            padding: 48px 40px 80px;
        }

        /* Article meta */
        .blog-article-meta {
            margin-bottom: 10px;
        }

        .blog-article-meta-text {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .blog-article-meta-text i {
            font-size: 10px;
        }

        /* Article title */
        .blog-article-title {
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 700;
            color: var(--text-color);
            line-height: 1.25;
            margin-bottom: 8px;
        }

        /* Divider under title */
        .blog-title-divider {
            width: 100%;
            height: 1px;
            background: rgba(26, 139, 132, 0.15);
            margin: 20px 0 28px;
        }

        /* Body text */
        .blog-article-body {
            font-size: 15px;
            line-height: 1.85;
            color: var(--muted-text);
        }

        .blog-article-body p {
            margin-bottom: 18px;
        }

        /* Section headings */
        .blog-article-body h2 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-color);
            margin: 36px 0 10px;
            line-height: 1.3;
        }

        /* Sub headings */
        .blog-article-body h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-color);
            margin: 22px 0 6px;
            line-height: 1.4;
        }

        /* Bullet list */
        .blog-article-body ul {
            list-style: none;
            padding: 0;
            margin: 10px 0 18px;
        }

        .blog-article-body ul li {
            font-size: 14px;
            color: var(--muted-text);
            line-height: 1.7;
            padding: 4px 0 4px 20px;
            position: relative;
        }

        .blog-article-body ul li::before {
            content: '●';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-size: 8px;
            top: 8px;
        }

        /* CTA bottom block */
        .blog-bottom-cta {
            margin-top: 44px;
            padding: 32px 28px;
            background: var(--primary-color);
            border-radius: 12px;
        }

        .blog-bottom-cta h3 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .blog-bottom-cta p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .blog-bottom-cta-list {
            list-style: none;
            padding: 0;
            margin: 0 0 22px;
        }

        .blog-bottom-cta-list li {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            padding: 4px 0 4px 22px;
            position: relative;
            line-height: 1.6;
        }

        .blog-bottom-cta-list li::before {
            content: '›';
            position: absolute;
            left: 4px;
            font-size: 16px;
            color: var(--accent-color);
            font-weight: 700;
            line-height: 1.4;
        }

        .blog-bottom-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-color);
            color: #1f1f1f;
            font-size: 14px;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .blog-bottom-cta-btn:hover {
            opacity: 0.9;
        }

        /* ── Responsive ── */
        @media (max-width: 640px) {

            .blog-hero-inner,
            .blog-content-wrap {
                padding-left: 20px;
                padding-right: 20px;
            }
        }
  