
        /* === BLOG PAGE — scoped overrides === */
        .blog-page {
            --it-accent: #06A3DA;
            --it-accent-dark: #091e3e;
            --it-soft: #f6f9fc;
            --it-border: #e6ecf3;
            --it-muted: #6b7c93;
        }
 .blog-hero {
            --it-accent: #06A3DA;
            --it-accent-dark: #091e3e;
            --it-soft: #f6f9fc;
            --it-border: #e6ecf3;
            --it-muted: #6b7c93;
        }
        /* Page hero */
        .blog-hero {
            background: linear-gradient(135deg, var(--it-accent-dark) 0%, var(--it-accent) 100%);
            position: relative;
            overflow: hidden;
            padding: 90px 0 70px;
            margin-bottom: 45px;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: -120px; right: -120px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
            pointer-events: none;
        }

        .blog-hero::after {
            content: '';
            position: absolute;
            bottom: -140px; left: -100px;
            width: 380px; height: 380px;
            background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .blog-hero h1 {
            color: #ffffff;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .blog-hero .lead {
            color: rgba(255, 255, 255, 0.85);
            margin-top: 8px;
            font-size: 17px;
            position: relative;
            z-index: 1;
        }

        /* Breadcrumb */
        .blog-page .breadcrumb {
            background: transparent;
            padding: 0;
        }

        .blog-page .breadcrumb-item a {
            color: var(--it-accent);
            text-decoration: none;
            font-weight: 600;
        }

        .blog-page .breadcrumb-item a:hover { text-decoration: underline; }

        .blog-page .breadcrumb-item.active { color: var(--it-muted); }

        .blog-breadcrumb-wrap {
            background: var(--it-soft);
            border: 1px solid var(--it-border);
            border-radius: 12px;
            padding: 14px 18px;
            margin-bottom: 28px;
        }

        /* Single post */
        .post-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            margin-bottom: 18px;
        }

        .post-category-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(6, 163, 218, 0.1);
            color: var(--it-accent);
            border: 1px solid rgba(6, 163, 218, 0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .post-meta-item {
            color: var(--it-muted);
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .post-title {
            font-weight: 800;
            color: var(--it-accent-dark);
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .post-cover {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 32px;
            box-shadow: 0 12px 40px rgba(9, 30, 62, 0.15);
        }

        .post-content {
            font-size: 16px;
            line-height: 1.8;
            color: #2c3e50;
        }

        .post-content p { margin-bottom: 18px; }
        .post-content h2, .post-content h3 {
            color: var(--it-accent-dark);
            font-weight: 700;
            margin-top: 32px;
            margin-bottom: 14px;
        }
        .post-content a { color: var(--it-accent); }
        .post-content img { max-width: 100%; border-radius: 12px; margin: 18px 0; }

        /* Share bar */
        .share-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 20px 0;
            margin-top: 32px;
            border-top: 1px solid var(--it-border);
            border-bottom: 1px solid var(--it-border);
            flex-wrap: wrap;
        }

        .share-bar-label {
            font-weight: 700;
            color: var(--it-accent-dark);
            margin-right: 6px;
        }

        .share-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--it-soft);
            border: 1px solid var(--it-border);
            color: var(--it-muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .share-btn:hover {
            background: var(--it-accent);
            border-color: var(--it-accent);
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Back-to-blog */
        .back-to-blog {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--it-accent);
            font-weight: 600;
            text-decoration: none;
            margin-bottom: 20px;
            transition: gap 0.2s ease;
        }

        .back-to-blog:hover { gap: 12px; color: var(--it-accent-dark); }

        /* Sidebar polish */
        .blog-sidebar .section-title h3 {
            font-weight: 800;
            color: var(--it-accent-dark);
        }

        .blog-sidebar .category-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            color: var(--it-accent-dark);
            background: var(--it-soft);
            border: 1px solid var(--it-border);
            padding: 12px 16px;
            border-radius: 10px;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.2s ease;
        }

        .blog-sidebar .category-link:hover {
            background: var(--it-accent);
            border-color: var(--it-accent);
            color: #ffffff;
            transform: translateX(4px);
        }

        .blog-sidebar .category-link .count {
            background: rgba(6, 163, 218, 0.1);
            color: var(--it-accent);
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 700;
            transition: all 0.2s ease;
        }

        .blog-sidebar .category-link:hover .count {
            background: rgba(255, 255, 255, 0.25);
            color: #ffffff;
        }

        .tag-pill {
            display: inline-block;
            background: var(--it-soft);
            color: var(--it-accent-dark);
            border: 1px solid var(--it-border);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            margin: 0 6px 6px 0;
            transition: all 0.2s ease;
        }

        .tag-pill:hover {
            background: var(--it-accent);
            border-color: var(--it-accent);
            color: #ffffff;
        }

        /* Newsletter card */
        .newsletter-card {
            background: linear-gradient(135deg, var(--it-accent-dark) 0%, var(--it-accent) 100%);
            color: #ffffff;
            padding: 28px 22px;
            border-radius: 16px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter-card::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 180px; height: 180px;
            background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
        }

        .newsletter-card .icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 22px;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .newsletter-card h3 {
            color: #ffffff;
            font-weight: 800;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .newsletter-card p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .newsletter-card input {
            width: 100%;
            padding: 11px 14px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .newsletter-card input::placeholder { color: rgba(255, 255, 255, 0.7); }
        .newsletter-card input:focus { outline: none; background: rgba(255, 255, 255, 0.18); border-color: #ffffff; }

        .newsletter-card .btn-white {
            background: #ffffff;
            color: var(--it-accent-dark);
            font-weight: 700;
            border: none;
            padding: 11px 20px;
            border-radius: 10px;
            width: 100%;
            cursor: pointer;
            position: relative;
            z-index: 1;
            transition: transform 0.2s ease;
        }

        .newsletter-card .btn-white:hover { transform: translateY(-2px); }

        /* Search box */
        .blog-search .form-control {
            border-radius: 10px 0 0 10px;
            border: 1px solid var(--it-border);
            padding: 12px 16px;
        }
        .blog-search .form-control:focus {
            border-color: var(--it-accent);
            box-shadow: 0 0 0 0.2rem rgba(6, 163, 218, 0.15);
        }
        .blog-search .btn { border-radius: 0 10px 10px 0; }

        /* Meta Arte promo */
        .promo-card {
            background: var(--it-soft);
            border: 1px solid var(--it-border);
            border-radius: 16px;
            padding: 28px 22px;
            text-align: center;
        }

        .promo-card h3 {
            color: var(--it-accent-dark);
            font-weight: 800;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .post-cover { height: 240px; }
            .post-title { font-size: 28px; }
            .blog-hero { padding: 60px 0 50px; }
        }
