html, body {
  overflow: hidden;
  height: 100%;
  background: #000;
}

.careers-stage {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 64px;
  box-sizing: border-box;
}

.logo-link {
  display: inline-block;
  line-height: 0;
}

.careers {
  max-width: 640px;
  width: 100%;
  color: #fff;
}

.careers-title {
  font-family: "Ov Cotin", serif;
  font-weight: 400;
  font-size: clamp(32px, 5vh, 44px);
  letter-spacing: 0.02em;
  margin: 0 0 clamp(24px, 3vh, 36px) 0;
  color: #fff;
  line-height: 1;
}

.careers-body {
  font-family: "Sk Modernist", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.85vh, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.careers-body p {
  margin: 0 0 1.1em 0;
}

.careers-body p:last-child {
  margin-bottom: 0;
}

.careers-body a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.careers-body a:hover {
  opacity: 0.75;
}

@media (max-width: 540px) {
  .careers-stage {
    padding: 80px 24px;
  }
  .careers-title {
    font-size: clamp(28px, 4.5vh, 36px);
  }
  .careers-body {
    font-size: clamp(13px, 1.7vh, 15px);
  }
}
