@font-face {
  font-family: 'Robelly';
  src: url('/assets/fonts/Robelly-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f7f7;
  --text: #101010;
  --muted: #666;
  --primary: #111;
  --card: #fff;
  --border: #e5e5e5;
  --border-strong: #d8d8d8;
  --success: #0f7a3f;
  --error: #a62020;
  --highlight: #edf9f1;
  --logo-jobs: rgb(31, 166, 95);
  --card-radius: 14px;
  --card-padding: 14px;
  --shadow-card-soft: 0 8px 24px rgba(16, 16, 16, 0.04);
  --shadow-card-raised: 0 12px 30px rgba(16, 16, 16, 0.05);
  --shadow-card-strong: 0 12px 32px rgba(16, 16, 16, 0.06);
  --shadow-card-hover: 0 14px 34px rgba(16, 16, 16, 0.07);
  --shadow-card-highlight: 0 12px 30px rgba(31, 166, 95, 0.16);
  --card-highlight-bg: linear-gradient(180deg, #fbfffc 0%, var(--highlight) 100%);
  --card-highlight-border: #b7e3c8;
}

* { box-sizing: border-box; }
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 94vw); margin: 0 auto; }
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.topbar-inner {
  display: flex; gap: 10px; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  height: 37px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: 'Robelly', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.logo-wordmark--header {
  font-size: clamp(1.34rem, 2.95vw, 1.72rem);
}
.logo-wordmark--footer {
  font-size: 1rem;
}
.logo-hospo {
  color: #000;
}
.logo-jobs {
  color: var(--logo-jobs);
}
.logo-dot {
  color: #000;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
  padding: 26px 16px 30px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.footer-sep {
  color: var(--muted);
  opacity: 0.55;
}
.footer-tagline {
  color: var(--muted);
  line-height: 1.45;
}
.footer-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-card {
  padding: 22px;
  box-shadow: var(--shadow-card-raised);
}
.legal-hero {
  margin-bottom: 18px;
}
.legal-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-intro {
  margin: 0;
  max-width: 70ch;
  color: #343434;
  line-height: 1.6;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.legal-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fafafa;
  color: #222;
  text-decoration: none;
  font-size: 13px;
}
.legal-section {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.legal-section h2,
.legal-section h3 {
  margin-top: 0;
}
.legal-section h2 {
  margin-bottom: 10px;
  font-size: 20px;
}
.legal-section h3 {
  margin-bottom: 8px;
  font-size: 16px;
}
.legal-section p {
  margin: 0 0 12px;
  line-height: 1.65;
}
.legal-list {
  margin: 0 0 12px 18px;
  padding: 0;
}
.legal-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.legal-section-last {
  padding-bottom: 0;
}
@media (max-width: 719px) {
  .footer {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 24px 20px 30px;
  }
  .footer-sep {
    display: none;
  }
  .logo-wordmark--footer {
    font-size: 1.12rem;
  }
  .footer-tagline {
    max-width: 280px;
    font-size: 14px;
    line-height: 1.5;
  }
  .legal-card {
    padding: 18px;
  }
  .legal-nav {
    gap: 8px;
  }
  .legal-nav a {
    width: 100%;
    justify-content: center;
  }
}
.nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.nav-label {
  display: inline;
}
.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}
.btn .fa-solid,
.btn .fa-regular,
button .fa-solid,
button .fa-regular {
  flex-shrink: 0;
}
.nav form {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.btn.secondary, button.secondary { background: #fff; color: var(--text); }
.btn.linklike { padding: 0; border: 0; background: none; color: #0a58ca; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

/* Page publique : une carte par ligne, pleine largeur du conteneur */
.public-job-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  margin-top: 22px;
}
.public-filter-card {
  margin-top: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-card-soft);
}
.public-filter-card[open] {
  padding-bottom: 16px;
}
.public-filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}
.public-filter-summary::-webkit-details-marker {
  display: none;
}
.public-filter-summary-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.public-filter-summary-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1e1e1e;
}
.public-filter-summary-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.public-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fcfcfc;
  color: #444;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.public-filter-chip-clear {
  background: #fff;
}

