/**
 * Team Block Styles
 */

.flexiq-team-block {
  padding: 80px 0;
  background: #f6fcff;
}
.flexiq-team-block .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.flexiq-team-block .team-member {
  text-align: left;
}
.flexiq-team-block .team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #e5e7eb;
  margin-bottom: 24px;
  overflow: hidden;
}
.flexiq-team-block .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flexiq-team-block .team-name {
  font-size: 22px;
  font-weight: 700;
  color: #0c2212;
  margin-bottom: 12px;
}
.flexiq-team-block .team-bio {
  font-size: 15px;
  color: #525252;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .flexiq-team-block .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .flexiq-team-block { padding: 48px 0; }
}
