/* Public jobs site (jobs.rithma.ai) — extends marketing.css tokens */

.jobs-body .marketing-main {
  background: var(--bg);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.jobs-marketplace-hero {
  padding: 40px 20px 32px;
  background: linear-gradient(165deg, var(--primary-light) 0%, var(--bg) 72%);
  border-bottom: 1px solid var(--border);
}

.jobs-marketplace-hero__inner {
  max-width: 960px;
  margin: 0 auto;
}

.jobs-marketplace-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.jobs-marketplace-hero .marketing-lead {
  margin: 0;
  max-width: 42ch;
}

/* ── Layout ───────────────────────────────────────────────────────────── */

.jobs-marketplace {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

/* ── Search & filters ─────────────────────────────────────────────────── */

.jobs-search {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.jobs-search__primary {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.jobs-search__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  min-width: 0;
}

.jobs-search__field-icon {
  flex-shrink: 0;
  color: var(--muted);
}

.jobs-search__field input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 16px 0;
  font-size: 1rem;
  outline: none;
  box-shadow: none;
}

.jobs-search__field input[type="search"]::placeholder {
  color: #94a3b8;
}

.jobs-search__submit {
  flex-shrink: 0;
  border: 0;
  border-left: 1px solid var(--border);
  border-radius: 0;
  padding: 0 22px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.jobs-search__filters {
  padding: 16px 18px 18px;
  background: #fafbfc;
}

.jobs-search__filters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 14px;
}

.jobs-search__filters-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.jobs-search__filters-grid select,
.jobs-search__filters-grid input[type="text"] {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
}

.jobs-search__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.jobs-search__actions .btn-secondary {
  margin-left: auto;
}

/* ── Active filter chips ──────────────────────────────────────────────── */

.jobs-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.jobs-active-filters__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-right: 2px;
}

.jobs-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 12px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.3;
  transition: background 120ms ease;
}

.jobs-filter-chip:hover {
  background: #bfdbfe;
  text-decoration: none;
  color: var(--primary-dark);
}

.jobs-filter-chip__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.12);
  font-size: 0.95rem;
  line-height: 1;
}

.jobs-filter-chip--clear {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding-inline: 12px;
}

.jobs-filter-chip--clear:hover {
  background: var(--card);
  color: var(--text);
  border-color: #cbd5e1;
}

/* ── Results bar ──────────────────────────────────────────────────────── */

.jobs-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 14px;
}

.jobs-results-bar__count {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.jobs-results-bar__count span {
  color: var(--muted);
  font-weight: 500;
}

/* ── Job cards ────────────────────────────────────────────────────────── */

.jobs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.jobs-card {
  margin: 0;
}

.jobs-card__link {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.jobs-card__link:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
  text-decoration: none;
  color: inherit;
}

.jobs-card__link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.jobs-card__accent {
  width: 4px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  align-self: stretch;
}

.jobs-card__body {
  flex: 1;
  min-width: 0;
}

.jobs-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 6px;
}

.jobs-card__title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
}

.jobs-card__link:hover .jobs-card__title {
  color: var(--primary);
}

.jobs-card__pay {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--success);
  white-space: nowrap;
}

.jobs-card__agency {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.jobs-card__summary {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jobs-card__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.jobs-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.jobs-tag svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.jobs-tag--role {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.jobs-card__cta {
  display: none;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.jobs-card__link:hover .jobs-card__cta {
  color: var(--primary-dark);
}

/* ── Empty state ──────────────────────────────────────────────────────── */

.jobs-empty {
  text-align: center;
  padding: 48px 28px;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  background: var(--card);
}

.jobs-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
}

.jobs-empty h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.jobs-empty p {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 36ch;
  margin-inline: auto;
}

/* ── Header nav ───────────────────────────────────────────────────────── */

.jobs-body .jobs-header-nav {
  display: flex;
}

.jobs-header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.jobs-header-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
}

.jobs-header-nav a:hover {
  color: var(--primary);
}

.jobs-header-nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (min-width: 720px) {
  .jobs-card__cta {
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  .jobs-search__filters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .jobs-marketplace-hero {
    padding: 28px 16px 24px;
  }

  .jobs-marketplace {
    padding: 20px 16px 40px;
  }

  .jobs-search__primary {
    flex-direction: column;
  }

  .jobs-search__submit {
    border-left: 0;
    border-top: 1px solid var(--border);
    width: 100%;
    padding: 14px 18px;
  }

  .jobs-search__filters-grid {
    grid-template-columns: 1fr;
  }

  .jobs-search__actions .btn-secondary {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .jobs-card__link {
    padding: 16px;
    gap: 12px;
  }

  .jobs-card__header {
    flex-direction: column;
    gap: 4px;
  }
}

/* ── Agency branding (header / footer) ──────────────────────────────────── */

.jobs-site-header--agency {
  border-bottom-color: color-mix(in srgb, var(--jobs-brand, var(--primary)) 18%, var(--border));
}

.jobs-agency-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  min-width: 0;
}

.jobs-agency-brand:hover {
  color: var(--jobs-brand, var(--primary));
  text-decoration: none;
}

.jobs-agency-brand--static {
  cursor: default;
}

.jobs-agency-brand--static:hover {
  color: var(--text);
}

.jobs-agency-brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.jobs-agency-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--jobs-brand, var(--primary)), var(--jobs-accent, var(--accent)));
}

