        :root {
            --bg-color: #f8fafc;
            --card-bg: #ffffff;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --commerce-color: #16a34a;
            --commerce-light: #f0fdf4;
            --humanities-color: #dc2626;
            --humanities-light: #fef2f2;
            --sciences-color: #2563eb;
            --sciences-light: #eff6ff;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
            --radius: 12px;
        }




        .school-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            overflow: hidden;
            border-top: 6px solid var(--accent-color);
        }

        /* School Themes */
        .school-commerce { --accent-color: var(--commerce-color); --accent-light: var(--commerce-light); }
        .school-humanities { --accent-color: var(--humanities-color); --accent-light: var(--humanities-light); }
        .school-sciences { --accent-color: var(--sciences-color); --accent-light: var(--sciences-light); }

        .school-header {
            padding: 30px 40px;
            background: linear-gradient(135deg, #ffffff, var(--accent-light));
            border-bottom: 1px solid rgba(0,0,0,0.03);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .school-title h2 {
            font-size: 1.8rem;
            margin: 0 0 5px 0;
            color: var(--accent-color);
        }

        /* School Leader Wrapper with Profile Photo */
        .school-leader {
            background: white;
            padding: 8px 20px 8px 12px;
            border-radius: 40px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            border: 1px solid #e2e8f0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .leader-photo-container {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--accent-light);
            border: 2px solid var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .leader-photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .leader-info {
            display: flex;
            flex-direction: column;
        }

        .leader-info span {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }

        .leader-info strong {
            color: var(--accent-color);
            font-size: 0.95rem;
        }

        .school-body {
            padding: 30px 40px;
        }

        .department-section {
            margin-bottom: 40px;
        }

        .department-section:last-child {
            margin-bottom: 0;
        }

        .department-title {
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
            margin-bottom: 25px;
            padding-bottom: 5px;
            border-bottom: 2px solid var(--accent-light);
            display: inline-block;
            font-weight: 700;
        }

        /* Front-facing Profile Grid Layout */
        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }

        .faculty-profile-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 16px;
            display: flex;
            gap: 16px;
            align-items: center;
            transition: all 0.2s ease;
        }

        .faculty-profile-card:hover {
            background: #ffffff;
            transform: translateY(-2px);
            border-color: var(--accent-color);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05);
        }

        /* Profile Photo Container */
        .profile-photo-container {
            flex-shrink: 0;
            width: 115px;
            height: 115px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--accent-light);
            border: 2px solid var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .profile-photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .photo-placeholder {
            font-weight: 700;
            color: var(--accent-color);
            font-size: 1.2rem;
            text-transform: uppercase;
        }

        /* Profile Text Info */
        .profile-info {
            flex-grow: 1;
            min-width: 0;
            line-height: normal;
             text-align: left;
        }

        .profile-info .name {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 4px 0;
            color: var(--text-primary);
/*            white-space: nowrap;*/
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: left;
        }

        .profile-info .designation {
            font-size: 0.85rem;
            color: var(--accent-color);
            font-weight: 600;
            margin: 0 0 8px 0;
             text-align: left;
        }

        .profile-info .meta-details {
            font-size: 0.82rem;
            color: var(--text-secondary);
            margin: 0;
             text-align: left;
        }

        @media (max-width: 768px) {
            body { padding: 20px 10px; }
            .school-header { padding: 20px; }
            .school-body { padding: 20px; }
            .faculty-grid { grid-template-columns: 1fr; }
        }