        :root {
            --primary: #4361ee;
            --primary-dark: #3a0ca3;
            --primary-light: #f0f2ff;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.2s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }

        .alumni-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        .section-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin: 0 0 10px 0;
            position: relative;
            padding-bottom: 10px;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .alumni-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .alumni-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .alumni-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .alumni-media-container {
            height: 160px;
            overflow: hidden;
            position: relative;
        }

        .alumni-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .alumni-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .alumni-card:hover .alumni-image {
            transform: scale(1.03);
        }

        .alumni-date-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: rgba(67, 97, 238, 0.9);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .alumni-content {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .alumni-title {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: var(--dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .alumni-excerpt {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 12px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .read-more {
            font-size: 0.8rem;
            padding: 6px 12px;
            background-color:  #4361ee;
            color: #ffffff;
            border-radius: 4px;
            text-decoration: none;
            align-self: flex-start;
            transition: all 0.2s ease;
        }

        .read-more:hover {
            background-color: #3a0ca3;
        }

        .empty-state {
            text-align: center;
            padding: 40px 20px;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            grid-column: 1 / -1;
        }

        .empty-state i {
            font-size: 2rem;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .media-icon {
            position: absolute;
            top: 10px;
            left: 10px;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 5px;
            border-radius: 50%;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 25px;
            height: 25px;
        }

        /* Tab/Filter Controls */
        .filter-buttons {
            text-align: center;
            margin-bottom: 30px;
        }

        .filter-button {
            background-color: var(--primary-light);
            color: var(--primary-dark);
            border: 1px solid var(--primary);
            padding: 10px 20px;
            margin: 0 10px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            text-decoration: none; /* In case it's an anchor */
        }

        .filter-button:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .filter-button.active {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: var(--shadow);
        }

        .filter-button i {
            margin-right: 8px;
        }

        /* Sections controlled by tabs */
        .alumni-section {
            display: none; /* Hidden by default */
        }

        .alumni-section.active {
            display: block; /* Shown when active */
        }


        @media (max-width: 1200px) {
            .alumni-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .alumni-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .alumni-grid {
                grid-template-columns: 1fr;
            }

            .alumni-container {
                padding: 25px 15px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }
            .filter-button {
                margin-bottom: 10px;
            }
        }
