.services-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* 保持基础样式 */
.services-hero-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.06); /* 调整亮度 数字越小越暗 */
}

.talent-hero {
  height: 65vh;
  min-height: 520px;
}
.talent-hero .services-hero-img {
  height: 100%;       
  width: 100%;
  object-fit: cover;   
  object-position: center 90%; /* 裁剪比例 - 控制偏移 */
}

@media (max-width: 768px) {
  .talent-hero { height: 42vh; min-height: 320px; }
  .talent-hero .services-hero-img { object-position: center 58%; }
}
@media (max-width: 480px) {
  .talent-hero { height: 38vh; min-height: 280px; }
  .talent-hero .services-hero-img { object-position: center 56%; }
}
.services-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  z-index: 2;
}
@media (max-width: 768px) { .services-hero-title { font-size: 36px; } }
@media (max-width: 480px) { .services-hero-title { font-size: 28px; letter-spacing: 1px; } }

/* 通用内容*/
.service-section { padding: 80px 0; background-color: #ffffff; }
.service-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 头部 - 标题*/
.service-header { 
  margin-bottom: 40px; 
  text-align: center;   
  }
.talent-join .service-title {
  display: block;
  font-size: 56px; /* 放大标题 */
  font-weight: 700;
  color: #000000;
  margin: 0;
  letter-spacing: 1px;

}

/* 介绍文案：改为靠左显示，并居中容器 */
.talent-join .service-description { max-width: 1200px; margin: 16px auto 0; }
.talent-join .service-description p {
  font-size: 20px;
  line-height: 1.8;
  color: #5f5f5f;
  margin: 0;
  text-align: left; /* 靠左 */
}

/* 增大间距 */
.cta-btn-group {
  display: flex;
  gap: 40px; 
  justify-content: center;
  margin-top: 32px;
}

/* 主按钮样式*/
.cta-btn {
  background: #FFB800;
  color: #000;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255,184,0,0.35);
  transition: transform .12s ease, box-shadow .2s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,184,0,0.45); }
.cta-btn:active, .cta-btn.clicked { transform: translateY(0) scale(0.98); box-shadow: 0 8px 24px rgba(255,184,0,0.35); }

