/* ResearchHub Meet the Team - No Hover Effect */
.team-card-container {
    position: relative;
    width: 220px;
    height: 260px;
}

.team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #F6F8F6;
}

    .team-card img {
        position: absolute;
        top: 32px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 16px;
        display: block;
    }


.team-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin-top: 32px;
}

.team-row {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.team-card-container {
    position: relative;
    width: 220px;
    height: 260px;
}

.team-card {
    border-radius: 20px;
    padding: 32px 24px;
    width: 220px;
    height: 260px;
    transition: box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Clickable team card with URL */
.team-card-clickable {
    cursor: pointer;
}

.team-card-clickable:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-card-img {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.team-card-info {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card-name {
    font-family: 'Aptos-Bold', Helvetica;
    font-size: 18px;
    font-weight: 700;
    color: #292929;
    text-align: center;
}

.team-card-title {
    font-family: 'Aptos-Display', Helvetica;
    font-size: 15px;
    color: #696969;
    text-align: center;
}
