@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: #fff7df;
  --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(240, 215, 135, 0.22);
  --card-highlight-bg: linear-gradient(180deg, #fffdf7 0%, var(--highlight) 100%);
  --card-highlight-border: #f0d787;
}

* { 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: 10px 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: 34px;
  width: auto;
  max-width: 72px;
  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.15rem, 2.5vw, 1.45rem);
}
.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: 0;
  padding: 26px 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.footer-sep {
  color: var(--muted);
}
.footer-tagline {
  color: var(--muted);
}
.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%;
}
.job-card--listing {
  display: grid;
  gap: 16px;
  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: 10px;
  min-width: 0;
}
.job-card-listing-titles {
  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-meta--listing {
  gap: 8px;
}
.job-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fcfcfc;
  color: #444;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
}
.tags--listing {
  margin-top: -2px;
  gap: 8px;
}
.job-cta--listing {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
}
.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);
}
.hero-card {
  padding: 18px;
  box-shadow: var(--shadow-card-raised);
}
.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) {
  .job-card--listing {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
    gap: 20px;
    align-items: start;
  }
  .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: 180px;
    align-self: flex-start;
  }
}
@media (max-width: 719px) {
  .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-detail-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.job-detail-section {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.job-detail-section h2 {
  margin: 0;
  font-size: 17px;
}
.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;
}
.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;
}
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-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;
}
.choice-card input:checked + .choice-card-body {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
  background: #f9f9f9;
}
.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;
}
.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-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-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));
  }
}
.business-dashboard-head {
  align-items: flex-start;
}
.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-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-job-actions form {
  margin: 0;
}
.rich-preview {
  color: #222;
  line-height: 1.6;
}
.rich-preview ul,
.rich-preview ol {
  padding-left: 20px;
}
@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%;
  }
  .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%;
  }
  .wizard-instruction {
    font-size: 24px;
  }
  .wizard-subcopy {
    font-size: 16px;
  }
  .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;
  }
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .auth-card {
    padding: 22px;
  }
  .auth-actions {
    justify-content: flex-start;
  }
  .auth-actions > * {
    width: auto;
  }
  .job-detail-hero {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
  .hero-card {
    padding: 22px;
  }
  .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;
  }
  .business-job-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
