/* stylelint-disable */

/* Import Switzer font */
@import url('https://api.fontshare.com/v2/css?f[]=switzer@400,500,600,700&display=swap');

/* Variables (allowed in Ashby sample) */
:root {
  --colorPrimary900: #FF6600; /* Brain orange */
  --colorPrimary600: #FF944D; /* lighter orange */
  --widthMaxJobBoard: 900px;
  --borderRadiusContainer: 12px;
  --borderRadiusControl: 8px;
  --borderRadiusButton: 999px; /* pill buttons */
  --fontFamily: "Switzer", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --colorAppBackground: #ffffff;
  --colorTextPrimary: #111111;
  --colorTextSecondary: #555555;
}

/* ===========================
   Typography + Headings
   =========================== */
.ashby-job-board-heading,
.ashby-job-posting-header,
.ashby-job-posting-heading {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 2rem;
  color: var(--colorTextPrimary);
  margin-bottom: 1rem;
}

.ashby-department-heading,
.ashby-department-heading-level,
.ashby-job-posting-brief-title {
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--colorTextPrimary);
}

.ashby-job-board-heading-count {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 1rem;
  color: var(--colorTextSecondary);
}

/* ===========================
   Job List + Cards
   =========================== */
.ashby-job-posting-brief {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: var(--borderRadiusContainer);
  padding: 1rem 1.25rem;
  margin-bottom: 16px;
  transition: box-shadow 0.2s ease;
}

.ashby-job-posting-brief:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-color: #ddd;
}

.ashby-job-posting-brief-department-heading {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--colorPrimary900);
  margin-bottom: 0.25rem;
}

/* =======*
