:root {
  color-scheme: light;
  /* Ashle Green brand tokens. Source: brand/ASHLE-GREEN-Brand.dc.html */
  --linen: #ede7d9;
  --linen-soft: #f6f1e7;
  --linen-deep: #e2dcc9;
  --plum: #3c1f42;
  --plum-deep: #1e0f26;
  --plum-soft: #6e4f74;
  --olive: #6b7848;
  --olive-bright: #9aae63;
  --ink: #3c1f42;
  --body: #5f5244;
  --muted: #8d7e69;
  --line: rgba(60, 31, 66, 0.12);
  --line-strong: rgba(60, 31, 66, 0.2);
  --surface: #fffdfa;
  --shadow: 0 18px 50px rgba(60, 31, 66, 0.13);
  --pane-viewport-height: max(480px, calc(400vh - 968px));
  --font-display: "Titan One", cursive;
  --font-ui: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-editorial: "DM Serif Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  background-color: var(--linen);
  background-image:
    repeating-linear-gradient(0deg, rgba(130, 100, 62, 0.055) 0, rgba(130, 100, 62, 0.055) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(130, 100, 62, 0.055) 0, rgba(130, 100, 62, 0.055) 1px, transparent 1px, transparent 3px);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse 92% 92% at 50% 50%, transparent 52%, rgba(74, 48, 20, 0.13) 100%);
}

button,
input,
select {
  font: inherit;
}

button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

button:hover {
  border-color: var(--line-strong);
}

.app-shell {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  min-height: 100vh;
  padding: 18px;
  gap: 18px;
  transition: grid-template-columns 180ms ease;
}

.brand-rail {
  position: sticky;
  top: 18px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: calc(100vh - 36px);
  min-height: 640px;
  padding: 54px 20px 24px;
  border: 1px solid rgba(237, 231, 217, 0.12);
  border-radius: 22px;
  background: var(--plum);
  box-shadow: var(--shadow);
  color: var(--linen);
  overflow: hidden;
  transition: padding 180ms ease, border-radius 180ms ease;
}

.sidebar-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  border-color: rgba(237, 231, 217, 0.18);
  border-radius: 999px;
  background: rgba(237, 231, 217, 0.1);
  color: var(--linen);
  font-size: 12px;
  font-weight: 800;
}

.sidebar-toggle:hover {
  border-color: rgba(237, 231, 217, 0.32);
}

.toggle-icon {
  font-size: 20px;
  line-height: 1;
}

.toggle-text {
  line-height: 1;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-lockup img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: 50%;
  background: var(--linen);
  object-fit: contain;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--linen);
}

.wordmark span {
  color: var(--olive-bright);
}

.brand-lockup p,
.live-card p,
.rail-user small {
  margin: 3px 0 0;
  color: #c5b2ca;
  font-size: 12px;
}

.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rail-nav button {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  box-shadow: none;
  color: #c5b2ca;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
}

.rail-nav button:hover {
  background: rgba(237, 231, 217, 0.08);
  color: #fff;
}

.rail-nav button:focus-visible {
  outline: 2px solid rgba(154, 174, 99, 0.72);
  outline-offset: 2px;
}

.rail-nav button.active {
  background: rgba(237, 231, 217, 0.12);
  color: #fff;
}

.rail-nav i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--plum-soft);
}

.rail-nav button.active i {
  background: var(--olive-bright);
}

.live-card {
  margin-top: auto;
  padding: 20px 16px;
  border: 1px solid rgba(237, 231, 217, 0.12);
  border-radius: 15px;
  background: rgba(237, 231, 217, 0.07);
}

.live-card p {
  margin: 0;
  color: #a98fb0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.live-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1;
}

.live-card span {
  display: block;
  margin-top: 7px;
  color: #c5b2ca;
  font-size: 12px;
  line-height: 1.4;
}

.rail-user {
  display: flex;
  align-items: center;
  gap: 11px;
}