/* 文案(备)*/
.cta-subtext { text-align: center; color: #5f5f5f; margin-top: 8px; font-size: 14px; }

/* 星途计划模块样式 */
.talents-star-route { background: #ffffff; padding: 0 0 10px; margin-top: 0; }
.talents-star-route .service-header { text-align: center; }
.talents-star-route .service-title { font-size: 42px; }
.talents-star-route .service-subtitle { margin-top: 10px; font-size: 18px; color: #666; font-weight: 600; }
.talents-star-route .service-title-underline { width: 96px; height: 4px; background: #000; margin: 14px auto 0; position: static; }

.star-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}

.star-content { color: #111; }
.star-block-title { font-size: 28px; font-weight: 700; margin: 0 0 14px 0; color: #000; }
.star-content p { font-size: 16px; line-height: 1.9; color: #333; margin: 0 0 12px 0; }

.star-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.star-item { background: #f8fafc; border: 1px solid #e5e7eb; border-left: 4px solid #FFB800; padding: 14px 16px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.star-item-title { display: inline-block; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.star-item-text { font-size: 15px; line-height: 1.8; color: #475569; margin: 0; }

.star-media .media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10; /* 默认比例保持不变 */
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
/* 仅提升第一段容器高度 */
.star-media--first .media-frame { aspect-ratio: 4 / 3; border: none; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.star-media .media-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.star-media .media-caption { margin-top: 8px; font-size: 13px; color: #666; }

/* 悬浮细节 */
.star-media .media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.star-media:hover .media-frame::after { opacity: 1; }
.star-media:hover .media-img { transform: scale(1.03); }

/* 响应式：中屏均分 */
@media (max-width: 1023px) {
  .star-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .star-block-title { font-size: 24px; }
  .star-content p { font-size: 15px; }
}

/* 响应式：小屏上下堆叠 */
@media (max-width: 767px) {
  .talents-star-route { padding: 0 0 48px; }
  .star-grid { grid-template-columns: 1fr; gap: 18px; }
  .star-block-title { font-size: 22px; margin-bottom: 10px; }
  .star-content p { font-size: 15px; line-height: 1.8; }
  .star-item-text { font-size: 14px; }
  .star-media--first .media-frame { aspect-ratio: 1 / 1; }
}

.leadership-description {
  max-width: 1200px;
  margin: 0 auto 48px;
  text-align: center;
}

.talents-leadership .leadership-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  letter-spacing: 1px;
}

.leadership-description p {
  font-size: 18px;
  line-height: 1.8;
  color: #5f5f5f;
  margin: 0;
}

.leadership-images {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-image-frame {
  flex: 1;
  max-width: 380px;
  aspect-ratio: 16 / 10;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-image-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.leadership-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.leadership-image-frame:hover .leadership-img {
  transform: scale(1.03);
}

/* 响应式布局 */
@media (max-width: 1023px) {
  .leadership-images {
    gap: 20px;
  }
  .leadership-image-frame {
    max-width: 320px;
  }
}

/* 我们寻找这样的你 */
.talent-seeking {
  padding-top: 2rem;
}

.talent-seeking .service-header {
  text-align: left;
}

.talent-seeking .service-title {
  font-size: 56px;
  font-weight: 700;
  color: #000000;
  margin-top: 0;
  letter-spacing: 1px;
}

.talent-seeking .seeking-content {
  max-width: 1200px;
  margin: 16px 0 0;
  text-align: left;
}

.talent-seeking .seeking-subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #333;
  text-align: left;
}

.talent-seeking .seeking-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.talent-seeking .seeking-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #5f5f5f;
  margin: 0;
  text-align: left;
}

/* Seeking Cards */
.seeking-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.seeking-card {
  text-align: left;
}

.seeking-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.4;
  white-space: nowrap; /* Prevent wrapping */
  overflow: hidden;
  text-overflow: ellipsis; /* Ellipsis if still too long */
  height: 28px; /* Fixed height for alignment */
  display: flex;
  align-items: center;
}

.seeking-card-icon {
  margin-bottom: 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 图标和文字对齐 */
}

.seeking-card-icon img {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  display: block;
}

.seeking-card-divider {
  width: 100%;
  height: 2px;
  margin-bottom: 16px;
}

/* 这是每个卡片的图标动画 */
.seeking-card-icon img {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* 卡片图标动画 */
}

/* Card 1: Bounce Up */
.seeking-card:nth-child(1):hover .seeking-card-icon img {
  transform: translateY(-8px) scale(1.1);
}

/* Card 2: Wobble */
.seeking-card:nth-child(2):hover .seeking-card-icon img {
  transform: rotate(15deg) scale(1.1);
}

/* Card 3: Pulse/Zoom */
.seeking-card:nth-child(3):hover .seeking-card-icon img {
  transform: scale(1.2);
}

/* Card 4: Slide & Tilt */
.seeking-card:nth-child(4):hover .seeking-card-icon img {
  transform: translateX(5px) rotate(-10deg) scale(1.1);
}

.seeking-card-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #5f5f5f;
  margin: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
  text-wrap: pretty;
}

/* Responsive for Seeking Cards */
@media (max-width: 1024px) {
  .seeking-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .seeking-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .seeking-card-icon {
    height: 60px;
    margin-bottom: 16px;
  }

  .seeking-card-icon img {
    max-width: 60px;
    max-height: 60px;
  }
  
  .seeking-card-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .talent-seeking .service-title {
    font-size: 32px;
  }

  .talent-seeking .seeking-subtitle {
    font-size: 22px;
    margin-bottom: 16px;
  }
  
  .talent-seeking .seeking-text {
    gap: 8px;
  }

  .talent-seeking .seeking-text p {
    font-size: 18px;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .talents-leadership { padding: 0 0; }
  .talents-leadership .leadership-title { font-size: 42px; }
  .leadership-description { margin-bottom: 32px; }
  .leadership-description p { font-size: 16px; }
  .leadership-images {
    flex-direction: column;
    gap: 16px;
  }
  .leadership-image-frame {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .talents-leadership .leadership-title { font-size: 42px; }
  .leadership-description p { font-size: 15px; }
}

/* 多元技术分享链——途拓讲堂模块样式 */
.talents-tech-sharing { background: #ffffff; padding: 0 0; }
.talents-tech-sharing .service-header { text-align: center; margin-bottom: 40px; }
.talents-tech-sharing .tech-sharing-title { 
  font-size: 42px; 
  font-weight: 700; 
  color: #000000;
  margin: 0;
  letter-spacing: 1px;
}

.tech-sharing-block {
  margin-bottom: 48px;
}

.tech-sharing-block:last-child {
  margin-bottom: 0;
}

.tech-sharing-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  padding-left: 8px;
  border-left: 4px solid #FFB800;
}

.tech-sharing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.tech-sharing-content {
  color: #111;
}

.tech-sharing-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin: 0;
}

.tech-sharing-media .media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-sharing-media .media-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.tech-sharing-img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  transition: transform 0.3s ease;
  object-fit: contain;
}
.tech-sharing-img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  /* object-fit: contain; */
}

.tech-sharing-media .media-frame:hover .tech-sharing-img {
  transform: scale(1.03);
}
.tech-sharing-media .media-frame:hover .tech-sharing-img2 {
  transform: scale(1.03);
}

/* 响应式布局 */
@media (max-width: 1023px) {
  .tech-sharing-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .tech-sharing-subtitle { font-size: 22px; }
  .tech-sharing-content p { font-size: 15px; }
}

@media (max-width: 767px) {
  .talents-tech-sharing { padding: 48px 0; }
  .tech-sharing-title { font-size: 32px; }
  .tech-sharing-grid { grid-template-columns: 1fr; gap: 24px; }
  .tech-sharing-subtitle { font-size: 20px; margin-bottom: 16px; }
  .tech-sharing-content p { font-size: 15px; line-height: 1.8; }
  .tech-sharing-block { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .tech-sharing-title { font-size: 28px; }
  .tech-sharing-content p { font-size: 14px; }
}

/* Your Growth Experience Section */
.talent-growth {
  background-color: #ffffff;
}

.talent-growth .service-header {
  text-align: left;
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
}

.talent-growth .service-title {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  letter-spacing: 1px;
  text-align: left;
}

.growth-container {
  display: block;
  margin-top: 40px;
}

/* 多元技术分享链——途拓讲堂模块样式 */
/* Update .growth-text */
.growth-text {
  text-align: left;
  max-width: 100%;
  margin-bottom: 40px;
  padding-right: 0;
}

.growth-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.growth-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f0f0f0;
  position: relative;
  z-index: 1;
}

/* Remove staggered effect for generic growth-card, just simple hover */
.growth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  z-index: 10;
}

/* Responsive adjustments for growth-cards */
@media (max-width: 1024px) {
  .growth-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .growth-cards {
    grid-template-columns: 1fr;
  }
}

/* Updated Generic Growth Card for Horizontal Layout */
.growth-card-img-wrapper {
  width: 100%;
  aspect-ratio: 3/2; /* More standard aspect ratio for cards */
  background-color: #f5f5f5;
  overflow: hidden;
}

.growth-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.growth-card:hover .growth-card-img {
  transform: scale(1.05);
}

.growth-card-text {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 8px; /* Control vertical rhythm */
}

.growth-card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #111;
  z-index: 2;
  line-height: 1.3;
}

.growth-card-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  -webkit-text-stroke: 0; /* Remove stroke effect */
}

.growth-card-divider {
  width: 40px;
  height: 3px;
  background-color: #FFB800; /* Accent color */
  margin: 12px 0;
  border-radius: 2px;
}

.growth-card-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
  text-wrap: pretty;
}

/* Right Side Text - Updated for Top-Down Layout */
.growth-text {
  padding-right: 0;
}

.growth-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
  line-height: 1.4;
}