.admin-switch-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(31, 166, 95, 0.1), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
  box-shadow: var(--shadow-card-soft);
  cursor: pointer;
}
.admin-switch-copy {
  display: grid;
  gap: 6px;
}
.admin-switch-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #111;
}
.admin-switch-control {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}
.admin-switch-control input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.admin-switch-slider {
  position: relative;
  width: 64px;
  height: 36px;
  border-radius: 999px;
  background: #d5d9de;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: inset 0 1px 4px rgba(16, 16, 16, 0.08);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.admin-switch-slider::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(16, 16, 16, 0.16);
  transition: transform 0.22s ease;
}
.admin-switch-control input:checked + .admin-switch-slider {
  background: linear-gradient(135deg, #0f7a3f 0%, #1fa65f 100%);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.18), 0 8px 20px rgba(31, 166, 95, 0.2);
}
.admin-switch-control input:checked + .admin-switch-slider::after {
  transform: translateX(28px);
}
.admin-switch-control input:focus-visible + .admin-switch-slider {
  outline: 3px solid rgba(31, 166, 95, 0.22);
  outline-offset: 3px;
}

.maintenance-body {
  min-height: 100dvh;
  height: 100dvh;
  background:
    radial-gradient(circle at top left, rgba(31, 166, 95, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 198, 92, 0.18), transparent 28%),
    linear-gradient(180deg, #0f1720 0%, #162331 42%, #0d141c 100%);
  color: #fff;
  overflow: hidden;
}
.maintenance-shell {
  min-height: 100dvh;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}
.maintenance-card {
  position: relative;
  overflow: hidden;
  width: min(760px, 100%);
  padding: 32px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}
.maintenance-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}
.maintenance-glow-a {
  width: 240px;
  height: 240px;
  top: -72px;
  left: -86px;
  background: rgba(31, 166, 95, 0.22);
}
.maintenance-glow-b {
  width: 220px;
  height: 220px;
  right: -92px;
  bottom: -82px;
  background: rgba(255, 196, 87, 0.18);
}
.maintenance-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 16, 24, 0.4);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.maintenance-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1fa65f;
  box-shadow: 0 0 0 5px rgba(31, 166, 95, 0.14);
}
.maintenance-brand {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin-top: 26px;
  text-align: center;
}
.maintenance-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.maintenance-lead {
  position: relative;
  z-index: 1;
  margin: 18px auto 0;
  max-width: 26ch;
  text-align: center;
  font-size: clamp(1.1rem, 2.4vw, 1.38rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}
.maintenance-copy {
  position: relative;
  z-index: 1;
  margin: 14px auto 0;
  max-width: 52ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}
.maintenance-signoff {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  text-align: center;
  font-size: 1.08rem;
  font-weight: 700;
}
.maintenance-signoff span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 500;
}

