/* =========================================================
   Employers — Let's Solve Your Workforce Challenges CTA
   (.workforce-cta)
   ========================================================= */
.workforce-cta {
  position: relative;
  background: var(--color-white);
  padding: 140px 100px;
  overflow: hidden;
}

/* Faint inverted grid */
.workforce-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208, 213, 221, .32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 213, 221, .32) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.workforce-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.workforce-cta__title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 80px;
  font-weight: var(--fw-medium);
  line-height: 1.1;
  letter-spacing: -0.06em;
  color: #1a1a1a;
  font-variation-settings: 'opsz' 32;
}
.workforce-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)) {
  .workforce-cta__title-accent { color: var(--color-secondary); -webkit-text-fill-color: currentColor; }
}

.workforce-cta__subtitle {
  margin: 0;
  max-width: 620px;
  font-size: var(--fs-body-md);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: #525252;
}

.workforce-cta__actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.workforce-cta__actions .btn { min-width: 220px; }

/* Responsive */
@media (max-width: 1024px) {
  .workforce-cta { padding: 100px 40px; }
  .workforce-cta__title { font-size: 60px; }
}
@media (max-width: 768px) {
  .workforce-cta { padding: 64px 20px; }
  .workforce-cta__title { font-size: 38px; letter-spacing: -0.04em; }
  .workforce-cta__actions { width: 100%; flex-direction: column; align-items: stretch; }
  .workforce-cta__actions .btn { width: 100%; min-width: 0; }
}
