/* Plugin Styles */

/* Member content styles */
.tmph-contents-wrapper {
  background: #e9e9e9;
  padding: 40px;
}

.tmph-contents-wrapper .tmph-members {
  display: flex;
  justify-content: center;
}

.tmph-single-member {
  margin: 0 20px;
  text-align: center;
}

.tmph-single-member .tmph-member-img {
  border-radius: 50%;
  margin: 0 auto 10px;
  width: 150px;
  height: 150px;
}

.tmph-single-member .tmph-member-name {
  font-size: 20px;
  margin: 0;
}

.tmph-single-member a {
  text-decoration: none;
  color: #333;
}

.tmph-single-member .tmph-member-designation {
  font-size: 14px;
}

.tmph-see-all-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

a.tmph-see-all-btn {
  text-decoration: none;
  background: #bdbdbd;
  color: #000;
  padding: 10px 44px;
  /* font-weight: bold; */
}

/* Responsive styles */
@media (max-width: 768px) {
  .tmph-contents-wrapper .tmph-members {
    flex-direction: column;
  }

  .tmph-single-member:not(:last-child) {
    margin-bottom: 20px;
  }
}