.students-grid{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.student-card{
  display:flex;
  gap:20px;
  align-items:flex-start;
  background:#fff;
  border-radius:10px;
  padding:18px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.student-photo{
  flex:0 0 350px;
  max-width:350px;
}

.student-photo img{
  width:100%;
  height:360px;
  display:block;
  border-radius:8px;
  object-fit:cover;
}

.student-content{
  flex:1;
}
.student-content h2 {
	font-size: 34px;
}
.student-name{
  margin:0 0 10px;
}

.student-meta div{
  margin-bottom:6px;
}

.student-projects,
.student-bio{
  margin-top:12px;
}

@media (max-width: 700px){
  .student-card{
    flex-direction:column;
  }

  .student-photo{
    max-width:100%;
  }
}
