/* Shared recruitment CTA. Source markup: code/current-static/partials/recruit-entry-cta.html */
.recruit-entry-cta {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #07101a;
  color: #ffffff;
  isolation: isolate;
}

.recruit-entry-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 84% 46%, rgba(245, 126, 53, 0.2), transparent 58%),
    radial-gradient(circle at 12% 24%, rgba(13, 111, 194, 0.18), transparent 54%),
    linear-gradient(104deg, #07101a 0%, #0a111b 48%, #1e1715 100%);
}

.recruit-entry-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 12, 22, 0.96) 0%, rgba(7, 12, 22, 0.88) 47%, rgba(31, 24, 22, 0.8) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 38%, rgba(0, 0, 0, 0.12) 100%);
}

.recruit-entry-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 64px;
  align-items: center;
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  padding: 104px 0 108px;
}

.recruit-entry-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.recruit-entry-cta__label::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  background: currentColor;
}

.recruit-entry-cta__copy h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.28;
}

.recruit-entry-cta__copy h2::after {
  content: none;
  display: none;
}

.recruit-entry-cta__copy p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 2;
}

.recruit-entry-cta__panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #111111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.recruit-entry-cta__panel h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.recruit-entry-cta__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 0 30px;
  border: 1px solid #d4d4d4;
  color: #111111;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  text-decoration: none;
  transition:
    background 240ms cubic-bezier(0.2, 0, 0, 1),
    border-color 240ms cubic-bezier(0.2, 0, 0, 1),
    color 240ms cubic-bezier(0.2, 0, 0, 1);
}

.recruit-entry-cta__button .arrow {
  flex: 0 0 auto;
  color: inherit;
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.recruit-entry-cta__button:hover .arrow {
  transform: translateX(4px);
}

.recruit-entry-cta__button--primary {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.recruit-entry-cta__button--primary:hover {
  background: #f57e35;
  border-color: #f57e35;
  color: #ffffff;
}

.recruit-entry-cta__button--secondary {
  background: #ffffff;
}

.recruit-entry-cta__button--secondary:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

@media (max-width: 1180px) {
  .recruit-entry-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .recruit-entry-cta__panel {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .recruit-entry-cta__inner {
    width: min(100% - 48px, 1200px);
    padding: 76px 0 80px;
  }

  .recruit-entry-cta__copy h2 {
    font-size: 29px;
    line-height: 1.34;
  }

  .recruit-entry-cta__copy p:last-child {
    font-size: 14px;
    line-height: 1.9;
  }

  .recruit-entry-cta__panel {
    padding: 24px;
  }

  .recruit-entry-cta__button {
    min-height: 58px;
    padding: 0 22px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .recruit-entry-cta__inner {
    width: min(100% - 36px, 1200px);
  }

  .recruit-entry-cta__copy h2 {
    font-size: 26px;
  }
}
