

    body { background-color: #fcfcfc; }

    /* --- Article Header Area --- */
    .article-hero {
        padding: 160px 5% 60px;
        background: white;
        border-bottom: 1px solid var(--border-color);
    }

    .article-category {
        color: var(--alsalam-green);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 12px;
        margin-bottom: 15px;
        display: block;
    }

    .article-main-title {
        font-size: clamp(2rem, 5vw, 2rem);
        font-weight: 900;
        line-height: 1.1;
        color: #0f172a;
        max-width: 1000px;
    }

    /* --- Main Layout Grid --- */
    .content-grid {
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 60px;
        max-width: 1600px;
        margin: 60px auto 120px;
        padding: 0 5%;
    }

    /* --- Smart Gallery Layout --- */
    .news-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 40px 0;
    }

    .gallery-item {
        border-radius: 24px;
        overflow: hidden;
        background: #f1f5f9;
        position: relative;
    }

    .gallery-item.large { grid-column: span 2; height: 500px; }
    .gallery-item.small { height: 300px; }

    .gallery-item img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-item:hover img { transform: scale(1.05); }

    /* --- Typography & Body --- */
    .content-area {
        font-size: 19px;
        line-height: 1.9;
        color: #475569;
    }

    .content-area p { margin-bottom: 35px; }

    .chairman-quote {
        background: var(--alsalam-green-soft);
        border-radius: 32px;
        padding: 40px;
        margin: 50px 0;
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .chairman-avatar {
        width: 100px; height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    /* --- Sidebar Widgets --- */
    .sidebar-widget {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 24px;
        padding: 30px;
        margin-bottom: 30px;
        position: sticky;
        top: 120px;
    }

    .share-btn {
        width: 100%;
        padding: 12px;
        border-radius: 12px;
        background: #f8fafc;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 700;
        font-size: 14px;
        transition: 0.3s;
        margin-bottom: 10px;
    }

    .share-btn:hover { background: var(--alsalam-green); color: white; }

    @media (max-width: 1024px) {
        .content-grid { grid-template-columns: 1fr; }
        .sidebar-widget { position: static; }
        .gallery-item.large, .gallery-item.small { grid-column: span 2; height: 350px; }
    }
    /* --- التنسيقات الإضافية الجديدة --- */
    
    /* أخبار ذات صلة */
    .related-news {
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 2px solid #f1f5f9;
    }
    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 1.5rem;
    }
    .related-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        transition: 0.3s;
        border: 1px solid #e2e8f0;
    }
    .related-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .related-card img { width: 100%; height: 180px; object-fit: cover; }
    .related-info { padding: 15px; }

    /* نظام التعليقات */
    .comments-section { margin-top: 4rem; background: #f8fafc; padding: 30px; border-radius: 16px; }
    .comment-form textarea { width: 100%; border: 1px solid #e2e8f0; border-radius: 8px; padding: 15px; margin-bottom: 10px; }
    .btn-submit { background: #0f172a; color: white; padding: 10px 25px; border-radius: 8px; font-weight: bold; }

    /* ويدجت الجانب */
    .sidebar-card { background: white; border: 1px solid #e2e8f0; border-radius: 16px; padding: 20px; margin-bottom: 20px; }
    .trending-item { display: flex; gap: 12px; margin-bottom: 15px; align-items: center; }
    .trending-num { font-size: 24px; font-weight: 900; color: #e2e8f0; }
    
    /* الجاليري (نفس التنسيق السابق) */
    .news-gallery { display: grid; gap: 10px; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px; margin-bottom: 2.5rem; border-radius: 16px; overflow: hidden; }
    .gallery-item { position: relative; cursor: zoom-in; overflow: hidden; grid-column: span 3; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .gallery-item:hover img { transform: scale(1.08); }
    .news-gallery:has(.gallery-item:nth-child(3):last-child) .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; height: 450px; }
    .news-gallery:has(.gallery-item:nth-child(3):last-child) .gallery-item:nth-child(n+2) { grid-column: span 2; }
    .more-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); color: white; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; pointer-events: none; }
    
    #customImageModal { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.92); z-index: 10000; justify-content: center; align-items: center; padding: 40px; cursor: zoom-out; backdrop-filter: blur(8px); }
    #customImageModal.active { display: flex; }
    .modal-img-container img { max-width: 90%; max-height: 85vh; border-radius: 12px; transform: scale(0.95); transition: 0.4s; }
    #customImageModal.active img { transform: scale(1); }