.rail-user > span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.rail-user strong {
  display: block;
  color: #fff;
  font-size: 13px;
}

.auth-actions {
  display: grid;
  gap: 8px;
}

.auth-actions button {
  width: 100%;
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.auth-actions button:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
}

.auth-actions button[hidden] {
  display: none;
}

.email-link-field {
  display: grid;
  gap: 5px;
  color: #c5b2ca;
  font-size: 11px;
  font-weight: 800;
}

.email-link-field input {
  min-height: 36px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.email-link-field input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.email-link-field input[hidden] {
  display: none;
}

.email-link-field[hidden] {
  display: none;
}

.main-board {
  min-width: 0;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

body.sidebar-collapsed .app-shell {
  grid-template-columns: 66px minmax(0, 1fr);
}

body.sidebar-collapsed .brand-rail {
  align-items: center;
  gap: 18px;
  min-height: 0;
  padding: 58px 8px 14px;
  border-radius: 18px;
}

body.sidebar-collapsed .sidebar-toggle {
  right: 11px;
  width: 42px;
  min-height: 42px;
  padding: 0;
}

body.sidebar-collapsed .toggle-text,
body.sidebar-collapsed .brand-lockup div,
body.sidebar-collapsed .rail-nav button:not(.active),
body.sidebar-collapsed .rail-nav button.active,
body.sidebar-collapsed .live-card,
body.sidebar-collapsed .rail-user div,
body.sidebar-collapsed .auth-actions {
  display: none;
}

body.sidebar-collapsed .brand-lockup {
  justify-content: center;
}

body.sidebar-collapsed .brand-lockup img {
  width: 42px;
  height: 42px;
  padding: 3px;
}

body.sidebar-collapsed .rail-nav {
  align-items: center;
  gap: 10px;
}

body.sidebar-collapsed .rail-nav button {
  display: grid;
  width: 38px;
  min-height: 38px;
  place-items: center;
  padding: 0;
}

body.sidebar-collapsed .rail-nav i {
  width: 10px;
  height: 10px;
}

body.sidebar-collapsed .rail-user {
  margin-top: auto;
}

body.sidebar-collapsed .rail-user > span {
  width: 38px;
  height: 38px;
}

body.sidebar-collapsed .main-board {
  max-width: 1680px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 2px 20px;
}

.brand-block h1,
.pane-header h2,
.jobs-toolbar h2,
.company-title h2 {
  margin: 0;
}

.brand-block h1 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  color: var(--plum);
}

.brand-block p:last-child {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--olive);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-top: 4px;
}

.refresh-status {
  display: grid;
  gap: 2px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--plum);
  box-shadow: 0 8px 22px rgba(60, 31, 66, 0.08);
}

.refresh-status span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.refresh-status strong {
  font-size: 12px;
  font-weight: 800;
}

.top-actions button {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--plum);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(60, 31, 66, 0.08);
}

.stats {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  max-width: 100%;
  overflow: hidden;
  overflow-x: auto;
  padding-bottom: 3px;
  scrollbar-width: thin;
}

.stat {
  flex: 0 0 118px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: 0 8px 24px rgba(60, 31, 66, 0.07);
}

.stat strong {
  display: block;
  color: var(--plum);
  font-size: 20px;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 650;
}

.control-strip {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 0.85fr) 130px 150px 125px 130px 120px;
  gap: 10px;
  margin-bottom: 14px;
}

label,
.filter-action {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-action button {
  min-height: 48px;
  border-radius: 14px;
  background: var(--plum);
  color: #fff;
  font-weight: 800;
  padding: 0 13px;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
  box-shadow: 0 8px 24px rgba(60, 31, 66, 0.06);
}

input:focus,
select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107, 120, 72, 0.16);
}

select:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.82;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: var(--pane-viewport-height);
}

.company-pane,
.jobs-pane {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.9);
  box-shadow: var(--shadow);
}

.company-pane {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: var(--pane-viewport-height);
  min-height: var(--pane-viewport-height);
  overflow: hidden;
}

