/* Recruitment Process intro — base 1920px, scales via media queries */

.proc-intro {
  width: 100%;
  max-width: var(--syncare-design-width, 1920px);
  margin: 0 auto;
  padding: 120px var(--syncare-section-padding, 150px) 90px;
  background: #ffffff;
  box-sizing: border-box;
}

.proc-intro__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.proc-intro__eyebrow {
  margin: 0 0 16px;
  text-align: center;
  font: normal normal 500 36px/36px Montserrat, sans-serif;
  letter-spacing: 0.29px;
  color: #479ec7;
}

.proc-intro__heading {
  margin: 0 0 48px;
  text-align: center;
  font: normal normal bold 60px/72px Montserrat, sans-serif;
  letter-spacing: 3px;
  color: #274760;
}

.proc-intro__text {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
  font: normal normal normal 16px/28px Montserrat, sans-serif;
  letter-spacing: 0.13px;
  color: #274760;
}

/* ── ≤1600px ── */
@media (max-width: 1600px) {
  .proc-intro {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .proc-intro__heading {
    margin-bottom: 40px;
  }
}

/* ── ≤1440px ── */
@media (max-width: 1440px) {
  .proc-intro {
    padding-top: 90px;
    padding-bottom: 72px;
  }

  .proc-intro__eyebrow {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: 0.2px;
  }

  .proc-intro__heading {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 36px;
  }

  .proc-intro__text {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ── ≤1200px ── */
@media (max-width: 1200px) {
  .proc-intro__heading {
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
  }

  .proc-intro__eyebrow {
    font-size: 24px;
  }
}

/* ── ≤900px ── */
@media (max-width: 900px) {
  .proc-intro {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .proc-intro__eyebrow {
    font-size: 22px;
    line-height: 1.2;
  }

  .proc-intro__heading {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
  }

  .proc-intro__text {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ── ≤575px ── */
@media (max-width: 575px) {
  .proc-intro {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .proc-intro__eyebrow {
    font-size: 20px;
  }

  .proc-intro__heading {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .proc-intro__text {
    font-size: 15px;
    line-height: 1.55;
  }
}
