@charset "UTF-8";
/* ============================================
   Partner Recruitment Page Styles
   ============================================ */

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
  background-color: var(--color-bg-white);
  padding: var(--spacing-xl) var(--spacing-6xl) var(--spacing-6xl);
}

.hero__inner {
  max-width: 100%;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
}

.hero__text {
  max-width: 694px;
}

.hero__title {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
}

.hero__description {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-top: 50px;
  max-width: 709px;
}

.hero__image {
  flex-shrink: 0;
}

.hero__image img {
  width: 427px;
  height: auto;
}

/* ----------------------------------------
   Title
   ---------------------------------------- */

h2.wp-block-heading {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: 24px;
}


/* ----------------------------------------
   Form Section
   ---------------------------------------- */
.form-section {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-6xl);
}

.form-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 875px;
  margin: 0 auto;
}

.form-section__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  width: 100%;
}

.form-section__lead {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-white);
  margin-bottom: var(--spacing-4xl);
}

.form-section__note {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-white);
}

.form-section__form {
  background-color: var(--color-border);
  width: 834px;
  max-width: 100%;
  height: 1207px;
}

.form-section__form iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   Responsive - Tablet (max-width: 840px)
   ============================================ */
@media screen and (max-width: 840px) {
  /* Hero */
  .hero {
    padding: var(--spacing-xl) var(--spacing-4xl) var(--spacing-4xl);
  }

  .hero__text {
    max-width: 464px;
  }

  .hero__title {
    font-size: var(--font-size-4xl);
  }

  .hero__description {
    font-size: var(--font-size-lg);
    margin-top: var(--spacing-xl);
  }

  .hero__image img {
    width: 226px;
  }

  /* Form Section */
  .form-section {
    padding: var(--spacing-2xl);
  }

  .form-section__lead {
    font-size: var(--font-size-lg);
  }

  .form-section__note {
    font-size: var(--font-size-lg);
  }

  .form-section__form {
    height: 1193px;
  }
}

/* ============================================
   Responsive - Mobile (max-width: 540px)
   ============================================ */
@media screen and (max-width: 540px) {
  /* Hero */
  .hero {
    padding: var(--spacing-xl) var(--spacing-4xl) var(--spacing-4xl);
  }

  .hero__text {
    max-width: 215px;
  }

  .hero__title {
    font-size: var(--font-size-lg);
  }

  .hero__description {
    font-size: var(--font-size-xs);
    margin-top: var(--spacing-sm);
  }

  .hero__image img {
    width: 105px;
  }

  /* Form Section */
  .form-section {
    padding: var(--spacing-2xl);
  }

  .form-section__lead {
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-sm);
  }

  .form-section__note {
    font-size: var(--font-size-xs);
  }

  .form-section__form {
    height: 1188px;
  }
}
