/* Talent Strategy Section */
.talent-section {
  padding: 60px 0;
  background-color: #ebebeb; /* match screenshot background */
}

.talent-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.talent-card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.talent-card-image {
  height: 341px;
  width: 100%;
}

.talent-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.talent-card-content {
  padding: 37px 55px 46px; 
  display: flex;
  flex-direction: column;
  flex: 1; 
}

.talent-card-title {
  font-size: 32px;
  font-family: SourceHanSansCNVF-Medium, sans-serif;
  font-weight: 500;
  color: #000;
  margin: 0 0 14px 0;
}

.talent-card-desc {
  font-size: 16px;
  font-family: SourceHanSansCNVF-Medium, sans-serif;
  font-weight: 500;
  color: rgba(160, 160, 160, 1);
  line-height: 24px;
  margin: 0 0 40px 0;
  flex: 1; 
}

.talent-card-footer {
  text-align: right;
}

.talent-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 44px;
  border: 1px solid rgba(187, 0, 21, 1); 
  color: rgba(187, 0, 21, 1);
  font-size: 16px;
  font-family: SourceHanSansCNVF-Medium, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.talent-card-btn::after {
  content: '→';
  margin-left: 8px;
  font-size: 18px;
  transform: translateY(-1px);
}

.talent-card-btn:hover {
  background-color: rgba(187, 0, 21, 1);
  color: #fff;
}

/* Responsive constraints */
@media (max-width: 1200px) {
  .talent-card-content {
    padding: 30px;
  }
}

@media (max-width: 992px) {
  .talent-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .talent-card-image {
    height: 280px;
  }
}