.growth-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #5f5f5f;
  margin-bottom: 20px;
}

/* 响应式布局 */
@media (max-width: 1024px) {
  .growth-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .growth-text {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .growth-cards {
    grid-template-columns: 1fr;
    gap: 32px;
    --stagger-offset: 0px;
    padding-top: 0;
  }

  .growth-cards .growth-card:nth-child(odd),
  .growth-cards .growth-card:nth-child(even) {
    transform: none;
  }
  
  .growth-subtitle {
    font-size: 24px;
  }
  
  .growth-card-subtitle {
    font-size: 14px;
  }
}

/* 福利卡片的布局 */
.talent-welfare {
  background-color: #ffffff;
}

.talent-welfare .service-header {
  text-align: left;
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
}

.talent-welfare .service-title {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  letter-spacing: 1px;
  text-align: left;
}

/* Updated Welfare Section for Top-Down Layout */
.welfare-container {
  display: block;
  margin-top: 40px;
}

.welfare-text {
  padding-right: 0;
  text-align: left;
  margin-bottom: 40px;
}

.welfare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards */
  gap: 24px;
  margin-top: 30px;
}

/* Remove staggered effect for welfare cards */
.welfare-cards .growth-card:nth-child(odd),
.welfare-cards .growth-card:nth-child(even) {
  transform: none;
}

.welfare-cards .growth-card:nth-child(odd):hover,
.welfare-cards .growth-card:nth-child(even):hover {
  transform: translateY(-8px);
  z-index: 10;
}

@media (max-width: 1024px) {
  .welfare-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Welfare Card Items */
.welfare-card-item {
  margin-bottom: 12px;
}

.welfare-card-item:last-child {
  margin-bottom: 0;
}

.welfare-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 4px 0;
  display: block;
}

.welfare-item-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .welfare-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* 移动端更紧凑的间距 */
@media (max-width: 768px) {
  .talent-seeking {
    padding-top: 1.5rem;
  }
}

@media (hover: none) {
  .welfare-cards .growth-card:nth-child(odd):hover {
    transform: translateY(calc(var(--stagger-offset) * -1));
  }

  .welfare-cards .growth-card:nth-child(even):hover {
    transform: translateY(var(--stagger-offset));
  }

  .growth-card:hover .growth-card-img {
    transform: none;
  }
}


/* =========================================
   SCHEME A: Modern Compact (现代紧凑)
   ========================================= */
.growth-card.style-a {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.growth-card.style-a .growth-card-img-wrapper {
  aspect-ratio: 16/9; /* 更扁一些，增加信息密度 */
}

.growth-card.style-a .growth-card-text {
  padding: 20px; /* 减少内边距 (原24px) */
  gap: 12px; /* 使用 gap 控制垂直间距 */
  display: flex;
  flex-direction: column;
}

.growth-card.style-a .growth-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

.growth-card.style-a .growth-card-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-text-stroke: 0;
  margin: 0;
  order: -1; /* 将副标题移到标题上方 */
}

.growth-card.style-a .growth-card-divider {
  display: none; /* 移除分割线以节省空间 */
}

.growth-card.style-a .growth-card-desc {
  font-size: 18px; /* 最小字号 14px */
  line-height: 1.6;
  color: #444;
  margin: 0; /* Reset margin */
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
  text-wrap: pretty;
}



