/* Genel Stiller */
#unser-Team {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  text-align: center;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.team-member {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 5px;
  padding: 10px;
  flex: 1 1 calc(25% - 40px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5px;
}

.team-img img {
  border-radius: 50%;
  margin-bottom: 5px;
}

.team-info {
  margin-bottom: 5px;
}

.team-social-icon {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
}

.team-description {
  margin-top: 5px;
  text-align: left;
}

.team-description h4 {
 font-size: 1rem;
}

/* Orta ekranlar için düzenleme */
@media (max-width: 992px) {
  .team-member {
      flex: 1 1 calc(50% - 40px);
  }
}

/* Küçük ekranlar için düzenleme */
@media (max-width: 576px) {
  .team-member {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      width: 90%;
      margin-bottom: 10px;
  }

  .team-top {
      display: flex;
      flex-direction: row;
      align-items: center;
      text-align: left;
  }

  .team-img {
      flex: 0 0 auto;
      margin-right: 10px;
  }

  .team-info {
      flex: 1;
      margin-bottom: 0;
  }

  .team-social-icon {
      margin-top: 5px;
      justify-content: center;
  }

  .team-description {
      margin-top: 5px;
      text-align: left;
  }
}
