/* Fieldfolio App — concrete / steel / copper — field UX */
:root {
  --bg: #EDEAE4;
  --ink: #121417;
  --steel: #2A3036;
  --panel: #FFFFFF;
  --muted: #5A6168;
  --accent: #C47A2C;
  --line: #C8C4BB;
  --radius: 6px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --mist: #E4E0D8;
  --finish-h: 7.5rem;
  /* aliases */
  --teal: var(--ink);
  --spruce: var(--ink);
  --sand: var(--bg);
  --sun: var(--accent);
  --white: var(--panel);
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0; font-family: var(--font); background: var(--bg);
  color: var(--ink); line-height: 1.5; -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--finish-h) + 1.5rem + env(safe-area-inset-bottom, 0px));
}
a { color: var(--ink); }
.wrap { width: min(1100px, 94%); margin: 0 auto; padding: 1rem 0 1rem; }
.topbar {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  justify-content: space-between; padding: 0.85rem 0; border-bottom: 2px solid var(--line);
  margin-bottom: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 800; color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
}
.brand img { width: 28px; height: 28px; border-radius: 6px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.35rem; padding: 0.7rem 1.1rem; border-radius: var(--radius); font-weight: 750;
  font-size: 0.95rem; border: 2px solid transparent; cursor: pointer;
  background: var(--ink); color: #fff; min-height: 44px;
  font-family: inherit;
}
.btn:hover { background: var(--steel); }
.btn-ghost { background: var(--panel); color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); background: var(--panel); }
.btn-sm { padding: 0.45rem 0.75rem; min-height: 40px; font-size: 0.85rem; }
.btn-link {
  display: inline-block; margin-top: 0.5rem; background: none; border: none;
  color: var(--muted); font: inherit; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; padding: 0.35rem 0; text-decoration: underline; text-underline-offset: 3px;
}
.btn-link:hover { color: var(--accent); }
.btn-finish {
  background: var(--accent); color: #fff; border-color: var(--accent);
  font-weight: 800; flex: 1 1 auto; min-width: 9rem;
}
.btn-finish:hover { background: #a86620; border-color: #a86620; }

.layout { display: grid; gap: 1.25rem; }
@media (min-width: 900px) {
  .layout { grid-template-columns: 1fr 1fr; align-items: start; }
  .preview-toggle { display: none !important; }
  .preview-col { display: block !important; }
}
.panel {
  background: var(--panel); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem;
}
.panel h2, .profile-heading {
  margin: 0 0 0.85rem; font-size: 1.05rem; color: var(--ink);
  font-weight: 800; letter-spacing: -0.02em;
}
.section-gap { margin-top: 1.25rem !important; }
.opt { font-weight: 500; color: var(--muted); font-size: 0.85em; }

label {
  display: block; font-size: 0.9rem; font-weight: 700; color: var(--ink); margin: 0.55rem 0 0.3rem;
}
input[type="text"], input[type="tel"], input[type="email"],
input[type="date"], input[type="datetime-local"], textarea, select {
  width: 100%; padding: 0.7rem 0.8rem; border: 2px solid var(--line);
  border-radius: var(--radius); font: inherit; background: var(--bg); min-height: 44px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--accent); border-color: var(--ink);
}
textarea { min-height: 80px; resize: vertical; }
.row-2 { display: grid; gap: 0.65rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .row-2 { grid-template-columns: 1fr; } }
.hint { font-size: 0.8rem; color: var(--muted); margin: 0.35rem 0 0.5rem; }
.hint-inline { color: var(--muted); font-size: 0.9rem; font-weight: 500; }

/* Profile */
.profile-panel { margin-bottom: 1rem; }
.profile-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.profile-summary .profile-heading { margin: 0 0 0.2rem; }
.profile-line { margin: 0; color: var(--muted); font-size: 0.9rem; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem; }

