/* ===== page about-team (compiled from Vue SCSS) ===== */
@charset "UTF-8";
.team-page {
  min-height: 80vh;
  min-height: 80dvh;
}

.font-weight-500 {
  font-weight: 500;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.border-top {
  border-top: 1px solid #d9e5e0;
}

.overflow-hidden {
  overflow: hidden;
}

.align-items-start {
  align-items: flex-start;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

/* 页内 Tab 样式 */
.in-page-tabs .tab-btn {
  background: transparent;
  border: 1px solid #d9e5e0;
  padding: 8px 24px;
  border-radius: 20px;
  color: #66736e;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.in-page-tabs .tab-btn:hover {
  border-color: #0b6b5a;
  color: #0b6b5a;
}
.in-page-tabs .tab-btn.active {
  background-color: #0b6b5a;
  color: #ffffff;
  border-color: #0b6b5a;
}

/* 成员卡片 */
.member-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.member-card .member-avatar {
  height: 200px;
  width: 100%;
  overflow: hidden;
}
.member-card .member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reverted from utilities.scss */
.py-8 {
  padding-top: 48px;
  padding-bottom: 80px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-6 {
  margin-bottom: 48px;
}

.mb-4 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: #66736e;
}

.text-sm {
  font-size: 14px;
}

.line-height-lg {
  line-height: 1.8;
}

.cursor-pointer {
  cursor: pointer;
}

.mb-10 {
  margin-bottom: 40px;
}

.text-primary {
  color: #0b6b5a;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.py-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mb-3 {
  margin-bottom: 16px;
}

.text-xs {
  font-size: 12px;
}

.max-w-800 {
  max-width: 800px;
}

.bg-light {
  background-color: #f7faf9;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-full {
  width: 100%;
}

.hover-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(11, 107, 90, 0.08);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* 移除固定高度，在移动端自适应*/
}

.gap-4 {
  gap: 24px;
}

.gap-5 {
  gap: 32px;
}

.p-5 {
  padding: 32px;
}

.mb-1 {
  margin-bottom: 8px;
}

/* Reverted responsive */
@media (max-width: 1199px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}