.pane-header,
.jobs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.pane-header button {
  min-height: 40px;
  border-radius: 11px;
  padding: 0 13px;
  font-weight: 800;
}

.company-list {
  min-height: 0;
  overflow: auto;
  overscroll-behavior-y: auto;
  padding: 9px;
}

.company-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  text-align: left;
}

.company-row:hover,
.company-row.active {
  background: var(--linen-soft);
  border-color: var(--line-strong);
}

.company-row.active {
  box-shadow: inset 4px 0 0 var(--olive);
}

.company-name {
  display: block;
  overflow: hidden;
  color: var(--plum);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.count-pill,
.status-pill,
.source-pill,
.job-meta span {
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--linen-deep);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.source-pill {
  background: #ece3ef;
  color: #5a3560;
}

.source-pill.greenhouse {
  background: #e7ebdc;
  color: #57632f;
}

.source-pill.lever {
  background: #f0e7d6;
  color: #8a6a2c;
}

.jobs-pane {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  height: var(--pane-viewport-height);
  min-height: var(--pane-viewport-height);
  overflow: hidden;
}

.company-detail {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(246, 241, 231, 0.72));
}

.company-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.company-title h2 {
  font-family: "Titan One", cursive;
  font-size: 28px;
  line-height: 1.04;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.company-actions a,
.company-actions button,
.job-primary a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 11px;
  background: var(--plum);
  color: #fff;
  padding: 0 14px;
  text-decoration: none;
  font-weight: 800;
}

.company-actions button {
  border-color: rgba(60, 31, 66, 0.2);
  background: var(--surface);
  color: var(--plum);
}

.company-actions button[data-company-action="restoreCompany"] {
  border-color: rgba(107, 120, 72, 0.32);
  background: #e7ebdc;
  color: var(--olive);
}

.company-actions a:hover,
.company-actions button:hover,
.job-primary a:hover {
  background: var(--plum-deep);
  color: #fff;
}

.company-subline {
  margin: 9px 0 0;
  color: var(--body);
  line-height: 1.5;
}

.jobs-toolbar select {
  width: 192px;
}

.job-list {
  min-height: 0;
  overflow: auto;
  overscroll-behavior-y: auto;
  padding: 13px;
}

.load-more-wrap {
  padding: 0 13px 13px;
}

.load-more-wrap button {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  font-weight: 800;
}

.load-more-wrap button[hidden] {
  display: none;
}

.job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.job-card + .job-card {
  margin-top: 11px;
}

.job-card.applied {
  background: #f1f6ea;
  border-color: rgba(107, 120, 72, 0.32);
}

.job-card.not-relevant {
  background: #f1eee8;
  border-color: rgba(95, 82, 68, 0.22);
}

.job-card.hidden {
  display: none;
}

.job-main {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.job-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--olive);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.job-copy {
  min-width: 0;
}

.job-title {
  margin: 0 0 8px;
  color: var(--plum);
  font-size: 16px;
  line-height: 1.25;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.status-pill {
  color: var(--olive);
  background: #e7ebdc;
}

.job-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-actions button {
  min-width: 80px;
  min-height: 40px;
  border-radius: 11px;
  padding: 0 10px;
  font-weight: 800;
}

.job-actions button[data-state="saved"] {
  border-color: rgba(107, 120, 72, 0.32);
  background: #e7ebdc;
  color: var(--olive);
}

.job-actions button[data-state="applied"] {
  border-color: rgba(107, 120, 72, 0.32);
  background: #edf4e3;
  color: var(--olive);
}

.job-actions button[data-state="notRelevant"] {
  border-color: rgba(95, 82, 68, 0.22);
  background: #f2eee6;
  color: var(--body);
}

.job-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.job-note textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-size: 13px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 240px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  body.sidebar-collapsed .app-shell {
    grid-template-columns: 1fr;
  }

  .brand-rail {
    position: static;
    display: grid;
    grid-template-columns: minmax(220px, auto) 1fr auto;
    align-items: center;
    height: auto;
    min-height: 0;
    padding: 16px;
  }

  body.sidebar-collapsed .brand-rail {
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 10px 12px;
  }

  .sidebar-toggle {
    position: static;
    justify-self: end;
    order: 3;
  }

  body.sidebar-collapsed .sidebar-toggle {
    width: auto;
    min-height: 32px;
    padding: 0 10px;
  }

  body.sidebar-collapsed .toggle-text {
    display: inline;
  }

  body.sidebar-collapsed .brand-lockup div,
  body.sidebar-collapsed .rail-nav,
  body.sidebar-collapsed .live-card,
  body.sidebar-collapsed .rail-user {
    display: none;
  }

  .rail-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .live-card,
  .rail-user {
    display: none;
  }

  .stats {
    margin-right: -2px;
  }

  .control-strip {
    grid-template-columns: 1fr 1fr 160px;
  }
}

