    .category-title {
        margin-bottom: 35px;
        font-size: 2rem;
        font-weight: 800;
        color: #222;
    }

    .people-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        justify-items: stretch;
    }

    .people-container {
        width: min(1500px, 88%);
        margin-left: auto;
        margin-right: auto;
    }

    .person-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .person-card {
        position: relative;
        min-height: 195px;
        background: white;
        border-radius: 4px;
        padding: 24px 135px 24px 24px;
        box-shadow: 0 8px 22px rgba(0,0,0,0.1);
        transition: all 0.25s ease;
        cursor: pointer;
    }

    .person-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.15);
    }

    .person-img {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 105px;
        height: 132px;
        object-fit: cover;
        border-radius: 8px;
        background: #f3f3f3;
    }

    .person-name {
        font-size: 1.28rem;
        font-weight: 800;
        color: #1f2d4a;
        margin-bottom: 6px;
        max-width: 100%;
    }

    .person-pos {
        font-size: 0.88rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #475569;
        line-height: 1.35;
        min-height: 34px;
    }

    .person-actions {
        display: flex;
        gap: 10px;
        margin-top: 16px;
        position: relative;
        z-index: 3;
    }

    .person-affiliation{
        color:#666;
        font-size:0.95rem;
        margin-top:4px;
    }

    .profile-btn {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #5067e8;
        color: white;
        font-size: 0.82rem;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .profile-btn:hover {
        transform: translateY(-2px);
        background: #0b5563;
        color: white;
    }

    .profile-btn.orcid {
        background: #a6ce39;
    }

    .profile-btn.orcid:hover {
        background: #7aa51d;
    }

    .category-section {
        margin-bottom: 90px;
        padding-bottom: 60px;
        border-bottom: 2px solid #edf2f7;
    }

    @media (max-width: 992px) {
        .people-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .people-grid {
            grid-template-columns: 1fr;
        }

        .person-card {
            padding-right: 115px;
        }

        .person-img {
            width: 90px;
            height: 90px;
        }
    }