.jobs-agency-brand__text {
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jobs-agency-footer {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.jobs-agency-footer__name {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1rem;
  color: #e2e8f0;
}

.jobs-agency-footer__note,
.jobs-agency-footer__license,
.jobs-agency-footer__address {
  margin: 0 0 6px;
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.45;
}

.jobs-agency-footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 10px 0 8px;
  font-size: 0.9rem;
}

.jobs-agency-footer__contact a {
  color: #cbd5e1;
}

.jobs-agency-footer__powered {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid #334155;
  font-size: 0.82rem;
  color: #64748b;
}

/* ── Agency careers board hero ────────────────────────────────────────── */

.jobs-board-hero {
  padding: 36px 20px 28px;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--jobs-brand, var(--primary-light)) 22%, white) 0%,
    var(--bg) 72%
  );
  border-bottom: 1px solid var(--border);
}

.jobs-board-hero__inner {
  max-width: 960px;
  margin: 0 auto;
}

.jobs-board-hero__kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jobs-board-hero__kicker a {
  color: var(--muted);
  text-decoration: none;
}

.jobs-board-hero__kicker a:hover {
  color: var(--jobs-brand, var(--primary));
}

.jobs-board-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.jobs-board-hero__intro {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Job post detail ──────────────────────────────────────────────────── */

.jobs-post-hero {
  padding: 28px 20px 24px;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--jobs-brand, var(--primary-light)) 20%, white) 0%,
    var(--bg) 70%
  );
  border-bottom: 1px solid var(--border);
}

.jobs-post-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.jobs-post-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.88rem;
  color: var(--muted);
}

.jobs-post-breadcrumb a {
  color: var(--jobs-brand, var(--primary));
  text-decoration: none;
  font-weight: 500;
}

.jobs-post-breadcrumb a:hover {
  text-decoration: underline;
}

.jobs-post-hero__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 14px;
}

.jobs-post-hero__titles {
  flex: 1 1 280px;
  min-width: 0;
  max-width: min(100%, 44rem);
}

.jobs-post-hero__agency {
  margin: 0 0 6px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jobs-brand, var(--primary));
  overflow-wrap: anywhere;
  word-break: break-word;
}

.jobs-post-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.jobs-post-hero__summary {
  margin: 10px 0 0;
  max-width: 58ch;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.5;
}

.jobs-post-hero__pay {
  margin: 0;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: #ecfdf5;
  color: var(--success);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}

.jobs-post-hero__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jobs-post-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}

.jobs-post-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.jobs-post-section {
  padding: 22px 24px;
}

.jobs-post-section h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.jobs-about-employer {
  display: flow-root;
}

