/* =========================================================
   Section: For Employers Facing Workforce Complexity
            (.employer-cta)
   ========================================================= */
.employer-cta {
  background: var(--color-white);
  padding: 100px 100px;
}

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

.employer-cta__copy {
  width: 572px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.employer-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;
}
.employer-cta__title-accent {
  background-image: var(--gradient-orange);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .employer-cta__title-accent { color: var(--color-primary); -webkit-text-fill-color: currentColor; }
}

.employer-cta__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  font-size: 22px;
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: #1a1a1a;
}
.employer-cta__body p { margin: 0; }

.employer-cta__actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.employer-cta__actions .btn { min-width: 225px; }

/* Image side */
.employer-cta__visual {
  position: relative;
  width: 689px;
  height: 821px;
  flex-shrink: 0;
}
.employer-cta__bg {
  position: absolute;
  left: 229px;
  top: 0;
  width: 460px;
  height: 100%;
  background: #e2e9f4;
  border-radius: 0;
}
.employer-cta__image {
  position: absolute;
  inset: 66px 0 66px 6px;
  border-radius: 24px;
  overflow: hidden;
  background: #d9e1ee; /* placeholder while empty */
}
.employer-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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