:root {
  --ink: #2f2925;
  --muted: #75675f;
  --line: rgba(78, 55, 42, .13);
  --brand: #c76031;
  --green: #8dae65;
  --paper: #fffaf6;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}
a { color: inherit; }
.shell { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.job-hero {
  padding: 44px 0 62px;
  background:
    radial-gradient(circle at 82% 12%, rgba(141,174,101,.22), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f8eee7 54%, #edf6ee 100%);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs b { color: var(--ink); font-weight: 400; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.08;
}
.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.meta-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.meta-row span {
  padding: 8px 12px;
  color: #58743c;
  background: rgba(141,174,101,.14);
  border: 1px solid rgba(141,174,101,.22);
  font-size: 13px;
}
.detail-layout {
  padding-top: 48px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}
.job-content {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
}
.job-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}
.job-content p:first-child,
.job-content p:first-child span,
.job-content p:first-child b {
  color: var(--ink) !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.35;
}
.job-content p:has(+ hr),
.job-content p:has(span) {
  position: relative;
}
.job-content hr {
  margin: 26px 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.job-content p,
.job-content span {
  font-family: inherit !important;
}
.job-content p:nth-of-type(n+2) {
  word-break: break-word;
}
.job-content b,
.job-content strong {
  color: var(--ink);
}
.job-content p:not(:first-child) b,
.job-content p:not(:first-child) span[style*="font-size:16px"] {
  font-size: 18px !important;
}
.job-content p:has(> b),
.job-content p:has(> span) {
  margin-bottom: 18px;
}
.apply-card {
  position: sticky;
  top: 24px;
  padding: 28px;
  color: #fff;
  background: #2f2925;
}
.apply-card h2 {
  margin: 0 0 16px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.35;
}
.apply-card p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}
.button {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.22);
}
.button.primary {
  color: #2f2925;
  background: #fff;
}
@media (max-width: 860px) {
  .job-hero { padding: 32px 0 42px; }
  .breadcrumbs { margin-bottom: 34px; }
  .detail-layout { grid-template-columns: 1fr; padding-top: 28px; }
  .job-content { padding: 26px 22px; }
  .apply-card { position: static; }
}