/* Chips */
.chip-fieldset {
  border: none; margin: 0 0 0.75rem; padding: 0;
}
.chip-fieldset legend {
  font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; padding: 0;
}
.chip-grid {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
}
.chip-grid-trades {
  max-height: 11.5rem; overflow-y: auto; padding: 0.15rem 0.1rem 0.35rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); margin-top: 0.35rem;
}
.trade-filter-label {
  margin-top: 0; font-size: 0.8rem; color: var(--muted); font-weight: 650;
}
#trade-filter {
  margin-bottom: 0.15rem;
}
.chip {
  appearance: none; border: 2px solid var(--ink); background: var(--panel);
  color: var(--ink); font: inherit; font-weight: 700; font-size: 0.9rem;
  padding: 0.65rem 0.95rem; min-height: 44px; border-radius: var(--radius);
  cursor: pointer; letter-spacing: -0.01em;
}
.chip:hover { border-color: var(--accent); }
.chip.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.chip-job { font-size: 0.88rem; }
.chip-note {
  font-size: 0.8rem; min-height: 36px; padding: 0.4rem 0.7rem;
  border-color: var(--line); font-weight: 650; color: var(--steel);
}
.chip-note:hover { border-color: var(--accent); color: var(--ink); }
.note-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.45rem; }