@media (max-width: 719px) {
  .admin-switch-card {
    align-items: flex-start;
    padding: 15px;
  }
  .maintenance-shell {
    padding: 14px 12px;
  }
  .maintenance-card {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .maintenance-brand {
    margin-top: 22px;
    gap: 12px;
  }
}
.public-filter-summary-caret {
  color: #5d5d5d;
  transition: transform .16s ease;
  flex-shrink: 0;
}
.public-filter-card[open] .public-filter-summary-caret {
  transform: rotate(180deg);
}
.public-filter-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.public-filter-main {
  display: grid;
  gap: 10px;
}
.public-filter-field {
  display: grid;
  gap: 6px;
}
.public-filter-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #5f5f5f;
}
.public-filter-field select {
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 12px;
  border-color: #ddd;
  font-size: 15px;
  background: #fcfcfc;
}
.public-filter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.public-filter-count {
  color: #5d5d5d;
  font-size: 13px;
  font-weight: 600;
}
.section-separator {
  width: min(140px, calc(100% - 72px));
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, rgba(16,16,16,0), rgba(16,16,16,0.14), rgba(16,16,16,0));
}
.public-empty-card {
  margin-top: 20px;
}
.job-card--listing {
  display: grid;
  gap: 18px;
  align-items: start;
  grid-template-columns: 1fr;
  padding: 18px;
}
.job-card-listing-main {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}
.job-card-listing-logo {
  width: 64px;
  min-width: 64px;
}
.job-card-listing-body {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.job-card-listing-titles {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.job-card-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: var(--accent);
  font-size: 0.9em;
  transform: rotate(-18deg);
  vertical-align: middle;
}
.job-card-listing-details {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.company-logo--listing {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(16, 16, 16, 0.06);
}
.job-card-listing-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  justify-content: flex-start;
}
.job-card-company {
  margin: 2px 0 0;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.job-card-published {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}
.job-card-published .fa-solid,
.job-card-published .fa-regular {
  color: #575757;
  flex-shrink: 0;
}
.job-card-meta--listing {
  gap: 8px;
  margin-top: 4px;
}
.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
}
.job-meta-item .fa-solid,
.job-meta-item .fa-regular {
  color: #575757;
  flex-shrink: 0;
}
.job-meta-item-category {
  color: #222;
  font-weight: 700;
}
.job-meta-emoji {
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}
.tags--listing {
  margin-top: 6px;
  gap: 6px;
}
.tags--listing .tag {
  border-color: #ececec;
  background: #fafafa;
  color: #666;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  box-shadow: none;
}
.job-cta--listing {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
}
.job-cta--listing:hover {
  transform: translateY(-1px);
}
.card-surface {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}
.card-elevated {
  box-shadow: var(--shadow-card-raised);
}
.card-strong {
  box-shadow: var(--shadow-card-strong);
}
.card-featured {
  background: var(--card-highlight-bg);
  border-color: var(--card-highlight-border);
  box-shadow: var(--shadow-card-highlight);
}
.card-interactive {
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card-interactive:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-strong);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card-soft);
}
.auth-card {
  width: 100%;
  margin: 0 auto;
  padding: 18px;
  box-shadow: var(--shadow-card-strong);
}
.auth-actions {
  align-items: stretch;
}
.auth-actions > * {
  width: 100%;
}
.card.full-width { width: 100%; }
.card.highlight {
  background: var(--card-highlight-bg);
  border-color: var(--card-highlight-border);
  box-shadow: var(--shadow-card-highlight);
}
.job-card--listing.highlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(96, 211, 142, 0.18) 0, rgba(96, 211, 142, 0.08) 18%, rgba(96, 211, 142, 0) 42%),
    linear-gradient(180deg, #fcfffd 0%, #f1fbf4 100%);
  border-color: #a8dbbb;
  box-shadow:
    0 14px 34px rgba(31, 166, 95, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.job-card--listing.highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #69cf8f 0%, var(--logo-jobs) 100%);
}
.job-card--listing.highlight .job-card-listing-aside {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 251, 244, 0.98) 100%);
}
.job-card--listing.highlight .job-cta--listing {
  box-shadow: 0 12px 24px rgba(16, 16, 16, 0.12);
}
.job-cta--featured {
  border-color: #7bc79a;
  background:
    linear-gradient(135deg, #f4fcf7 0%, #d9f3e3 52%, #b8e5c9 100%);
  color: #155332;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow:
    0 10px 22px rgba(31, 166, 95, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform-origin: 50% 70%;
  animation: featured-cta-wiggle 6.2s ease-in-out infinite;
}
.job-cta--featured::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -12%;
  width: 34%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 48%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-220%) rotate(18deg);
  animation: featured-cta-shine 5.2s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.75;
}
.job-cta--featured:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 14px 26px rgba(31, 166, 95, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  filter: none;
}
.job-cta--featured:focus-visible {
  outline: 3px solid rgba(106, 207, 143, 0.35);
  outline-offset: 2px;
}
.job-card--listing.highlight .company-logo--listing {
  transform-origin: 50% 60%;
  animation: highlight-logo-jiggle 5.8s ease-in-out infinite;
}
.public-job-list > .job-card--listing.highlight:nth-child(2n) .company-logo--listing {
  animation-duration: 6.6s;
  animation-delay: -1.4s;
}
.public-job-list > .job-card--listing.highlight:nth-child(3n) .company-logo--listing {
  animation-duration: 7.2s;
  animation-delay: -2.1s;
}
.job-card--listing.highlight .tags--listing .tag {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(106, 207, 143, 0.45);
}
@keyframes highlight-logo-jiggle {
  0%, 100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  3% {
    transform: rotate(-2.2deg) translate3d(-1px, 0, 0);
  }
  5.5% {
    transform: rotate(2deg) translate3d(1px, -1px, 0);
  }
  7.5% {
    transform: rotate(-1.5deg) translate3d(-1px, 1px, 0);
  }
  10% {
    transform: rotate(0.8deg) translate3d(0, 0, 0);
  }
  12%, 62% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  65% {
    transform: rotate(1.4deg) translate3d(1px, 0, 0);
  }
  67.5% {
    transform: rotate(-1.8deg) translate3d(-1px, 1px, 0);
  }
  70% {
    transform: rotate(1.1deg) translate3d(1px, -1px, 0);
  }
  73% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes featured-cta-wiggle {
  0%, 100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  4% {
    transform: rotate(-0.9deg) translate3d(-1px, 0, 0);
  }
  7% {
    transform: rotate(0.9deg) translate3d(1px, -1px, 0);
  }
  10% {
    transform: rotate(-0.6deg) translate3d(-1px, 0, 0);
  }
  13%, 68% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  71% {
    transform: rotate(0.75deg) translate3d(1px, 0, 0);
  }
  74% {
    transform: rotate(-0.85deg) translate3d(-1px, 1px, 0);
  }
  77% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes featured-cta-shine {
  0%, 18%, 100% {
    transform: translateX(-220%) rotate(18deg);
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  36% {
    transform: translateX(420%) rotate(18deg);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .job-card--listing.highlight .company-logo--listing,
  .job-cta--featured,
  .job-cta--featured::after {
    animation: none;
  }
  .job-cta--featured,
  .job-cta--listing:hover,
  .job-cta--featured:hover {
    transform: none;
  }
}
.hero-card {
  position: relative;
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-card-raised);
}
.hero-card .section-head {
  margin-bottom: 0;
  padding-right: 48px;
}
.hero-card-head {
  align-items: center;
}
.hero-card .title {
  font-size: 24px;
  margin: 0;
}
.hero-card .muted {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.hero-card-body {
  margin-top: 8px;
}
.hero-card.is-collapsed {
  padding-bottom: 16px;
}
.hero-card.is-collapsed .hero-card-body {
  display: none;
}
.podcast-card {
  padding: 18px;
  box-shadow: var(--shadow-card-raised);
  margin-top: 30px !important;
  position: relative;
}
.podcast-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(140px, calc(100% - 72px));
  height: 1px;
  background: linear-gradient(90deg, rgba(16,16,16,0), rgba(16,16,16,0.14), rgba(16,16,16,0));
}
.podcast-card-grid {
  display: grid;
  gap: 18px;
}
.podcast-card-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}
.podcast-card-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}
.podcast-card-lead {
  margin: 0;
  max-width: 34ch;
  font-size: 18px;
  line-height: 1.45;
  color: #2b2b2b;
}
.podcast-card-copy .muted {
  margin: 0;
  font-size: 15px;
}
.podcast-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.podcast-card-cta {
  justify-self: start;
}
.podcast-embed-wrap {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}
.podcast-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-card-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: #666;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.hero-card-toggle:hover {
  background: #f7f7f7;
  border-color: var(--border-strong);
  color: #222;
}
.hero-card-toggle-closed {
  display: none;
}
.hero-card.is-collapsed .hero-card-toggle-open {
  display: none;
}
.hero-card.is-collapsed .hero-card-toggle-closed {
  display: inline-flex;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.filter-bar {
  padding-top: 4px;
}
.job-card {
  display: grid;
  gap: 12px;
  height: 100%;
  box-shadow: var(--shadow-card-soft);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.job-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-strong);
}
.job-card.job-card--listing {
  height: auto;
}
.muted { color: var(--muted); font-size: 13px; }
.title { margin: 0 0 4px; font-size: 21px; }
.company-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.company-inline.align-start { align-items: flex-start; }
.company-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  flex: 0 0 42px;
}
.company-logo-large {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
}
.company-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #444;
  background: #f3f3f3;
}
.job-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}
.category-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  background: #fff;
}
.job-card-title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.job-excerpt {
  margin: 0;
  color: #353535;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-card--listing .job-excerpt {
  -webkit-line-clamp: 4;
}
.job-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  width: 100%;
}
.tag {
  box-shadow: 0 1px 2px rgba(16, 16, 16, 0.03);
}

