.talent-section {
  position: relative;
  padding: 40px 0;
  background: #ffffff;
}

.talent-container {
  max-width: 1200px;
  margin: 0 auto;
}

.talent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.talent-title-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.talent-title {
  font-family: "OPPOSans";
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #7c1419;
  margin: 0;
}

.talent-underline {
  width: 66px;
  height: 6px;
  background-color: #7c1419;
}

.talent-content {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  cursor: pointer;
}

.talent-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.talent-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.talent-content:hover .talent-bg-image {
  transform: scale(1.05);
}

.talent-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
    height: 100px;
    padding: 32px 28px;
}

.en-talent-info{
height: 128px;
}

.talent-info a {
  text-decoration: none;
}

.talent-content:hover .talent-info {
  height: 100%;
  top: 0;
  bottom: auto;
}

.talent-content:hover .talent-view-more {
  display: block;
}

.talent-description {
  font-family: "OPPOSans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  color: #ffffff;
  text-align: center;
  margin: 0;
  /* max-width: 1144px; */
  padding: 0 170px;
}

.en-talent-description{
padding: 0;
}

.talent-view-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s ease, visibility 0.5s ease;
  margin-top: 30px;
}

.talent-view-more span {
  font-family: "OPPOSans";
  font-weight: 500;
  font-size: 24px;
  line-height: 1.083;
  color: #ffffff;
  text-align: center;
}

.talent-view-line {
  width: 96px;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
  margin-top: 4px;
}

.en-talent-view-line{
width:138px;
}

.talent-view-more:hover .talent-view-line {
  width: 120px;
  /* background-color: #7c1419; */
}

.talent-view-more:hover .en-talent-view-line {
  width: 152px;
  /* background-color: #7c1419; */
}
