.bf-header-banner {
  background: url("../../images/bytesforce/2025-09-15/home/bf-page-leaders-bg-home.avif") no-repeat;
  background-size: cover;
  background-position: center center;
}

/* 分类标题样式 */
.category-header {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

.category-divider {
  width: 90px;
  height: 16px;
  background: #3F61FF;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.category-title {
  margin: 0;
}

/* 领导者卡片样式 */
.leader-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  width: 350px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* 领导者头像样式 */
.leader-image {
  position: relative;
  width: 350px;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.leader-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leader-card:hover .leader-avatar {
  transform: scale(1.05);
}

/* 领导者图标样式 */
.leader-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 86px;
  height: 86px;
  object-fit: contain;
  z-index: 2;
}

/* 领导者信息样式 */
.leader-info {
  padding: 16px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* height: 200px; */
}

.leader-name {
  font-weight: 700;
  margin: 0 0 8px 0;
  min-height: 2em;
  line-height: 1;
}

.leader-position {
  font-weight: 500;
  margin: 0 0 16px 0;
  text-transform: capitalize;
}

.leader-description {
  margin: 0;
  flex-grow: 1;
  font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1199.98px) {
  
  .leader-image {
    height: 260px;
  }
}

@media (max-width: 991.98px) {
  
  .leader-image {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  .category-header {
    margin: 30px 0;
  }
  
  .category-divider {
    width: 50px;
    height: 3px;
  }
  
  .leader-image {
    height: 220px;
  }
  
  .leader-icon {
    width: 32px;
    height: 32px;
  }
  
  .leader-icon .icon-img {
    width: 18px;
    height: 18px;
  }
}

/* LinkedIn链接样式 */
.leader-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.leader-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.leader-card.clickable {
  cursor: pointer;
  position: relative;
}

.leader-card.clickable:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.leader-card.clickable:hover .leader-avatar {
  transform: scale(1.08);
}

/* LinkedIn指示器样式 */
.linkedin-indicator {
  /* margin-top: 16px; */
  padding: 8px 12px;
  background: linear-gradient(135deg, #0077b5, #005885);
  color: white;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.leader-card.clickable:hover .linkedin-indicator {
  opacity: 1;
  transform: translateY(0);
}

.linkedin-indicator i {
  margin-right: 6px;
  font-size: 14px;
}

/* 容器样式调整 */
#leaders-container .col-xxl-4,
#leaders-container .col-lg-4,
#leaders-container .col-md-6 {
  display: flex;
  align-items: stretch;
}