/* =========================================================
   Section: For Candidates Seeking Global Opportunities
            (.candidate-cta)  — image LEFT, copy RIGHT
   ========================================================= */
.candidate-cta {
  background: var(--color-white);
  padding: 100px 100px;
}

.candidate-cta__inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.candidate-cta__visual {
  position: relative;
  width: 689px;
  height: 821px;
  flex-shrink: 0;
}
.candidate-cta__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 460px;
  height: 100%;
  background: #e2e9f4;
}
.candidate-cta__image {
  position: absolute;
  inset: 66px 0 66px 80px;
  border-radius: 24px;
  overflow: hidden;
  background: #d9e1ee;
}
.candidate-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.candidate-cta__copy {
  width: 572px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.candidate-cta__title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 80px;
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: -0.06em;
  color: #1a1a1a;
  font-variation-settings: 'opsz' 32;
}
.candidate-cta__title-accent {
  background-image: var(--gradient-blue);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .candidate-cta__title-accent { color: var(--color-secondary); -webkit-text-fill-color: currentColor; }
}

.candidate-cta__body {
  margin: 0;
  font-size: 22px;
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: #1a1a1a;
}

.candidate-cta__actions { display: flex; }
.candidate-cta__actions .btn { min-width: 274px; }

/* Responsive */
@media (max-width: 1240px) {
  .candidate-cta { padding: 80px 40px; }
  .candidate-cta__inner { gap: 48px; }
  .candidate-cta__title { font-size: 60px; }
  .candidate-cta__copy { width: auto; flex: 1; min-width: 0; }
  .candidate-cta__visual { width: 480px; height: 620px; }
  .candidate-cta__bg { width: 340px; }
  .candidate-cta__image { inset: 50px 0 50px 60px; }
}

@media (max-width: 1024px) {
  .candidate-cta__inner { flex-direction: column-reverse; align-items: flex-start; }
  .candidate-cta__copy { width: 100%; }
  .candidate-cta__visual { width: 100%; max-width: 600px; height: 500px; align-self: center; }
  .candidate-cta__bg { width: 60%; }
  .candidate-cta__image { inset: 50px 30px 50px 60px; }
}

@media (max-width: 768px) {
  .candidate-cta { padding: 64px 20px; }
  .candidate-cta__title { font-size: 40px; letter-spacing: -0.04em; }
  .candidate-cta__body  { font-size: 16px; }
  .candidate-cta__actions .btn { width: 100%; min-width: 0; }
  .candidate-cta__visual { height: 380px; }
}
