  /* Standard Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }

        .blog-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .blog-img {
            height: 240px;
            position: relative;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.05);
        }

        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--secondary);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .blog-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-date {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .icon {
            width: 1em;
            height: 1em;
            display: inline-block;
            vertical-align: middle;
            fill: currentColor;
        }

        .blog-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .blog-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.6;
            flex-grow: 1;
        }

        .read-more {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .read-more:hover {
            color: var(--secondary);
            gap: 10px;
        }

         /* -----------------------------------------------------------
           BLOG DETAIL LAYOUT
        ----------------------------------------------------------- */
        .trust-badges-header {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        .trust-badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .blog-header {
            background: linear-gradient(rgba(11, 37, 69, 0.9), rgba(11, 37, 69, 0.8)), url('https://images.unsplash.com/photo-1575052814088-329b35dbd7c5?q=80&w=2070&auto=format&fit=crop') center/cover;
            padding: 180px 0 80px;
            text-align: center;
            color: var(--white);
        }
        .blog-header h1 { font-size: 2.8rem; margin-bottom: 15px; max-width: 900px; margin-left: auto; margin-right: auto; }
        .blog-meta { font-size: 0.9rem; opacity: 0.9; }
        .blog-meta span { margin: 0 10px; }

        .blog-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            margin-top: 60px;
        }

        /* LEFT SIDE - CONTENT */
        .blog-main img.feature-img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }

        .blog-content p { margin: 15px 0; font-size: 1.1rem; line-height: 1.8; color: var(--text-light); }
        .blog-content h2 { font-size: 1.8rem; margin: 30px 0 15px; color: var(--primary); }
        .blog-content ul { list-style: disc; margin-left: 20px; margin-bottom: 20px; color: var(--text-light); }
        .blog-content ol { list-style: number; margin-left: 20px; margin-bottom: 20px; color: var(--text-light); }
        .blog-content li { margin-bottom: 10px; }
        .blog-content blockquote {
            border-left: 4px solid var(--secondary);
            padding: 20px;
            margin: 30px 0;
            background: var(--accent);
            font-style: italic;
            font-size: 1.2rem;
            color: var(--primary);
        }

        /* Next/Prev Navigation */
        .post-navigation {
            display: flex;
            justify-content: space-between;
            margin: 50px 0;
            padding: 30px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .nav-box { width: 48%; }
        .nav-box span { display: block; font-size: 0.8rem; text-transform: uppercase; color: var(--text-light); margin-bottom: 5px; }
        .nav-box a { font-weight: 700; color: var(--primary); font-family: var(--font-head); font-size: 1.1rem; }
        .nav-box a:hover { color: var(--secondary); }
        .nav-next { text-align: right; }

        /* Related Blogs */
        .related-blogs { margin-bottom: 60px; }
        .related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 25px; }
        .related-card { background: var(--white); border: 1px solid #eee; border-radius: var(--border-radius); overflow: hidden; transition: var(--transition); }
        .related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
        .related-img { height: 180px; width: 100%; object-fit: cover; }
        .related-info { padding: 20px; }
        .related-info h4 { font-size: 1.1rem; margin-bottom: 10px; }
        .related-info a { color: var(--secondary); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; }

        /* Comments Section */
        .comments-section { margin-bottom: 60px; }
        .comments-area h3 { margin-bottom: 25px; font-size: 1.5rem; }
        .comment-list { margin-bottom: 40px; }
        .comment-item { display: flex; gap: 20px; margin-bottom: 30px; }
        .comment-avatar { width: 60px; height: 60px; border-radius: 50%; background: #ddd; flex-shrink: 0; overflow: hidden; }
        .comment-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .comment-body { background: var(--accent); padding: 20px; border-radius: 8px; width: 100%; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .comment-author { font-weight: 700; color: var(--primary); }
        .comment-date { font-size: 0.85rem; color: var(--text-light); }
        .reply-btn { color: var(--secondary); font-size: 0.85rem; font-weight: 600; cursor: pointer; }

        /* Add Comment Form */
        .comment-form-box { background: var(--accent); padding: 40px; border-radius: var(--border-radius); }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
        .c-input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; outline: none; }
        .c-textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; height: 120px; resize: vertical; margin-bottom: 20px; outline: none; }

        /* RIGHT SIDEBAR */
        .sidebar { position: sticky; top: 100px; height: fit-content; }
        
        .widget { margin-bottom: 40px; background: var(--white); border: 1px solid #eee; padding: 30px; border-radius: var(--border-radius); }
        .widget-title { font-size: 1.2rem; border-bottom: 2px solid var(--secondary); padding-bottom: 10px; margin-bottom: 20px; display: inline-block; }

        /* Latest Blogs Widget */
        .latest-post-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
        .latest-post-item:last-child { margin-bottom: 0; }
        .lp-img { width: 70px; height: 70px; border-radius: 4px; object-fit: cover; }
        .lp-info h5 { font-size: 0.95rem; line-height: 1.3; margin-bottom: 5px; font-weight: 600; }
        .lp-info h5 a { color: var(--primary); }
        .lp-info h5 a:hover { color: var(--secondary); }
        .lp-date { font-size: 0.8rem; color: var(--text-light); }

        /* Categories Widget */
        .cat-list li { margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
        .cat-list li:last-child { border-bottom: none; padding-bottom: 0; }
        .cat-list a { display: flex; justify-content: space-between; color: var(--text-light); font-weight: 500; }
        .cat-list a:hover { color: var(--secondary); padding-left: 5px; }

        /* Tags Widget */
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
        .tag-item { padding: 6px 14px; background: var(--accent); color: var(--text-dark); font-size: 0.85rem; border-radius: 4px; transition: var(--transition); }
        .tag-item:hover { background: var(--secondary); color: var(--white); }
