        /* ============================================
           BLOG PAGE - كل النصوص من DB
           ============================================ */

        .blog-page {
            padding: 130px 0 60px;
            background: #f8fafc;
        }

        .blog-page .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog-page .blog-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            align-items: start;
        }

        @media (max-width: 992px) {
            .blog-page .blog-wrapper {
                grid-template-columns: 1fr;
            }
        }

        /* ====== Blog Hero ====== */
        .blog-hero {
            background: linear-gradient(135deg, #0B2B4A 0%, #1a4a6e 100%);
            color: #ffffff;
            padding: 130px 0 50px;
        }

        .blog-hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog-hero .breadcrumb {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 16px;
        }

        .blog-hero .breadcrumb a {
            color: #54B448;
            text-decoration: none;
        }

        .blog-hero .breadcrumb .separator {
            color: rgba(255, 255, 255, 0.4);
            margin: 0 6px;
        }

        .blog-hero .breadcrumb .current {
            color: #ffffff;
            font-weight: 500;
        }

        .blog-hero .hero-subtitle {
            display: inline-block;
            font-size: 14px;
            color: #54B448;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: rgba(84, 180, 72, 0.15);
            padding: 4px 16px;
            border-radius: 30px;
            margin-bottom: 12px;
        }

        .blog-hero h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .blog-hero .hero-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            .blog-hero { padding: 110px 0 30px; }
            .blog-hero h1 { font-size: 28px; }
            .blog-hero .hero-description { font-size: 16px; }
        }

        /* ====== Breadcrumb ====== */
        .blog-breadcrumb {
            margin-bottom: 30px;
            font-size: 14px;
            color: #5A6B75;
        }

        .blog-breadcrumb a {
            color: #54B448;
            text-decoration: none;
        }

        .blog-breadcrumb .separator {
            color: #c0c8d0;
            margin: 0 6px;
            font-size: 18px;
        }

        .blog-breadcrumb .current {
            color: #54B448;
            font-weight: 500;
        }

        /* ====== عنوان الصفحة ====== */
        .blog-header {
            margin-bottom: 30px;
        }

        .blog-header h1 {
            font-size: 32px;
            font-weight: 700;
            color: #0B2B4A;
            margin: 0;
        }

        .blog-header p {
            color: #5A6B75;
            font-size: 16px;
            margin: 8px 0 0;
        }

        /* ====== قائمة المنشورات ====== */
        .blog-posts {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .blog-post {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e8edf2;
            transition: all 0.3s ease;
        }

        .blog-post:hover {
            border-color: #54B448;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .blog-post .post-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
        }

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

        .blog-post:hover .post-image img {
            transform: scale(1.03);
        }

        .blog-post .post-body {
            padding: 24px 28px 28px;
        }

        .blog-post .post-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: #5A6B75;
            margin-bottom: 10px;
        }

        .blog-post .post-meta .category {
            background: #e8f5e9;
            color: #54B448;
            padding: 2px 14px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 12px;
        }

        .blog-post .post-meta .category a {
            color: #54B448;
            text-decoration: none;
        }

        .blog-post .post-title {
            font-size: 20px;
            font-weight: 700;
            color: #0B2B4A;
            margin: 0 0 10px;
            line-height: 1.4;
        }

        .blog-post .post-title a {
            color: #0B2B4A;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog-post .post-title a:hover {
            color: #54B448;
        }

        .blog-post .post-excerpt {
            color: #5A6B75;
            font-size: 15px;
            line-height: 1.8;
            margin: 0 0 16px;
        }

        .blog-post .post-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid #e8edf2;
        }

        .blog-post .post-footer .read-more {
            color: #54B448;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .blog-post .post-footer .read-more:hover {
            color: #3C6078;
        }

        .blog-post .post-footer .read-more i {
            margin-left: 6px;
            transition: transform 0.3s ease;
        }

        .blog-post .post-footer .read-more:hover i {
            transform: translateX(4px);
        }

        /* ====== سايدبار ====== */
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sidebar-widget {
            background: #ffffff;
            border-radius: 12px;
            padding: 24px 26px;
            border: 1px solid #e8edf2;
        }

        .sidebar-widget .widget-title {
            font-size: 16px;
            font-weight: 700;
            color: #0B2B4A;
            margin: 0 0 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e8edf2;
        }

        .sidebar-widget .widget-title i {
            color: #54B448;
            margin-right: 8px;
        }

        .search-widget form {
            display: flex;
            gap: 0;
            border: 1px solid #e8edf2;
            border-radius: 8px;
            overflow: hidden;
        }

        .search-widget form input {
            flex: 1;
            padding: 10px 16px;
            border: none;
            outline: none;
            font-size: 14px;
            color: #0B2B4A;
        }

        .search-widget form button {
            padding: 10px 18px;
            background: #54B448;
            color: #ffffff;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .search-widget form button:hover {
            background: #3C6078;
        }

        .categories-widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .categories-widget ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f4f8;
        }

        .categories-widget ul li:last-child {
            border-bottom: none;
        }

        .categories-widget ul li a {
            display: flex;
            justify-content: space-between;
            color: #3C6078;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .categories-widget ul li a:hover {
            color: #54B448;
        }

        .categories-widget ul li a .count {
            color: #5A6B75;
            font-size: 13px;
        }

        .recent-post-item {
            display: flex;
            gap: 14px;
            padding: 10px 0;
            border-bottom: 1px solid #f0f4f8;
        }

        .recent-post-item:last-child {
            border-bottom: none;
        }

        .recent-post-item .rp-image {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .recent-post-item .rp-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-post-item .rp-content h4 {
            font-size: 14px;
            font-weight: 600;
            color: #0B2B4A;
            margin: 0 0 4px;
            line-height: 1.3;
        }

        .recent-post-item .rp-content h4 a {
            color: #0B2B4A;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .recent-post-item .rp-content h4 a:hover {
            color: #54B448;
        }

        .recent-post-item .rp-content .rp-date {
            font-size: 12px;
            color: #5A6B75;
        }

        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tags-cloud a {
            display: inline-block;
            padding: 4px 14px;
            background: #f0f4f8;
            border-radius: 20px;
            font-size: 13px;
            color: #3C6078;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .tags-cloud a:hover {
            background: #54B448;
            color: #ffffff;
        }

        .blog-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 30px;
        }

        .blog-pagination a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            background: #ffffff;
            border: 1px solid #e8edf2;
            border-radius: 8px;
            color: #3C6078;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .blog-pagination a:hover {
            border-color: #54B448;
            color: #54B448;
        }

        .blog-pagination a.active {
            background: #54B448;
            border-color: #54B448;
            color: #ffffff;
        }

        .blog-pagination a.disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        .no-posts {
            text-align: center;
            padding: 60px 20px;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e8edf2;
        }

        .no-posts i {
            font-size: 48px;
            color: #54B448;
            margin-bottom: 16px;
        }

        .no-posts h3 {
            font-size: 22px;
            color: #0B2B4A;
            margin: 0 0 8px;
        }

        .no-posts p {
            color: #5A6B75;
            margin: 0 0 20px;
        }

        .no-posts .btn {
            display: inline-block;
            padding: 10px 30px;
            background: #54B448;
            color: #ffffff;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .no-posts .btn:hover {
            background: #3C6078;
        }

        [dir="rtl"] .blog-post .post-footer .read-more i {
            margin-left: 0;
            margin-right: 6px;
        }

        [dir="rtl"] .blog-post .post-footer .read-more:hover i {
            transform: translateX(-4px);
        }

        [dir="rtl"] .sidebar-widget .widget-title i {
            margin-right: 0;
            margin-left: 8px;
        }

        @media (max-width: 768px) {
            .blog-page { padding: 20px 0 40px; }
            .blog-header h1 { font-size: 26px; }
            .blog-post .post-body { padding: 18px 20px 22px; }
            .blog-post .post-title { font-size: 18px; }
            .blog-post .post-image { height: 180px; }
            .blog-sidebar { gap: 20px; }
            .sidebar-widget { padding: 18px 20px; }
            .blog-pagination a { min-width: 36px; height: 36px; font-size: 13px; padding: 0 10px; }
        }

        @media (max-width: 480px) {
            .blog-post .post-image { height: 140px; }
            .blog-post .post-meta { font-size: 12px; gap: 10px; flex-wrap: wrap; }
            .blog-post .post-title { font-size: 16px; }
            .blog-post .post-excerpt { font-size: 14px; }
        }