.team-section {
  padding: 40px 0;
  background: #fafafa; /* opcionális háttér */
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.team-member {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  text-align: center;
}

.team-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;         /* négyzetes */
  object-fit: cover;         /* kitöltés vágással */
  border-radius: 12px;
  margin-bottom: 16px;
}

.team-name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.team-title {
  margin: 6px 0 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--uni-blue);
}

.team-bio {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.55;
  margin-bottom: 9px;
  text-align: left;
}