/* Photos — huge tap targets */
.photo-grid { display: grid; gap: 0.75rem; grid-template-columns: 1fr 1fr; }
.snap-wrap { position: relative; }
.snap-input {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.snap-target {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.25rem; min-height: 120px; padding: 1rem 0.5rem;
  border: 3px dashed var(--ink); border-radius: var(--radius);
  background: var(--mist); cursor: pointer; text-align: center;
  margin: 0;
}
.snap-target:hover, .snap-wrap:focus-within .snap-target {
  border-color: var(--accent); background: #e8e4dc;
}
.snap-icon { font-size: 1.6rem; line-height: 1; }
.snap-title {
  font-size: 1rem; font-weight: 800; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.snap-sub { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.photo-slot {
  display: none; border: 2px solid var(--steel); border-radius: var(--radius);
  padding: 0; background: var(--mist); margin-top: 0.4rem; overflow: hidden;
}
.snap-wrap.has-photo .snap-target { min-height: 56px; flex-direction: row; gap: 0.5rem; padding: 0.5rem; }
.snap-wrap.has-photo .snap-sub { display: none; }
.snap-wrap.has-photo .photo-slot { display: block; }
.photo-slot img {
  width: 100%; height: 140px; object-fit: cover; display: none; background: var(--line);
}
.photo-slot img.show { display: block; }
.photo-slot .ph { display: none; }
.photo-slot.has-img .ph { display: none; }

/* Checklist — big hit targets */
.check-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.5rem; margin-top: 1.25rem;
}
.check-head h2 { margin: 0; }
.check-actions { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.check-list { list-style: none; padding: 0; margin: 0.4rem 0 0; }
.check-list li {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0; border-bottom: 1px dashed var(--line); min-height: 48px;
}
.check-list input[type="checkbox"] {
  position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none;
}
.check-label {
  margin: 0; flex-shrink: 0; cursor: pointer;
  width: 44px; height: 44px; display: grid; place-items: center;
}
.check-box {
  width: 28px; height: 28px; border: 3px solid var(--ink); border-radius: 4px;
  background: var(--panel); display: block; position: relative;
}
.check-list input[type="checkbox"]:checked + .check-label .check-box {
  background: var(--accent); border-color: var(--ink);
}
.check-list input[type="checkbox"]:checked + .check-label .check-box::after {
  content: ""; position: absolute; left: 7px; top: 2px;
  width: 8px; height: 14px; border: solid #fff; border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.check-list input[type="checkbox"]:focus-visible + .check-label .check-box {
  outline: 2px solid var(--accent); outline-offset: 2px;
}
.check-list input[type="text"] {
  flex: 1; background: transparent; border: none; padding: 0.35rem 0;
  min-height: 44px; font-weight: 600;
}
.check-list input[type="text"]:focus {
  outline: none; border-bottom: 2px solid var(--accent);
}

/* Time disclosure */
.time-details {
  margin-top: 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.5rem 0.75rem; background: var(--bg);
}
.time-details summary {
  cursor: pointer; font-weight: 700; font-size: 0.85rem; color: var(--muted);
  list-style: none; min-height: 36px; display: flex; align-items: center;
}
.time-details summary::-webkit-details-marker { display: none; }
.time-details summary::before {
  content: "▸ "; color: var(--accent);
}
.time-details[open] summary::before { content: "▾ "; }

/* Preview toggle (narrow) */
.preview-toggle { width: 100%; margin-top: 1.25rem; }
.preview-banner { margin-bottom: 0.75rem; padding: 0.75rem 1rem; }
@media (max-width: 899px) {
  .preview-col { display: none; }
  .preview-col.is-open { display: block; }
}

/* Sticky finish / share bar */
.finish-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: var(--panel); border-top: 3px solid var(--ink);
  box-shadow: 0 -4px 16px rgba(18, 20, 23, 0.08);
}
.finish-bar-share, .finish-bar-done {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  justify-content: center;
}
.finish-bar .btn { flex: 1 1 calc(33% - 0.4rem); min-width: 5.5rem; font-weight: 800; }
.btn-share {
  background: var(--ink); color: #fff; border-color: var(--ink);
  font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase;
}
.btn-share:hover { background: var(--steel); }
@media (min-width: 720px) {
  .finish-bar { flex-direction: row; flex-wrap: wrap; justify-content: space-between; padding-left: 3%; padding-right: 3%; }
  .finish-bar-share, .finish-bar-done { justify-content: flex-end; }
  .finish-bar .btn { flex: 0 1 auto; }
  .finish-bar .btn-finish { min-width: 10rem; }
}
.section-share-row { margin: 0.35rem 0 0.55rem; }

/* Share sheet */
.share-sheet {
  position: fixed; inset: 0; z-index: 80; display: flex; align-items: flex-end; justify-content: center;
}
.share-sheet[hidden] { display: none !important; }
.share-sheet-backdrop {
  position: absolute; inset: 0; background: rgba(18, 20, 23, 0.55);
}
.share-sheet-panel {
  position: relative; z-index: 1; width: min(520px, 100%);
  max-height: min(88vh, 640px); overflow: auto;
  background: var(--panel); border: 3px solid var(--ink); border-bottom: none;
  border-radius: 12px 12px 0 0; padding: 1rem 1rem 1.25rem;
  box-shadow: 0 -8px 28px rgba(18,20,23,0.2);
}
.share-sheet-head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.share-sheet-head h2 { margin: 0; font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
.share-limits {
  margin: 0 0 0.85rem; padding: 0.65rem 0.75rem; background: var(--mist);
  border: 2px solid var(--line); border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 650; color: var(--ink); line-height: 1.4;
}
.share-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem;
}
.share-grid .btn { width: 100%; min-height: 48px; }
.share-compat {
  margin: 0.9rem 0 0; padding-left: 1.1rem; font-size: 0.8rem; color: var(--muted);
}
.share-compat li { margin: 0.25rem 0; }
.share-compat code { font-size: 0.75rem; }
.share-toast {
  position: fixed; left: 50%; bottom: calc(var(--finish-h) + 0.75rem);
  transform: translateX(-50%) translateY(120%);
  z-index: 90; max-width: min(92vw, 420px);
  background: var(--ink); color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 0.7rem 1rem; border-radius: var(--radius); border: 2px solid var(--accent);
  box-shadow: 0 6px 20px rgba(18,20,23,0.25);
  transition: transform 0.2s ease; pointer-events: none; text-align: center;
}
.share-toast.is-on { transform: translateX(-50%) translateY(0); }
body.share-sheet-open { overflow: hidden; }

/* Folio preview / print */
#folio {
  background: #fff; border: 2px solid var(--steel); border-radius: var(--radius);
  padding: 1.35rem; color: var(--ink);
}
.folio-head {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-bottom: 3px solid var(--ink); padding-bottom: 0.85rem; margin-bottom: 1rem;
}
.folio-head h1 { margin: 0; font-size: 1.45rem; color: var(--ink); font-weight: 800; letter-spacing: -0.02em; }
.folio-meta { font-size: 0.9rem; color: var(--muted); }
.folio-meta strong { color: var(--ink); }
.folio-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1rem 0;
}
.folio-photos figure {
  margin: 0; border: 2px solid var(--steel); border-radius: 4px; overflow: hidden;
  background: var(--mist);
}
.folio-photos img { width: 100%; height: 160px; object-fit: cover; display: block; background: var(--line); }
.folio-photos figcaption {
  padding: 0.4rem 0.6rem; font-size: 0.75rem; font-weight: 800;
  color: var(--ink); text-transform: uppercase; letter-spacing: 0.06em;
  border-top: 1px solid var(--line);
}
.folio-section { margin-top: 1rem; }
.folio-section h3 {
  margin: 0 0 0.5rem; font-size: 0.85rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 800;
}
.folio-checks { list-style: none; padding: 0; margin: 0; }
.folio-checks li {
  padding: 0.35rem 0 0.35rem 1.6rem; position: relative;
  border-bottom: 1px solid var(--line);
}
.folio-checks li::before {
  content: "☐"; position: absolute; left: 0; color: var(--ink); font-size: 1rem;
}
.folio-checks li.done::before { content: "☑"; color: var(--accent); }
.folio-notes {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.85rem; white-space: pre-wrap; font-size: 0.95rem;
}
.folio-stamp {
  margin-top: 1.25rem; font-size: 0.8rem; color: var(--muted);
  display: flex; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap;
  border-top: 2px solid var(--line); padding-top: 0.75rem;
}
.folio-stamp .stamp-mark {
  color: var(--accent); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}

