/* Careers detail pages — reuse styles.css for tokens, header, fonts and
   buttons; this file only adds the article layout specific to these pages. */

body {
  background: var(--bg);
}

.job-article {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}

.job-title {
  margin: 0 0 0.8rem;
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  letter-spacing: -0.01em;
  background-image: linear-gradient(90deg, #1e2e6e 0%, #22548a 30%, #1c6e96 55%, #29d0e0 78%, #d8f3fb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.job-meta {
  margin: 0 0 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.job-article p.job-lead {
  margin: 0 0 2rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.4;
  color: #25b5ce;
}

.job-article p {
  margin: 0 0 1.7rem;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.job-article p strong,
.job-article li strong {
  font-weight: 600;
  color: var(--ink);
}

.job-article h2 {
  margin: 3.6rem 0 1.4rem;
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.job-article h3 {
  margin: 1.8rem 0 1rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.job-article h4 {
  margin: 1.4rem 0 0.7rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  color: #25b5ce;
}

.job-article ul {
  margin: 0 0 1.8rem;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.job-article li {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.job-apply {
  margin-top: 3.2rem;
}

.job-apply-heading {
  margin: 0 0 0.6rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}

.job-apply-text {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink-soft);
}

.job-apply-link {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.1rem 0;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.job-apply-link:hover {
  color: #25b5ce;
  border-color: #25b5ce;
}
