/* Public jobs site on top of /shared/ui.css */
.jobs-site { display: flex; flex-direction: column; min-height: 100vh; }
.site-header { display: flex; align-items: center; gap: 14px; padding: 16px 24px; background: var(--surface); border-bottom: 1px solid var(--border); }
.site-header .brand { font-size: 16px; }
.tagline { color: var(--muted); font-size: 13px; padding-left: 14px; border-left: 1px solid var(--border); }
.site-main { flex: 1; width: 100%; max-width: 860px; margin: 0 auto; padding: 36px 24px 56px; }
.site-footer { display: flex; justify-content: center; gap: 18px; padding: 22px 16px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--border); }
.site-footer a { color: var(--muted); }

.hero { margin-bottom: 26px; }
.hero h1 { font-size: 32px; letter-spacing: -0.02em; }
.hero p { color: var(--text-2); font-size: 16px; margin-top: 6px; max-width: 560px; }

.job-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.job-list .empty { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; color: var(--muted); text-align: center; }
.job-row { display: grid; gap: 4px; padding: 18px 20px; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); color: var(--text); text-decoration: none; border: 1px solid transparent; }
.job-row:hover { text-decoration: none; border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.job-title { font-size: 16.5px; font-weight: 600; }
.job-company { color: var(--text-2); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

.panel.narrow { max-width: 680px; margin: 0 auto; }
.panel.center { text-align: center; }
.panel.center p { margin-top: 10px; }
.panel.job h1 { font-size: 28px; letter-spacing: -0.02em; margin-top: 6px; }
.eyebrow { font-size: 13px; margin-bottom: 6px; }
.eyebrow a { color: var(--muted); }
.job-body { margin: 22px 0 26px; line-height: 1.65; color: var(--text); }
.job-body p + p, .job-body ul + p, .job-body p + ul { margin-top: 12px; }
.job-body ul { padding-left: 20px; }
.job-body h2, .job-body h3 { margin: 20px 0 8px; }
.panel.narrow h1 + .muted { margin: 6px 0 18px; }

.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { min-height: 65px; }
#apply button[type="submit"] { justify-self: start; }
#apply button[disabled] { opacity: .6; cursor: progress; }

.prose { line-height: 1.65; }
.prose h1 { margin-bottom: 12px; }
.prose h2 { margin: 22px 0 8px; font-size: 17px; }
.prose p, .prose ul { margin-top: 10px; }
.prose ul { padding-left: 20px; }

@media (max-width: 640px) {
  .site-header { padding: 14px 16px; }
  .tagline { display: none; }
  .site-main { padding: 22px 16px 40px; }
  .hero h1 { font-size: 26px; }
  .job-row { padding: 16px; }
}
.lang-switch { margin-left: auto; font-size: 13px; color: var(--text-2); border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px; text-decoration: none; }
.lang-switch:hover { background: var(--hover); text-decoration: none; }
.guide .table-wrap { margin: 14px 0; }
.guide .card-outline { margin: 18px 0; }
@media print {
  .site-header .lang-switch, .site-footer, .guide .card-outline { display: none; }
  .panel { box-shadow: none; }
}