@media (min-width: 720px) {
  .public-filter-form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
  }
  .public-filter-main {
    grid-template-columns: repeat(2, minmax(0, 220px));
    gap: 12px;
  }
  .public-filter-actions {
    justify-content: flex-end;
    align-self: end;
  }
  .job-card--listing {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
    gap: 22px;
    align-items: start;
  }
  .company-logo--listing {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
  .job-card-listing-aside {
    align-items: flex-end;
    justify-content: flex-start;
    border-left: 1px solid var(--border);
    padding-left: 20px;
    margin-left: 0;
  }
  .job-cta--listing {
    width: auto;
    min-width: 170px;
    align-self: flex-start;
  }
}
@media (min-width: 980px) {
  .job-card--listing {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 220px);
    gap: 18px;
    align-items: center;
    padding: 16px 20px;
  }
  .job-card--listing .job-card-title {
    font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  }
  .job-card-listing-main {
    align-items: center;
    gap: 18px;
  }
  .job-card-listing-body {
    grid-template-columns: minmax(280px, 1.2fr) minmax(320px, 1fr);
    gap: 18px 30px;
    align-items: center;
  }
  .job-card-listing-details {
    gap: 10px;
    align-content: center;
  }
  .job-card-meta--listing {
    margin-top: 0;
  }
  .tags--listing {
    margin-top: 0;
  }
  .job-card-listing-aside {
    justify-content: center;
    align-self: stretch;
    padding-left: 18px;
  }
  .job-cta--listing {
    align-self: center;
  }
}
@media (max-width: 719px) {
  .public-filter-actions {
    flex-wrap: wrap;
  }
  .public-filter-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .public-filter-summary-main {
    width: 100%;
    justify-content: space-between;
  }
  .public-filter-summary-tags {
    grid-column: 1 / -1;
    width: 100%;
  }
  .public-filter-actions noscript button {
    width: 100%;
    justify-content: center;
  }
  .password-strength-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .job-card--listing {
    padding: 16px;
  }
  .job-card-listing-main {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }
  .company-logo--listing {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .job-card-title {
    font-size: 1.25rem;
  }
  .job-card-listing-aside {
    padding-top: 4px;
  }
  .job-card-published,
  .job-meta-item {
    font-size: 13px;
  }
}
.job-detail-hero {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-bottom: 16px;
}
.job-detail-hero-logo {
  width: 96px;
  min-width: 96px;
}
.job-detail-hero-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.job-detail-logo {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(16, 16, 16, 0.08);
}
.job-detail-title {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 5.4vw, 1.9rem);
  line-height: 1.08;
}
.job-detail-hero-body .job-card-company {
  margin: 0;
}
.job-detail-hero-body .job-card-meta--listing {
  margin-top: 2px;
  gap: 6px 10px;
}
.job-detail-address {
  margin: 2px 0 0;
  font-size: 13px;
}
.job-detail-tags {
  margin-top: 10px;
}
.job-detail-section {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.job-detail-section-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fcfcfc;
}
.job-detail-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.job-detail-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: #333;
  flex-shrink: 0;
}
.job-detail-section h2 {
  margin: 0;
  font-size: 17px;
}
.job-detail-copy {
  margin: 0;
  color: #2f2f2f;
  line-height: 1.7;
}
.job-detail-inline-cta {
  justify-self: flex-start;
}
.job-detail-cta-row {
  margin-top: 20px;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tag {
  display: inline-block;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  text-transform: uppercase;
}
.flash {
  margin: 12px 0; padding: 11px;
  border-radius: 10px; border: 1px solid var(--border);
  background: #fff;
}
.flash.success { border-color: #9ce3b8; color: var(--success); }
.flash.error { border-color: #efb0b0; color: var(--error); }
.form-row { display: grid; gap: 6px; margin-bottom: 10px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  background: #fff;
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 48px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.password-toggle:hover {
  background: rgba(17, 17, 17, 0.05);
  color: #111;
}
.password-strength {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fafafa;
}
.password-strength-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.password-strength-head strong {
  font-size: 14px;
}
.password-strength-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #efefef;
  color: #444;
  font-size: 12px;
  font-weight: 700;
}
.password-strength-meter {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e8e8;
}
.password-strength-meter-bar {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: #bdbdbd;
  transition: width .18s ease, background-color .18s ease;
}
.password-strength-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.password-strength-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 13px;
}
.password-strength-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c6c6c6;
  flex-shrink: 0;
}
.password-strength-list li[data-rule-passed="true"] {
  color: #1f6b3b;
}
.password-strength-list li[data-rule-passed="true"]::before {
  background: #1f8f4d;
}
.password-strength[data-strength-state="weak"] .password-strength-meter-bar {
  background: #c75a4b;
}
.password-strength[data-strength-state="medium"] .password-strength-meter-bar {
  background: #d79a2b;
}
.password-strength[data-strength-state="good"] .password-strength-meter-bar {
  background: #6a9b33;
}
.password-strength[data-strength-state="strong"] .password-strength-meter-bar {
  background: #1f8f4d;
}
.password-strength[data-password-compliant="true"] .password-strength-pill {
  background: #e7f6ec;
  color: #1f6b3b;
}
.password-strength[data-password-compliant="false"] .password-strength-pill {
  background: #f3f3f3;
  color: #555;
}
textarea { min-height: 120px; resize: vertical; }
.file-input-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.dropzone {
  display: grid;
  gap: 8px;
  border: 2px dashed #b8b8b8;
  border-radius: 14px;
  padding: 18px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.dropzone strong { font-size: 15px; }
.dropzone.is-dragover {
  border-color: #111;
  background: #f2f2f2;
}
.dropzone-preview {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.dropzone-preview.is-visible { display: flex; }
.dropzone-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.dropzone-meta { font-size: 13px; color: var(--muted); }
.flex { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
}
.status-badge.brouillon {
  background: #f3f4f6;
  color: #4b5563;
  border-color: #e5e7eb;
}
.status-badge.en-revue {
  background: #fff7e6;
  color: #9a6700;
  border-color: #f5d28c;
}
.status-badge.approuve {
  background: #eafaf0;
  color: #0f7a3f;
  border-color: #9ce3b8;
}
.status-badge.refuse {
  background: #fff1f1;
  color: #b42318;
  border-color: #f3b4b4;
}
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { border-bottom: 1px solid var(--border); padding: 9px; font-size: 14px; text-align: left; }
th { background: #fafafa; }
.wizard-card {
  display: grid;
  gap: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card-raised);
}
.wizard-progress {
  display: grid;
  gap: 8px;
  min-width: min(280px, 100%);
  width: 100%;
}
.wizard-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}
.wizard-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #ececec;
  overflow: hidden;
}
.wizard-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #111 0%, #2b2b2b 100%);
}
.wizard-instruction {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}
.wizard-subcopy {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: #303030;
}
.wizard-subcopy-compact {
  font-size: 13px;
  line-height: 1.4;
  color: #666;
}
.wizard-subcopy-muted {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}
.wizard-panel {
  display: grid;
  gap: 18px;
}
.wizard-stage {
  display: grid;
  gap: 18px;
}
.wizard-slide-next {
  animation: wizard-slide-next .28s ease both;
}
.wizard-slide-prev {
  animation: wizard-slide-prev .28s ease both;
}
@keyframes wizard-slide-next {
  from {
    opacity: 0;
    transform: translateX(26px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes wizard-slide-prev {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}
.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-card-body {
  display: grid;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  min-height: 86px;
}
.choice-card-body-lg {
  min-height: 118px;
  padding: 18px 16px;
}
.choice-card-body-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 14px 16px;
}
.wizard-option-card {
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.wizard-salary-card {
  min-height: 0;
  padding: 14px 16px;
}
.wizard-salary-card .wizard-option-head {
  align-items: center;
}
.wizard-salary-card .wizard-option-copy {
  gap: 2px;
}
.wizard-option-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.wizard-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f3f3f3;
  color: #111;
  font-size: 16px;
  flex: 0 0 auto;
}
.wizard-option-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.wizard-option-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  text-align: right;
  gap: 6px;
  width: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.option-grid-payable .wizard-option-price {
  justify-self: center;
  text-align: center;
}
.wizard-option-icon-sm {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 14px;
}
.wizard-recap-option-line {
  align-items: center;
}
.wizard-recap-option-line-paid {
  opacity: 0.78;
}
.wizard-recap-option-line-paid .wizard-option-icon {
  background: #ececec;
  color: #686868;
}
.wizard-recap-option-line-paid strong:not(.wizard-option-price),
.wizard-recap-option-line-paid .muted {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.wizard-recap-option-line-paid .choice-lock-note {
  text-decoration: none;
}
.wizard-recap-option-line-paid .wizard-option-price {
  color: #6f6f6f;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.wizard-recap-option-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.choice-card input:checked + .choice-card-body {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
  background: #f9f9f9;
}
.choice-card input:checked + .choice-card-body .wizard-option-icon {
  background: #111;
  color: #fff;
}
.choice-card input:checked + .choice-card-body .wizard-option-price {
  color: #0f766e;
}
.choice-card-locked {
  cursor: not-allowed;
}
.choice-card-locked .choice-card-body {
  background: #f5f5f5;
  border-color: #d7d7d7;
  color: #4c4c4c;
}
.choice-card-locked input:checked + .choice-card-body {
  border-color: #8f8f8f;
  box-shadow: inset 0 0 0 1px #8f8f8f;
  background: #efefef;
}
.choice-card-locked .wizard-option-icon {
  background: #e2e2e2;
  color: #686868;
}
.choice-card-locked .wizard-option-price,
.choice-card-locked input:checked + .choice-card-body .wizard-option-price {
  color: #767676;
}
.choice-lock-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #5a5a5a;
}
.category-choice .choice-card-body {
  justify-content: flex-start;
  text-align: left;
}
.category-choice .choice-card-body-inline {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap;
}
.category-choice .choice-card-body-inline strong {
  display: inline-block;
}
.choice-emoji {
  font-size: 38px;
  line-height: 1;
}
.category-choice .choice-emoji {
  font-size: 28px;
  flex: 0 0 auto;
  display: inline-flex;
}
.wizard-nav {
  display: grid;
  gap: 10px;
}
.wizard-nav-with-draft {
  grid-template-columns: 1fr;
}
.wizard-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
}
.wizard-nav-btn-secondary {
  background: #fff;
  color: var(--text);
}
.wizard-nav-single {
  grid-template-columns: 1fr;
}
.wizard-counter {
  font-size: 14px;
  color: var(--muted);
}
.wizard-hidden-field {
  display: none;
}
.quill-editor {
  min-height: 220px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.quill-editor .ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quill-editor .ql-toolbar.ql-snow .ql-formats {
  margin-right: 0;
}
.quill-editor .ql-container.ql-snow {
  border: 1px solid #ccc;
  border-radius: 0 0 14px 14px;
  min-height: 170px;
  font-size: 16px;
}
.quill-editor .ql-editor {
  min-height: 170px;
  line-height: 1.6;
  font-size: 16px;
}
.quill-editor .ql-editor.ql-blank::before {
  font-size: 16px;
}
.recap-grid {
  display: grid;
  gap: 14px;
  align-items: start;
}
.recap-main-card,
.recap-side-card {
  display: grid;
  gap: 16px;
}
.recap-side-card {
  align-content: start;
}
.recap-meta-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.recap-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.recap-summary-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fcfcfc;
}
.boost-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.boost-line:last-of-type {
  border-bottom: 0;
}
.empty-selection {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px dashed #cfcfcf;
  border-radius: 14px;
  background: #fafafa;
}
.price-line,
.price-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price-total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 18px;
}
.admin-job-list {
  display: grid;
  gap: 14px;
}
.table-clickable tbody tr {
  cursor: pointer;
  transition: background .15s ease;
}
.table-clickable tbody tr:hover,
.table-clickable tbody tr:focus {
  background: #fafafa;
}
.table-clickable tbody tr:focus {
  outline: 2px solid #111;
  outline-offset: -2px;
}
.admin-job-card {
  box-shadow: var(--shadow-card-raised);
}
.admin-job-layout {
  display: grid;
  gap: 18px;
}
.admin-job-main {
  display: grid;
  gap: 14px;
}
.admin-job-actions {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.admin-job-actions-inner {
  display: grid;
  gap: 10px;
}
.admin-job-actions-inner form,
.admin-job-actions-inner button {
  width: 100%;
}
.admin-job-actions-divider {
  border-top: 1px solid var(--border);
  margin: 4px 0;
}
.admin-job-pricing-card {
  display: grid;
  gap: 16px;
}
.admin-job-pricing-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.admin-job-pricing-summary-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fcfcfc;
}
.admin-job-pricing-sections {
  display: grid;
  gap: 14px;
}
.admin-job-pricing-block {
  display: grid;
  gap: 12px;
}
.admin-job-purchase-list {
  display: grid;
  gap: 10px;
}
.admin-job-purchase-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.admin-job-purchase-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.admin-job-purchase-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}
.admin-job-purchase-action {
  margin: 0;
}
.admin-job-purchase-action button {
  width: auto;
}
.admin-job-comp-list {
  display: grid;
  gap: 10px;
}
.admin-job-comp-form {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fcfcfc;
}
.admin-job-comp-copy {
  display: grid;
  gap: 4px;
}
.admin-billing-timeline {
  display: grid;
  gap: 12px;
}
.admin-billing-timeline-item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.admin-billing-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 4px;
  background: #b9b9b9;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.05);
}
.admin-billing-timeline-dot-info {
  background: #4676ff;
}
.admin-billing-timeline-dot-success {
  background: #1f8f4e;
}
.admin-billing-timeline-dot-warning {
  background: #c57b12;
}
.admin-billing-timeline-dot-danger {
  background: #c53b3b;
}
.admin-billing-timeline-dot-muted {
  background: #b9b9b9;
}
.admin-billing-timeline-copy {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.admin-billing-timeline-item:last-child .admin-billing-timeline-copy {
  border-bottom: 0;
  padding-bottom: 0;
}
.admin-billing-timeline-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
}
.admin-job-edit-form {
  padding: 18px;
}
.admin-form-section-title {
  margin: 22px 0 10px;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}
