.os-talents-section {
  width: 100%;
  background: #f7f7f7;
  padding: 30px 42px 90px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-family: inherit;
}

.os-talents-empty {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  color: #555555;
  font-size: 16px;
}

.os-talents-card {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  min-height: 430px;
  background: #ffffff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 58% 42%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease;
}

.os-talents-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.os-talents-card:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.os-talents-card.os-talent-status-acquired {
  opacity: 0;
}

.os-talents-card.os-talent-status-acquired.is-visible {
  opacity: 0.76;
}

.os-talents-content {
  padding: 58px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.os-talents-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.os-talents-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f8f8f8;
  color: #222222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}

.os-talents-status-badge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f3f3f3;
  color: #555555;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.os-talents-status-available {
  background: rgba(0, 166, 81, 0.1);
  color: #00a651;
}

.os-talents-content h3 {
  margin: 0;
  color: #111111;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -1.2px;
}

.os-talents-content p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #5a5a5a;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.os-talents-meta {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 18px 28px;
  margin-top: 46px;
  color: #686868;
  font-size: 18px;
  line-height: 1.2;
}

.os-talents-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.os-meta-icon {
  width: 21px;
  height: 21px;
  color: #777777;
  flex-shrink: 0;
}

.os-talents-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 40px 0;
}

.os-talents-image img {
  width: 100%;
  max-width: 460px;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.os-talents-image-placeholder {
  width: 100%;
  min-height: 300px;
  border: 1px dashed #d6d6d6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 15px;
  margin-bottom: 30px;
}

@media (max-width: 980px) {
  .os-talents-section {
    padding: 24px 24px 70px;
  }

  .os-talents-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .os-talents-content {
    padding: 42px 34px 20px;
  }

  .os-talents-content h3 {
    font-size: 30px;
  }

  .os-talents-content p {
    font-size: 18px;
  }

  .os-talents-meta {
    grid-template-columns: 1fr;
    gap: 14px;
    font-size: 16px;
    margin-top: 32px;
  }

  .os-talents-image {
    padding: 10px 30px 0;
  }

  .os-talents-image img {
    max-height: 360px;
  }
}

@media (max-width: 520px) {
  .os-talents-section {
    padding: 18px 18px 60px;
    gap: 22px;
  }

  .os-talents-card {
    border-radius: 18px;
  }

  .os-talents-content {
    padding: 34px 24px 16px;
  }

  .os-talents-number {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .os-talents-content h3 {
    font-size: 26px;
  }

  .os-talents-content p {
    font-size: 16px;
    line-height: 1.55;
  }

  .os-talents-image img {
    max-height: 300px;
  }
}

/* v1.0.3 Sticky stacked scroll effect */
.os-talents-section.os-talents-stack {
  gap: 0;
  padding-bottom: 140px;
  overflow: visible;
}

.os-talents-stack .os-talents-card {
  position: sticky;
  top: calc(var(--os-talents-sticky-top, 96px) + var(--os-card-offset, 0px));
  z-index: var(--os-card-z, 20);
  margin-bottom: 28px;
  opacity: 1;
  transform: none;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.055);
  will-change: transform;
}

.os-talents-stack .os-talents-card.is-visible {
  opacity: 1;
  transform: none;
}

.os-talents-stack .os-talents-card:hover {
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.085);
}

.os-talents-stack .os-talents-card.os-talent-status-acquired,
.os-talents-stack .os-talents-card.os-talent-status-acquired.is-visible {
  opacity: 1;
}

.os-talents-stack .os-talents-card:not(:last-child) {
  margin-bottom: 42px;
}

/* Better card proportion for the stacked section */
.os-talents-stack .os-talents-card {
  min-height: clamp(430px, 58vh, 640px);
}

.os-talents-stack .os-talents-content {
  padding: clamp(42px, 5vw, 76px) clamp(34px, 5vw, 70px);
}

.os-talents-stack .os-talents-image img {
  max-height: clamp(360px, 56vh, 620px);
}

@media (max-width: 980px) {
  .os-talents-section.os-talents-stack {
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 90px;
  }

  .os-talents-stack .os-talents-card {
    position: relative;
    top: auto;
    margin-bottom: 24px;
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .os-talents-section.os-talents-stack {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 70px;
  }
}