@media (max-width: 1320px) {
  .control-strip {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --pane-viewport-height: max(1040px, 168vh);
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .top-actions {
    align-self: flex-start;
    flex-wrap: wrap;
  }

  .stat {
    flex: 0 0 128px;
  }

  .control-strip {
    grid-template-columns: 1fr 1fr;
  }

  .workspace {
    grid-template-columns: 1fr;
  }

  .company-pane {
    height: var(--pane-viewport-height);
    min-height: var(--pane-viewport-height);
    max-height: none;
  }

  .jobs-pane {
    min-height: var(--pane-viewport-height);
  }
}

@media (max-width: 640px) {
  :root {
    --pane-viewport-height: max(1040px, 152vh);
  }

  .app-shell {
    gap: 10px;
    padding: 10px;
  }

  .brand-rail {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  body.sidebar-collapsed .brand-rail {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sidebar-toggle {
    justify-self: stretch;
  }

  body.sidebar-collapsed .sidebar-toggle {
    justify-self: stretch;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .wordmark {
    font-size: 22px;
  }

  .rail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .rail-nav button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12.5px;
  }

  .topbar {
    padding: 4px 0 12px;
  }

  .brand-block h1 {
    font-size: 33px;
  }

  .brand-block p:last-child {
    font-size: 14px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .control-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }

  label,
  .filter-action {
    gap: 5px;
  }

  input,
  select {
    min-height: 46px;
    font-size: 16px;
  }

  .workspace {
    gap: 10px;
    min-height: auto;
  }

  .company-pane,
  .jobs-pane {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(60, 31, 66, 0.08);
  }

  .company-pane {
    height: var(--pane-viewport-height);
    max-height: none;
    min-height: var(--pane-viewport-height);
  }

  .pane-header,
  .jobs-toolbar {
    padding: 12px;
  }

  .company-row {
    min-height: 58px;
    padding: 10px;
  }

  .company-name {
    white-space: normal;
  }

  .count-pill,
  .status-pill,
  .source-pill,
  .job-meta span {
    padding: 5px 8px;
    font-size: 11px;
  }

  .company-detail {
    padding: 14px 12px 12px;
  }

  .company-title {
    flex-direction: column;
    gap: 12px;
  }

  .company-title h2 {
    font-size: 24px;
  }

  .company-subline {
    line-height: 1.45;
  }

  .jobs-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .jobs-toolbar select {
    width: 100%;
  }

  .job-list {
    padding: 10px;
  }

  .job-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .job-main {
    align-items: flex-start;
  }

  .company-actions,
  .job-actions {
    align-items: stretch;
    justify-content: stretch;
  }

  .job-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .job-primary {
    grid-column: 1 / -1;
  }

  .job-actions button,
  .job-primary a {
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
  }
}

@media (max-width: 420px) {
  .app-shell {
    padding: 8px;
  }

  .rail-nav {
    grid-template-columns: 1fr;
  }

  .job-actions {
    grid-template-columns: 1fr;
  }

  .job-primary {
    grid-column: auto;
  }
}