.admin-job-edit-form .admin-form-section-title:first-of-type {
  margin-top: 0;
}
.admin-products-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.admin-products-summary-card {
  display: grid;
  gap: 8px;
  align-content: start;
}
.admin-products-summary-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f3f3f3;
  color: #444;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.admin-products-summary-copy {
  margin: 0;
  color: #474747;
  font-size: 14px;
  line-height: 1.5;
}
.admin-products-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.admin-products-type {
  display: grid;
  gap: 6px;
  min-width: 150px;
}
.admin-products-price-field {
  display: grid;
  gap: 6px;
  min-width: 110px;
}
.admin-desc-textarea {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  line-height: 1.45;
}
.disabled-input {
  opacity: 0.7;
  cursor: not-allowed;
  background: #f5f5f5;
}
.admin-choice-narrow .choice-card-body-lg {
  min-height: 72px;
}
@media (min-width: 900px) {
  .split.admin-kw-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .admin-job-pricing-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .admin-job-pricing-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.business-dashboard-head {
  align-items: flex-start;
}
.dashboard-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.dashboard-summary-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
}
.dashboard-summary-card-credit {
  background: var(--card-highlight-bg);
  border-color: var(--card-highlight-border);
  box-shadow: var(--shadow-card-highlight);
}
.dashboard-summary-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  color: #3f3f3f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dashboard-summary-value {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.dashboard-summary-value-sm {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.35;
  letter-spacing: 0;
}
.dashboard-summary-copy {
  margin: 0;
  color: #474747;
  font-size: 14px;
  line-height: 1.5;
}
.dashboard-summary-form {
  margin-top: 2px;
}
.dashboard-cta-stack {
  display: grid;
  gap: 10px;
}
.dashboard-primary-cta,
.dashboard-draft-cta {
  width: 100%;
}
.dashboard-primary-cta {
  min-height: 64px;
  font-size: 18px;
  font-weight: 800;
}
.dashboard-draft-cta {
  min-height: 52px;
}
.business-dashboard-actions {
  width: 100%;
}
.business-switch-form {
  align-items: stretch;
}
.business-job-list {
  display: grid;
  gap: 12px;
}
.business-job-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow-card-raised);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.business-job-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-strong);
}
.business-job-state-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.business-inline-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  background: #f6f6f6;
  color: #333;
}
.business-inline-pill-success {
  background: #eafaf0;
  color: #0f7a3f;
  border-color: #9ce3b8;
}
.business-inline-pill-info {
  background: #eef4ff;
  color: #1d4ed8;
  border-color: #bfd2ff;
}
.business-inline-pill-warning {
  background: #fff7e6;
  color: #9a6700;
  border-color: #f5d28c;
}
.business-inline-pill-danger {
  background: #fff1f1;
  color: #b42318;
  border-color: #f3b4b4;
}
.business-job-title {
  font-size: 18px;
}
.business-job-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.business-job-meta-item {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fcfcfc;
}
.business-payment-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #f5d28c;
  background: linear-gradient(180deg, #fffdf7 0%, #fff7e6 100%);
}
.business-payment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}
.business-payment-lines {
  display: grid;
  gap: 8px;
}
.business-payment-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #4d4d4d;
}
.business-invoice-list {
  display: grid;
  gap: 10px;
}
.business-invoice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.business-invoice-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.business-invoice-copy {
  display: grid;
  gap: 4px;
}
.business-invoice-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}
.business-job-actions form {
  margin: 0;
}
.rich-preview {
  color: #222;
  line-height: 1.45;
}
.rich-preview p {
  margin: 0;
}
.rich-preview p + p {
  margin-top: 4px;
}
.rich-preview br + br {
  display: block;
  content: "";
  margin-top: 10px;
}
.rich-preview ul,
.rich-preview ol {
  padding-left: 20px;
  margin: 6px 0 12px;
}
.rich-preview li + li {
  margin-top: 2px;
}
@media (max-width: 899px) {
  .topbar-inner {
    align-items: flex-start;
  }
  .nav {
    width: 100%;
    justify-content: flex-end;
    gap: 6px;
  }
  .nav .btn,
  .nav button {
    min-width: 44px;
    padding: 10px;
    gap: 0;
    font-size: 0;
  }
  .nav .btn .fa-solid,
  .nav .btn .fa-regular,
  .nav button .fa-solid,
  .nav button .fa-regular {
    font-size: 16px;
  }
  .nav .nav-label {
    display: none;
  }
  .business-dashboard-actions > * {
    width: 100%;
  }
  .dashboard-summary-grid {
    grid-template-columns: 1fr;
  }
  .admin-products-summary {
    grid-template-columns: 1fr;
  }
  .business-switch-form select,
  .business-switch-form button {
    width: 100%;
  }
  .business-job-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .business-job-actions > *,
  .business-job-actions form,
  .business-job-actions button {
    width: 100%;
  }
  .business-payment-line,
  .business-payment-head {
    align-items: flex-start;
  }
  .business-invoice-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .business-invoice-meta {
    justify-items: start;
    text-align: left;
  }
  .wizard-instruction {
    font-size: 24px;
  }
  .wizard-subcopy {
    font-size: 16px;
  }
  .wizard-subcopy-compact {
    font-size: 12px;
  }
  .wizard-progress {
    min-width: 0;
  }
  .wizard-card {
    gap: 14px;
  }
  .section-head {
    margin-bottom: 0;
  }
  .wizard-panel,
  .wizard-stage,
  .split,
  .option-grid,
  .recap-grid,
  .wizard-nav,
  .choice-card-body {
    min-width: 0;
  }
  .wizard-option-head {
    align-items: center;
  }
  .wizard-option-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .wizard-salary-card {
    padding: 12px 14px;
  }
  .wizard-option-price {
    justify-self: start;
    text-align: left;
  }
  .option-grid-payable .wizard-option-price {
    justify-self: center;
    text-align: center;
    width: 100%;
  }
  .wizard-recap-option-line {
    align-items: flex-start;
  }
  .wizard-recap-option-copy {
    min-width: 0;
  }
  .job-detail-hero-logo {
    width: 96px;
    min-width: 96px;
  }
  .job-detail-logo {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
    border-radius: 20px;
  }
  .job-detail-hero {
    gap: 12px;
  }
  .job-detail-section-card {
    padding: 14px;
  }
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .auth-card {
    padding: 22px;
  }
  .job-detail-card {
    padding: 24px 28px 26px;
  }
  .auth-actions {
    justify-content: flex-start;
  }
  .auth-actions > * {
    width: auto;
  }
  .job-detail-hero {
    grid-template-columns: 112px minmax(0, 760px);
    align-items: start;
    gap: 24px;
    margin-bottom: 20px;
  }
  .job-detail-hero-logo {
    width: 112px;
    min-width: 112px;
    display: flex;
    justify-content: center;
    align-self: start;
    padding: 6px;
  }
  .job-detail-logo {
    width: 112px;
    height: 112px;
    flex-basis: 112px;
    border-radius: 24px;
  }
  .job-detail-hero-body {
    gap: 8px;
    max-width: 760px;
  }
  .job-detail-title {
    font-size: clamp(2rem, 3vw, 2.45rem);
    line-height: 1.02;
  }
  .job-detail-hero-body .job-card-company {
    font-size: 1.02rem;
  }
  .job-detail-hero-body .job-card-published,
  .job-detail-hero-body .job-meta-item {
    font-size: 14px;
  }
  .job-detail-hero-body .job-card-meta--listing {
    margin-top: 4px;
    gap: 8px 14px;
  }
  .job-detail-address {
    margin-top: 0;
    font-size: 14px;
  }
  .job-detail-tags {
    margin-top: 8px;
  }
  .hero-card {
    padding: 22px 22px 16px;
  }
  .hero-card .section-head {
    padding-right: 88px;
  }
  .hero-card-toggle {
    top: 20px;
    right: 20px;
  }
  .hero-card .title {
    font-size: 27px;
  }
  .hero-card .muted {
    font-size: 16px;
  }
  .podcast-card {
    padding: 22px;
  }
  .podcast-card-grid {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }
  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wizard-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wizard-nav-single {
    grid-template-columns: 1fr;
  }
  .wizard-nav-with-draft {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .wizard-nav-single.wizard-nav-with-draft {
    grid-template-columns: 1fr;
  }
  .recap-grid {
    grid-template-columns: 1.4fr .8fr;
  }
  .recap-summary {
    grid-template-columns: 1fr 1fr;
  }
  .admin-job-layout {
    grid-template-columns: minmax(0, 1.5fr) 300px;
    align-items: start;
  }
  .admin-job-actions {
    border-top: 0;
    border-left: 1px solid var(--border);
    padding-top: 0;
    padding-left: 18px;
  }
  .business-dashboard-actions {
    width: auto;
  }
  .dashboard-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .business-job-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