.jobs-about-employer__logo {
  float: left;
  width: 120px;
  height: 120px;
  margin: 0 20px 12px 0;
  object-fit: contain;
  border-radius: 12px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.jobs-about-employer__prose {
  min-width: 0;
}

.jobs-about-employer--no-logo .jobs-about-employer__prose {
  margin: 0;
}

.jobs-post-prose {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #334155;
}

.jobs-post-prose p:first-child {
  margin-top: 0;
}

.jobs-post-prose p:last-child {
  margin-bottom: 0;
}

.jobs-post-prose ul,
.jobs-post-prose ol {
  padding-left: 1.25rem;
}

.jobs-post-sidebar {
  position: sticky;
  top: 84px;
}

.jobs-post-apply {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.jobs-post-apply__header {
  padding: 20px 22px 0;
}

.jobs-post-apply__header h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.jobs-post-apply__hint {
  margin: 0 0 4px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.jobs-post-form {
  padding: 16px 22px 22px;
  display: grid;
  gap: 14px;
}

.jobs-post-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jobs-post-form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.jobs-post-form__optional {
  font-weight: 500;
  color: #94a3b8;
}

.jobs-post-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.jobs-post-form input[type="text"],
.jobs-post-form input[type="email"],
.jobs-post-form input[type="tel"],
.jobs-post-form input[type="file"] {
  width: 100%;
}

.jobs-post-form__screener {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.jobs-post-form__screener--text {
  padding: 14px 16px;
  border: 1px solid var(--border, #dbe4ee);
  border-radius: 10px;
  background: var(--surface-muted, #f8fafc);
}

.jobs-post-form__screener-legend,
.jobs-post-form__screener .jobs-post-form__label {
  margin-bottom: 2px;
}

.jobs-post-form__screener-legend {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 10px;
  border: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text, #0f172a);
  line-height: 1.45;
}

.jobs-post-form__required {
  color: #dc2626;
  font-weight: 700;
}

.jobs-post-form__text-answer {
  display: block;
  width: 100%;
  min-height: 92px;
  padding: 11px 13px;
  border: 1px solid var(--border, #dbe4ee);
  border-radius: 8px;
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.5;
  color: var(--text, #0f172a);
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.jobs-post-form__text-answer::placeholder {
  color: #94a3b8;
}

.jobs-post-form__text-answer:hover {
  border-color: color-mix(in srgb, var(--jobs-brand, var(--primary)) 35%, var(--border, #dbe4ee));
}

.jobs-post-form__text-answer:focus {
  outline: none;
  border-color: var(--jobs-brand, var(--primary));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--jobs-brand, var(--primary)) 22%, transparent);
}

.jobs-screener-modal__body.jobs-post-form {
  gap: 16px;
}

.jobs-post-form__screener .jobs-post-form__label {
  margin-bottom: 2px;
}

.jobs-post-form__yesno {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(72px, 96px));
  gap: 8px;
  max-width: 100%;
}

.jobs-post-form__yesno-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid var(--border, #dbe4ee);
  border-radius: 6px;
  background: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.jobs-post-form__yesno-option:has(input:checked) {
  border-color: var(--jobs-brand, var(--primary));
  background: color-mix(in srgb, var(--jobs-brand, var(--primary)) 10%, white);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--jobs-brand, var(--primary)) 35%, white);
}

.jobs-post-form__yesno-option input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--jobs-brand, var(--primary));
}

.jobs-post-form__submit {
  width: 100%;
  margin-top: 4px;
  padding: 12px 18px;
  font-size: 1rem;
  background: var(--jobs-brand, var(--primary));
  border-color: var(--jobs-brand, var(--primary));
}

.jobs-post-form__submit:hover {
  filter: brightness(0.95);
}

.jobs-screener-modal {
  width: min(calc(100vw - 32px), 480px);
  max-width: 100%;
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  overflow: visible;
}

.jobs-screener-modal::backdrop {
  background: rgba(15, 23, 42, 0.55);
}

.jobs-screener-modal__panel {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 32px);
  border: 1px solid var(--border, #dbe4ee);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.jobs-screener-modal__header {
  padding: 22px 22px 0;
}

.jobs-screener-modal__header h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.jobs-screener-modal__hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted, #64748b);
  line-height: 1.45;
}

.jobs-screener-modal__body {
  padding: 16px 22px;
  overflow-y: auto;
}

.jobs-screener-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 22px 22px;
  border-top: 1px solid var(--border, #e2e8f0);
  background: var(--surface-muted, #f8fafc);
}

.jobs-screener-modal__footer .btn-primary {
  background: var(--jobs-brand, var(--primary));
  border-color: var(--jobs-brand, var(--primary));
}

/* ── Apply thanks ─────────────────────────────────────────────────────── */

.jobs-thanks {
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.jobs-thanks__card {
  text-align: center;
  padding: 36px 28px;
}

.jobs-thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--jobs-brand, var(--primary));
  background: color-mix(in srgb, var(--jobs-brand, var(--primary-light)) 18%, white);
}

.jobs-thanks h1 {
  margin: 0 0 10px;
  font-size: 1.65rem;
}

.jobs-thanks__lead {
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.5;
}

.jobs-thanks__body {
  margin: 0 0 22px;
  color: var(--muted);
}

.jobs-thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.jobs-thanks__actions .btn-primary {
  background: var(--jobs-brand, var(--primary));
  border-color: var(--jobs-brand, var(--primary));
}

.jobs-thanks--review .jobs-thanks__icon--review {
  color: var(--muted, #64748b);
  background: var(--bg-muted, #f1f5f9);
}

.jobs-thanks--review h1 {
  font-size: 1.45rem;
}

.jobs-thanks--review .jobs-thanks__body {
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .jobs-post-layout {
    grid-template-columns: 1fr;
  }

  .jobs-post-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .jobs-post-hero {
    padding: 20px 16px;
  }

  .jobs-post-layout {
    padding: 20px 16px 40px;
  }

  .jobs-post-form__row {
    grid-template-columns: 1fr;
  }

  .jobs-post-hero__pay {
    width: 100%;
    text-align: center;
  }

  .jobs-agency-brand__text {
    white-space: normal;
  }
}
