        /* 校友卡右側資訊覆寫：拿掉聯絡資訊，加校友標籤 */
        .alumni-card {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            background: #f8fafc;
            border: 1px solid #e5eaf0;
            border-radius: 10px;
            padding: 32px 36px;
            margin-bottom: 24px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .alumni-card:hover {
            border-color: #427096;
            box-shadow: 0 4px 16px rgba(66,112,150,.10);
        }

        .alumni-photo {
            flex-shrink: 0;
            width: 160px;
        }

        .alumni-photo img {
            width: 160px;
            height: 200px;
            object-fit: cover;
            border-radius: 6px;
            display: block;
            border: 1px solid #dde3ec;
        }

        .alumni-info {
            flex: 1;
            min-width: 0;
            padding-top: 4px;
        }

        /* 頂部：屆次 + 年度 */
        .alumni-meta-top {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .alumni-award-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            background: #427096;
            color: #fff;
            border-radius: 3px;
            letter-spacing: 0.5px;
        }

        .alumni-year-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            background: #e8f0f8;
            color: #427096;
            border-radius: 3px;
        }

        /* 姓名 */
        .alumni-name {
            font-size: 22px;
            font-weight: 700;
            color: #1a3a52;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        /* 系所＋畢業年 */
        .alumni-dept {
            font-size: 13px;
            color: #427096;
            font-weight: 600;
            margin-bottom: 14px;
        }

        /* 現職 */
        .alumni-position {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 14px;
        }

        .alumni-position-label {
            display: inline-block;
            min-width: 52px;
            font-weight: 700;
            color: #427096;
            font-size: 12px;
            background: #e8f0f8;
            padding: 2px 8px;
            border-radius: 3px;
            text-align: center;
            flex-shrink: 0;
            line-height: 1.6;
        }

        .alumni-position-value {
            font-size: 14px;
            font-weight: 600;
            color: #1a3a52;
            line-height: 1.6;
        }

        /* 簡介 */
        .alumni-bio {
            font-size: 14px;
            line-height: 1.85;
            color: #555;
            padding-top: 12px;
            border-top: 1px solid #e5eaf0;
        }

        /* 年度篩選 */
        .alumni-filter-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .alumni-card {
                flex-direction: column;
                gap: 20px;
                padding: 22px 18px;
                align-items: center;
                text-align: center;
            }

            .alumni-photo img { width: 130px; height: 163px; }

            .alumni-meta-top { justify-content: center; }
            .alumni-position { justify-content: center; }
        }
