
        /* ═══════════════════════════════════════════════════════════════
           DIVINE DESIGN SYSTEM – التضامن الجامعي المغربي
           ═══════════════════════════════════════════════════════════════ */
        :root {
            --blue:        #094a8c;
            --blue-dark:   #063266;
            --blue-mid:    #0d5fb3;
            --blue-light:  #e8f0fa;
            --yellow:      #f7ec11;
            --yellow-dark: #d4c90e;
            --yellow-soft: #fdf6b2;
            --cream:       #f7f5f0;
            --white:       #ffffff;
            --text:        #1a1a1a;
            --muted:       #5a5a5a;
            --border:      #d9d4c7;
            --radius:      12px;
            --radius-sm:   8px;
            --font:        'Cairo', 'Segoe UI', sans-serif;
            --serif:       'Tajawal', Georgia, serif;
            --shadow-sm:   0 2px 8px rgba(0,0,0,.05);
            --shadow-md:   0 8px 24px rgba(9,74,140,.1);
            --shadow-lg:   0 16px 40px rgba(0,0,0,.1);
            --shadow-xl:   0 24px 56px rgba(0,0,0,.14);
            --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font);
            font-size: 16px;
            color: var(--text);
            background: #fff;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: inherit; text-decoration: none; }
        img { display: block; max-width: 100%; }

        

        

        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 700;
            font-family: var(--font);
            cursor: pointer;
            border: 2px solid transparent;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; background: transparent; }
        .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(247,236,17,0.1); }
        .btn-yellow { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); }
        .btn-yellow:hover { background: #fff; border-color: #fff; color: var(--blue-dark); }

        

        /* ── BREADCRUMB ── */
        .breadcrumb-bar { background: var(--cream); border-bottom: 1px solid var(--border); padding: 10px 0; }
        .breadcrumb {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--muted);
        }
        .breadcrumb a { color: var(--muted); transition: color .2s; }
        .breadcrumb a:hover { color: var(--blue); }
        .breadcrumb-sep { opacity: .4; }
        .breadcrumb-current { color: var(--text); font-weight: 700; }

        /* ── CONTAINERS ── */
        .container { max-width: 960px; margin: 0 auto; padding: 0 28px; }
        .container-wide { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

        /* ── PAGE HEAD ── */
        .page-head { padding: 40px 0 20px; text-align: start; }
        .page-h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; color: var(--blue); margin-bottom: 20px; }
        .page-intro-text {
            font-size: 17px;
            font-family: var(--serif);
            line-height: 1.9;
            color: var(--text);
            margin-bottom: 36px;
        }

        /* ── PARTNER GRID ── */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
            margin-top: 4px;
        }
        .partner-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
        }
        .partner-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
        }
        .partner-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--blue-dark);
            line-height: 1.4;
        }

        /* ── RELATED CONTENT ── */
        .related-section {
            padding: 56px 0;
            background: var(--cream);
            border-top: 1px solid var(--border);
        }
        .related-h2 {
            font-size: 20px;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 24px;
        }
        .related-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .related-box {
            background: var(--blue-light);
            border: 2px solid var(--blue);
            border-radius: 10px;
            padding: 24px 22px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 14px;
            min-height: 140px;
            transition: all .2s;
        }
        .related-box:hover {
            background: var(--blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(9, 74, 140, .14);
        }
        .related-box:hover .rb-title,
        .related-box:hover .rb-link { color: #fff; }
        .rb-title {
            font-size: 15px;
            font-weight: 800;
            color: var(--blue);
            line-height: 1.4;
            transition: color .2s;
        }
        .rb-link {
            font-size: 13px;
            font-weight: 700;
            color: var(--blue);
            transition: color .2s;
        }

        /* ── SIDENAV ── */
        .sidenav {
            position: fixed;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 7px;
            z-index: 80;
        }
        .sn-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--muted);
            transition: all .2s;
        }
        .sn-link:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

        
        .fc-title {
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--yellow);
            margin-bottom: 14px;
        }
        .fn-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
        .fn-list a { font-size: 13px; color: rgba(255, 255, 255, .55); transition: color .2s; }
        .fn-list a:hover { color: var(--yellow); }
        .sl-link {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, .6);
            transition: all .2s;
        }
        .sl-link:hover { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); }
        .nl-input {
            padding: 9px 13px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, .15);
            background: rgba(255, 255, 255, .06);
            color: #fff;
            font-size: 13px;
            font-family: var(--font);
            width: 100%;
            margin-bottom: 8px;
            direction:inherit;
        }
        .nl-input:focus { outline: none; border-color: var(--yellow); }
        .nl-input::placeholder { color: rgba(255, 255, 255, .25); }

        /* ── LTR OVERRIDES ── */
        /* (removed: html[dir="ltr"] .page-intro-text{text-align:end} — 'end' is RIGHT in
           LTR, which wrongly pushed the French intro to the right. .page-head now uses
           logical text-align:start so title + intro follow direction in both languages.) */
        html[dir="ltr"] .breadcrumb { justify-content: flex-start; }
        html[dir="ltr"] .nl-input { direction: ltr; }
        html[dir="ltr"] .sidenav { left: auto; right: 16px; }

        @media (max-width: 768px) {
            .card-grid { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: 1fr; }
            .sidenav { display: none; }
        }
    