/* Career page hero - Figma node 1242:5411 */

.careerpage-hero {
  background: #f5f8fb; /* no matching Figma token - matches other page-hero backgrounds */
  padding: 80px 0;
  overflow: hidden;
}

.careerpage-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.careerpage-hero__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 636px;
}

.careerpage-hero__badge {
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  background: rgba(49, 49, 223, 0.02); /* no matching Figma token */
  border: 1px solid #3131df; /* no matching Figma token */
  border-radius: 29px;
  padding: 13px 18px;
  margin-bottom: 4px;
}

.careerpage-hero__badge img {
  width: 18px;
  height: 18px;
}

.careerpage-hero__badge span {
  font-size: 16px;
  color: var(--primary-blue);
}

.careerpage-hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1.92px; /* no matching Figma token */
  color: var(--grey-dark-charcoal);
}

.careerpage-hero__subtitle {
  font-size: 18px;
  line-height: 1.25;
  color: var(--grey-medium-dark-grey);
  max-width: 636px;
}

.careerpage-hero__visual {
  flex-shrink: 0;
  width: 662px;
  max-width: 46vw;
}

.careerpage-hero__visual img {
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .careerpage-hero__title {
    font-size: 48px;
  }
}

@media (max-width: 1023px) {
  .careerpage-hero {
    padding: 56px 0;
  }

  .careerpage-hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .careerpage-hero__text {
    max-width: none;
    align-items: center;
  }

  .careerpage-hero__badge {
    align-self: center;
  }

  .careerpage-hero__visual {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 639px) {
  .careerpage-hero__title {
    font-size: 34px;
    letter-spacing: -0.9px;
  }

  .careerpage-hero__subtitle {
    font-size: 16px;
  }
}
