/* Careers Hero Section - Specific Styling */

/* Hero Content for Careers Page */
.hero-content-careers {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 2000px) {
  .hero-content-careers {
    max-width: 1800px;
    margin: 0 auto;
  }
}

/* Hero Heading for Careers Page */
.hero-heading-careers {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 48px;
  line-height: 120%;
  color: var(--color-outline-button-text);
  margin-bottom: 10px;
  max-width: 900px;
}

/* Hero Description for Careers Page */
.hero-description-careers {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-b1-desktop);
  line-height: 150%;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
}

/* Hero Button Primary for Careers Page */
.hero-btn-primary-careers {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-outline-button-text);
  color: var(--color-text-primary);
  font-family: var(--font-family);
  font-size: var(--font-size-b1-desktop);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border-radius: 42px;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease,
    transform 0.2s ease;
  white-space: nowrap;
  border: none;
}

.hero-btn-primary-careers:hover {
  transform: translateY(-1px);
  color: var(--color-text-primary);
  background-color: #f0f0f0;
  cursor: pointer;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .hero-content-careers {
    padding: 100px 20px 60px;
  }

  .hero-heading-careers {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-description-careers {
    font-size: var(--font-size-b1-mobile);
    margin-bottom: 32px;
  }

  .hero-btn-primary-careers {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: var(--font-size-b2-mobile);
    text-align: center;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  /* Hero Content Section for Careers - Mobile */
  .hero-content-careers {
    position: absolute;
    top: 320px;
    left: 0;
    width: 100%;
    min-height: 220px;
    /* min-height: 360px; */
    background-color: var(--color-outline-button-text);
    padding: 0px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    z-index: 2;
  }

  .hero-heading-careers {
    font-size: 2rem;
    color: var(--color-text-primary-100);
    font-weight: var(--font-weight-regular);
    margin-bottom: 12px;
    /* max-width: 245px; */
  }

  .hero-description-careers {
    font-size: var(--font-size-b3-mobile);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-secondary-100);
    margin-bottom: 24px;
    line-height: 150%;
    /* max-width: 345px; */
  }

  .hero-btn-primary-careers {
    padding: 14px 24px;
    background-color: var(--color-text-primary-100);
    color: var(--color-outline-button-text);
    font-size: var(--font-size-b1-mobile);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    white-space: nowrap;
    border: none;
    width: 100%;
    text-align: center;
  }
}