@media print {
  body { background: #fff; padding-bottom: 0; }
  .no-print { display: none !important; }
  .finish-bar { display: none !important; }
  .share-sheet, .share-toast { display: none !important; }
  .wrap { width: 100%; max-width: none; padding: 0; margin: 0; }
  .layout { display: block; }
  .preview-col { display: block !important; }
  #folio { border: none; box-shadow: none; border-radius: 0; padding: 0; }
  .folio-photos img { height: 200px; }
  a { text-decoration: none; color: inherit; }
}

/* ——— Job phases ——— */
.phases-wrap .phase-progress {
  font-weight: 800; color: var(--accent); font-size: 0.95rem;
  min-height: 44px; display: inline-flex; align-items: center;
}
.phase-mode-row { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.55rem; }
.phase-mode-row .is-active, #btn-phase-skip-mode[aria-pressed="true"] {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.phase-chips { display: flex; flex-direction: column; gap: 0.45rem; }
.phase-item { display: grid; grid-template-columns: 1fr; gap: 0.25rem; }
@media (min-width: 520px) {
  .phase-item { grid-template-columns: 1fr minmax(7rem, 10rem); align-items: start; }
}
.phase-chip {
  text-align: left; width: 100%; line-height: 1.25;
  white-space: normal; min-height: 48px;
}
.phase-chip .phase-time {
  font-size: 0.72rem; font-weight: 650; opacity: 0.9;
}
.phase-chip.status-done {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.phase-chip.status-na {
  background: var(--mist); color: var(--muted); border-style: dashed;
  text-decoration: line-through;
}
.phase-note {
  font-size: 0.85rem; min-height: 40px; padding: 0.45rem 0.6rem;
}

/* ——— Job docs ——— */
.job-docs-wrap .docs-block {
  border: 2px solid var(--line); border-radius: var(--radius);
  background: var(--bg); padding: 0.35rem 0.75rem 0.75rem; margin: 0.55rem 0;
}
.docs-block summary {
  cursor: pointer; font-weight: 800; font-size: 0.95rem;
  min-height: 48px; display: flex; align-items: center; list-style: none;
}
.docs-block summary::-webkit-details-marker { display: none; }
.docs-block summary::before { content: "▸ "; color: var(--accent); }
.docs-block[open] summary::before { content: "▾ "; }
.chip-add-row { display: flex; gap: 0.4rem; align-items: center; margin: 0.35rem 0; }
.chip-add-row input { flex: 1; }
.tag-list { list-style: none; padding: 0; margin: 0.35rem 0 0.75rem; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag-list li {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--panel); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 0.35rem 0.55rem; font-weight: 700; font-size: 0.85rem;
}
.tag-x {
  border: none; background: transparent; color: var(--muted);
  font-size: 1.1rem; cursor: pointer; min-width: 32px; min-height: 32px;
}
.check-inline {
  display: flex; align-items: center; gap: 0.55rem; min-height: 44px;
  font-weight: 700; margin: 0.5rem 0;
}
.check-inline input { width: 22px; height: 22px; }
.sig-canvas {
  width: 100%; max-width: 560px; height: 140px;
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: #fff; touch-action: none; display: block;
}
.safety-text { font-weight: 650; }

/* ——— Plans markup ——— */
.plans-toolbar { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.4rem 0; }
.plans-upload-btn { margin: 0; cursor: pointer; }
.color-row { display: flex; gap: 0.4rem; margin: 0.35rem 0 0.55rem; }
.color-swatch {
  width: 36px; height: 36px; border-radius: 4px; border: 3px solid transparent;
  cursor: pointer; padding: 0;
}
.color-swatch.is-active { border-color: var(--accent); outline: 2px solid var(--ink); }
.tool-btn.is-active { background: var(--ink); color: #fff; }
.plan-tabs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.5rem; }
.plan-tab-wrap { display: inline-flex; align-items: stretch; }
.plan-tab {
  appearance: none; border: 2px solid var(--ink); background: var(--panel);
  font: inherit; font-weight: 700; padding: 0.45rem 0.7rem; min-height: 40px;
  border-radius: var(--radius) 0 0 var(--radius); cursor: pointer;
}
.plan-tab.is-active { background: var(--ink); color: #fff; }
.plan-tab-x {
  border: 2px solid var(--ink); border-left: none; background: var(--mist);
  font-weight: 800; cursor: pointer; min-width: 36px; border-radius: 0 var(--radius) var(--radius) 0;
}
.plan-canvas-wrap {
  position: relative; display: inline-block; max-width: 100%;
  border: 2px solid var(--steel); border-radius: var(--radius); overflow: hidden;
  background: #2A3036; touch-action: none;
}
.plan-canvas-wrap img { display: block; max-width: 100%; }
.plan-canvas-wrap canvas {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  cursor: crosshair; touch-action: none;
}

/* Folio extras */
.folio-timeline { list-style: none; padding: 0; margin: 0; }
.folio-timeline li {
  padding: 0.45rem 0 0.45rem 1.4rem; position: relative;
  border-bottom: 1px solid var(--line);
}
.folio-timeline li::before {
  content: "○"; position: absolute; left: 0; color: var(--muted);
}
.folio-timeline li.done::before { content: "●"; color: var(--accent); }
.folio-timeline li.na { opacity: 0.55; }
.folio-timeline li.na::before { content: "–"; }
.folio-plans { display: grid; gap: 0.75rem; }
.folio-plans figure { margin: 0; border: 2px solid var(--steel); border-radius: 4px; overflow: hidden; }
.folio-plans img { width: 100%; display: block; }
.folio-plans figcaption {
  padding: 0.35rem 0.55rem; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; border-top: 1px solid var(--line);
}
.folio-sig { max-width: 280px; border: 1px solid var(--line); background: var(--bg); display: block; }

/* ——— Accounts / auth ——— */
.topbar-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
#auth-root { margin-bottom: 1rem; }
.auth-panel {
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 0 rgba(18,20,23,0.06);
}
.auth-offline { border-style: dashed; }
.auth-banner {
  margin: 0 0 0.35rem;
  font-weight: 750;
  color: var(--ink);
}
.auth-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  align-items: center; justify-content: space-between;
}
.auth-form { margin-top: 0.75rem; display: grid; gap: 0.35rem; }
.auth-form label { font-weight: 700; font-size: 0.85rem; margin-top: 0.35rem; }
.auth-form input {
  width: 100%; padding: 0.65rem 0.75rem; border: 2px solid var(--line);
  border-radius: var(--radius); font: inherit; background: var(--bg);
}
.auth-form input:focus { outline: 2px solid var(--accent); border-color: var(--ink); }
.auth-actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.65rem;
}
.auth-status {
  margin: 0.5rem 0 0; font-size: 0.85rem; color: var(--muted); min-height: 1.2em;
}
.auth-status.is-err { color: #B42318; font-weight: 700; }
.auth-jobs { margin-top: 0.75rem; border-top: 1px solid var(--line); padding-top: 0.65rem; }
.auth-job-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.auth-job-list li {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: baseline;
  justify-content: space-between; padding: 0.35rem 0;
  border-bottom: 1px solid var(--mist);
}
.auth-job-open { text-align: left; font-weight: 750; color: var(--ink); }
