/* ─── Nous Research — Ashby Job Board custom CSS ─────────────────────────── */
/* Brand palette: primary #0171A9, secondary #007BFF, bg #fafafa            */
/* Upload under: Admin > Job Boards > Theme (Job Board) > Custom CSS         */

:root {
  /* Page background — matches the nousresearch.com careers page */
  --colorAppBackground: #fafafa;

  /* Primary brand blue.
     NOTE: these two are ALSO settable in Ashby admin > Theme settings.
     Set them there too so both places agree. */
  --colorPrimary900: #015a86;   /* darker shade — hover/active, headings */
  --colorPrimary600: #0171a9;   /* the core Nous blue — links, accents   */

  /* Layout widths */
  --widthMaxContent: 900px;
  --widthMaxJobBoard: 900px;

  /* Sharp, minimal corners to match the site (site uses ~1px radii) */
  --borderRadiusContainer: 2px;
  --borderRadiusControl: 2px;
  --borderRadiusButton: 2px;

  /* Site font stack */
  --fontFamily: "Helvetica Neue", "Open Sans", Arial, sans-serif;
}

/* Board + posting headings in brand blue */
.ashby-job-board-heading,
.ashby-job-posting-heading,
.ashby-job-posting-brief-title,
.ashby-department-heading {
  color: #0171a9;
}

/* Job posting titles in the list */
.ashby-job-posting-brief-title {
  font-weight: 600;
}

/* Apply / submit button — white text on Nous blue, sharp corners */
.ashby-application-form-submit-button {
  background-color: #0171a9;
  color: #ffffff;
  border-radius: 2px;
}
.ashby-application-form-submit-button:hover {
  background-color: #015a86;
}

/* Links inside job descriptions match the site's link color */
.ashby-job-posting-description a {
  color: #0171a9;
}

/* "Back to all jobs" control in brand blue */
.ashby-job-board-back-to-all-jobs-button {
  color: #0171a9;
}
