/* aHealingVisit v5 — Care Navigator chat + Jobs section.
   Loaded after style.css. Palette and type tokens come from style.css; nothing new
   is invented here. All responsive blocks live at the end of this file. */

.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ===================================================== Care Navigator launcher */
.cnlaunch {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 13px;
  border-radius: 100px;
  background: var(--teal);
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(60, 90, 85, 0.24), 0 2px 5px rgba(60, 90, 85, 0.16);
  transition: transform 0.18s ease, background 0.18s ease, bottom 0.22s ease;
}
.cnlaunch:hover {
  background: var(--teal-d);
  transform: translateY(-1px);
}
.cnlaunch:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}
.cnlaunch .cndot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.cnlaunch.tray {
  bottom: 96px;
}
.cnlaunch[hidden] {
  display: none;
}

/* ========================================================== chat panel shell */
.cnpanel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 72;
  width: 400px;
  height: 620px;
  max-height: calc(100vh - 44px);
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(46, 74, 95, 0.18), 0 3px 10px rgba(46, 74, 95, 0.1);
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cnpanel.open {
  opacity: 1;
  transform: none;
}
.cnpanel.tray {
  bottom: 96px;
  max-height: calc(100vh - 118px);
}
.cnhead {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px 13px 16px;
  background: var(--navy);
  color: #fff;
}
.cnhead .cnh {
  flex: 1;
  min-width: 0;
}
.cnhead .cnt {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}
.cnhead .cns {
  font-size: 12.8px;
  line-height: 1.4;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
}
.cnx {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
}
.cnx:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cnbody {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 15px 6px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cnnote {
  font-size: 12.4px;
  color: var(--dim);
  text-align: center;
  padding: 0 12px;
}

/* ---------------------------------------------------------------- messages */
.cnmsg {
  max-width: 88%;
  font-size: 15px;
  line-height: 1.52;
  border-radius: 15px;
  padding: 10px 13px;
  white-space: normal;
}
.cnmsg.bot {
  align-self: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  color: var(--ink);
}
.cnmsg.me {
  align-self: flex-end;
  background: var(--navy);
  border-bottom-right-radius: 5px;
  color: #fff;
}
.cnmsg p {
  margin: 0 0 8px;
}
.cnmsg p:last-child {
  margin-bottom: 0;
}
.cnmsg ul {
  margin: 6px 0 8px;
  padding-left: 18px;
}
.cnmsg li {
  margin-bottom: 4px;
}
.cnmsg strong {
  font-weight: 600;
}
.cnmsg a {
  color: var(--teal-d);
  text-decoration: underline;
}
.cnmsg.err {
  background: var(--bad-l);
  border-color: #e6cfcb;
  color: #7d3c36;
}

.cnwrapt {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cntyping {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 15px 15px 15px 5px;
}
.cntyping i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: cnb 1.1s infinite ease-in-out;
}
.cntyping i:nth-child(2) {
  animation-delay: 0.16s;
}
.cntyping i:nth-child(3) {
  animation-delay: 0.32s;
}
@keyframes cnb {
  0%, 80%, 100% { opacity: 0.28; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}
.cnstatus {
  align-self: flex-start;
  font-size: 12.6px;
  color: var(--dim);
  padding-left: 4px;
}

/* -------------------------------------------------------------- start chips */
.cnchips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cnchip {
  font-size: 13.4px;
  line-height: 1.35;
  text-align: left;
  padding: 8px 12px;
  border-radius: 100px;
  border: 1px solid var(--line2);
  background: var(--card);
  color: var(--navy);
}
.cnchip:hover {
  border-color: var(--teal);
  background: var(--teal-l);
}

/* --------------------------------------------------- facility cards in chat */
.cnfacs {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cnfhead {
  font-size: 12.4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim);
}
.cnfac {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 13px;
  text-align: left;
  width: 100%;
}
.cnfac:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.cnfac .cnfb {
  flex: 1;
  min-width: 0;
}
.cnfac .cnfn {
  display: block;
  font-weight: 600;
  font-size: 14.4px;
  color: var(--navy);
  line-height: 1.25;
}
.cnfac .cnfc {
  display: block;
  font-size: 12.6px;
  color: var(--dim);
  margin-top: 2px;
}
.cnfac .cnfr {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cnfac .stars svg {
  width: 12px;
  height: 12px;
}
.cnfac .stars .lbl {
  font-size: 11.6px;
}
.cnts {
  font-size: 11.6px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--mint);
  color: #2f5d54;
}
.cnts.fair {
  background: #f6efdf;
  color: #7a5c22;
}
.cnts.low,
.cnts.na {
  background: #eef0f1;
  color: var(--muted);
}
.cnfgo {
  flex: none;
  font-size: 12.4px;
  font-weight: 600;
  color: var(--teal-d);
  white-space: nowrap;
}

/* ---------------------------------------------------------------- composer */
.cnfoot {
  flex: none;
  border-top: 1px solid var(--line);
  background: var(--card);
  padding: 10px 12px 11px;
}
.cnform {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.cnform textarea {
  flex: 1;
  font-family: inherit;
  resize: none;
  font-size: 15px;
  line-height: 1.45;
  padding: 9px 11px;
  border: 1px solid var(--line2);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  max-height: 110px;
  min-height: 42px;
}
.cnform textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.cnsend {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
}
.cnsend:hover:not(:disabled) {
  background: var(--navy2);
}
.cnsend:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.cndisc {
  margin-top: 7px;
  font-size: 11.8px;
  line-height: 1.4;
  color: var(--dim);
  text-align: center;
}
.cndisc b {
  color: var(--bad);
  font-weight: 600;
}

/* ================================================================== Jobs view */
.jobsview {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 60px;
}
.jobshead {
  max-width: 720px;
}
.jobskick {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.6px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-d);
  background: var(--teal-l);
  border-radius: 100px;
  padding: 5px 12px;
}
.jobshead h1 {
  font-size: 42px;
  line-height: 1.08;
  margin-top: 14px;
  color: var(--navy);
}
.jobshead h1 em {
  font-style: italic;
  color: var(--teal-d);
}
.jobshead .jsub {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}
.jobstrust {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.jobstrust li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14.4px;
  color: var(--ink);
}
.jobstrust svg {
  color: var(--teal-d);
  flex: none;
}
.jobsactions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.jpost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.jpost:hover {
  background: var(--navy2);
}
.jpostnote {
  font-size: 13.6px;
  color: var(--dim);
}

.jfilters {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  padding: 15px 17px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.jfcell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 152px;
  flex: 1 1 152px;
}
.jfcell span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dim);
}
.jfcell select {
  appearance: none;
  font-size: 15.2px;
  padding: 9px 30px 9px 11px;
  border: 1px solid var(--line2);
  border-radius: 10px;
  background: var(--cream)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%2368757f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat right 10px center;
  color: var(--ink);
}
.jfcell select:focus {
  outline: none;
  border-color: var(--teal);
}
.jfreset {
  font-size: 13.8px;
  font-weight: 600;
  color: var(--teal-d);
  text-decoration: underline;
  padding-bottom: 10px;
}
.jcount {
  margin-top: 16px;
  font-size: 14.4px;
  color: var(--dim);
}

/* ----------------------------------------------------------------- job cards */
.jgrid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(348px, 1fr));
  gap: 16px;
}
.jcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 19px 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.jcard h3 {
  font-size: 21px;
  line-height: 1.22;
  color: var(--navy);
}
.jrolechip {
  display: inline-block;
  font-size: 11.8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 6px;
}
.jemp {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
}
.jempn {
  font-weight: 600;
  font-size: 15.6px;
  color: var(--ink);
}
.jempl {
  font-size: 13.6px;
  color: var(--dim);
  margin-top: 2px;
}
.jverif {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12.6px;
  font-weight: 600;
  color: #2f5d54;
  background: var(--mint);
  border-radius: 100px;
  padding: 4px 10px 4px 8px;
}
.jverif svg {
  flex: none;
}
.jtrust {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.jtrust .stars svg {
  width: 13px;
  height: 13px;
}
.jtrust .stars .lbl {
  font-size: 12px;
}
.jpay {
  margin-top: 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--navy);
}
.jpay em {
  font-family: 'Figtree', sans-serif;
  font-style: normal;
  font-size: 14px;
  color: var(--dim);
}
.jpay.none {
  font-size: 15px;
  color: var(--muted);
  font-family: 'Figtree', sans-serif;
}
.jmeta {
  margin-top: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.jpill {
  font-size: 12.6px;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--line2);
  color: var(--muted);
  background: var(--cream);
}
.jdesc {
  margin-top: 12px;
  font-size: 14.6px;
  line-height: 1.5;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jfoot {
  margin-top: auto;
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.japply {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 17px;
  border-radius: 100px;
  background: var(--teal-d);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.japply:hover {
  background: #45706a;
}
.jview {
  font-size: 14.2px;
  font-weight: 600;
  color: var(--teal-d);
  text-decoration: underline;
}
.jposted {
  margin-left: auto;
  font-size: 12.6px;
  color: var(--dim);
}
.jpend {
  margin-top: 10px;
  font-size: 12.6px;
  color: #7a5c22;
  background: #f9f3e6;
  border-radius: 8px;
  padding: 6px 9px;
}

/* -------------------------------------------------------------- empty state */
.jempty {
  margin-top: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}
.jempty h3 {
  font-size: 25px;
  color: var(--navy);
}
.jempty p {
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 16.4px;
  line-height: 1.58;
  color: var(--muted);
}
.jempty .jpost {
  margin-top: 20px;
}
.jempty .jhint {
  margin-top: 14px;
  font-size: 13.6px;
  color: var(--dim);
}

/* ================================================= post-a-role modal (5 steps) */
.prwrap {
  position: fixed;
  inset: 0;
  z-index: 84;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.prwrap.open {
  opacity: 1;
}
.prbd {
  position: absolute;
  inset: 0;
  background: rgba(36, 60, 78, 0.44);
  backdrop-filter: blur(2px);
}
.pr {
  position: relative;
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(36, 60, 78, 0.28);
  transform: translateY(10px) scale(0.99);
  transition: transform 0.2s ease;
}
.prwrap.open .pr {
  transform: none;
}
.prbar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.prback {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.8px;
  font-weight: 600;
  color: var(--teal-d);
}
.prback[hidden] {
  display: none;
}
.prsteps {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.prdot {
  width: 22px;
  height: 5px;
  border-radius: 100px;
  background: var(--line2);
}
.prdot.on {
  background: var(--teal);
}
.prdot.done {
  background: var(--teal-d);
}
.prx {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: var(--muted);
}
.prx:hover {
  background: var(--line);
  color: var(--navy);
}
.prscroll {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px 24px;
}
.prtitle {
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
}
.prsub {
  margin-top: 8px;
  font-size: 15.4px;
  line-height: 1.55;
  color: var(--muted);
}
.prfoot {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.prnext {
  margin-left: auto;
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 15.6px;
}
.prnext:hover:not(:disabled) {
  background: var(--navy2);
}
.prnext:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.prhint {
  font-size: 13.2px;
  color: var(--dim);
  max-width: 60%;
}
.prerr {
  margin-top: 12px;
  font-size: 14.2px;
  color: #7d3c36;
  background: var(--bad-l);
  border-radius: 10px;
  padding: 9px 12px;
}

/* ------------------------------------------------------------- step 1 lookup */
.prfield {
  margin-top: 18px;
}
.prlabel {
  display: block;
  font-size: 12.4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 5px;
}
.printxt,
.prsel,
.prfield textarea {
  font-family: inherit;
}
.printxt,
.prfield textarea {
  width: 100%;
  font-size: 16px;
  padding: 11px 13px;
  border: 1px solid var(--line2);
  border-radius: 11px;
  background: var(--cream);
  color: var(--ink);
}
.prfield textarea {
  min-height: 210px;
  line-height: 1.55;
  font-size: 14.8px;
  resize: vertical;
}
.printxt:focus,
.prfield textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.prsug {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.prsugrow {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 13px;
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.prsugrow:last-child {
  border-bottom: none;
}
.prsugrow:hover {
  background: var(--teal-l);
}
.prsugrow b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.prsugrow span {
  font-size: 13px;
  color: var(--dim);
}
.prpick {
  margin-top: 16px;
  border: 1.5px solid var(--teal);
  border-radius: 15px;
  background: var(--teal-l);
  padding: 16px 18px;
}
.prpick .prpn {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
  color: var(--navy);
}
.prpick .prpk {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 16px;
  margin-top: 12px;
}
.prpick .prpk div span {
  display: block;
  font-size: 11.8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-d);
}
.prpick .prpk div b {
  font-size: 14.8px;
  font-weight: 500;
  color: var(--ink);
}
.prcms {
  margin-top: 12px;
  font-size: 13.4px;
  color: #46605c;
}
.prswap {
  margin-top: 10px;
  font-size: 13.4px;
  font-weight: 600;
  color: var(--teal-d);
  text-decoration: underline;
}

/* ---------------------------------------------------------- pickers + chips */
.prchips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.prchip {
  font-size: 14.4px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--line2);
  background: var(--card);
  color: var(--ink);
}
.prchip:hover {
  border-color: var(--teal);
}
.prchip.on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.prroles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.prrole {
  text-align: left;
  padding: 13px 14px;
  border: 1px solid var(--line2);
  border-radius: 13px;
  background: var(--card);
}
.prrole:hover {
  border-color: var(--teal);
  background: var(--teal-l);
}
.prrole.on {
  border-color: var(--teal-d);
  border-width: 1.5px;
  background: var(--teal-l);
}
.prrole b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.prrole span {
  font-size: 12.8px;
  color: var(--dim);
}
.prstep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.prstepb {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--line2);
  background: var(--card);
  font-size: 20px;
  line-height: 1;
  color: var(--navy);
}
.prstepb:hover:not(:disabled) {
  border-color: var(--teal);
  background: var(--teal-l);
}
.prstepb:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.prstepv {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  min-width: 34px;
  text-align: center;
  color: var(--navy);
}
.prstepl {
  font-size: 14.2px;
  color: var(--dim);
}
.prpayrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-top: 8px;
}
.prpaycell {
  flex: 1 1 120px;
  min-width: 110px;
}
.prpaycell small {
  display: block;
  font-size: 12.4px;
  color: var(--dim);
  margin-bottom: 4px;
}
.prrange {
  width: 100%;
  accent-color: var(--teal-d);
}
.prpayout {
  margin-top: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: var(--navy);
}
.prsel {
  appearance: none;
  width: 100%;
  font-size: 15.4px;
  padding: 10px 30px 10px 12px;
  border: 1px solid var(--line2);
  border-radius: 11px;
  background: var(--cream)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%2368757f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat right 11px center;
  color: var(--ink);
}
.prsel:focus {
  outline: none;
  border-color: var(--teal);
}
.prnotecard {
  margin-top: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 15px;
  font-size: 13.8px;
  line-height: 1.55;
  color: var(--muted);
}
.prnotecard b {
  color: var(--navy);
}

/* --------------------------------------------------------- review + success */
.prprev {
  margin-top: 16px;
}
.prprevlbl {
  font-size: 12.4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.prdone {
  text-align: center;
  padding: 14px 0 4px;
}
.prtick {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-d);
}
.prdone h2 {
  font-size: 27px;
  color: var(--navy);
}
.prdone p {
  max-width: 460px;
  margin: 10px auto 0;
  font-size: 15.6px;
  line-height: 1.56;
  color: var(--muted);
}
.prdonebtns {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.prsecond {
  padding: 11px 20px;
  border-radius: 100px;
  border: 1px solid var(--line2);
  background: var(--card);
  font-weight: 600;
  font-size: 15.4px;
  color: var(--navy);
}
.prsecond:hover {
  border-color: var(--teal);
  background: var(--teal-l);
}

/* --------------------------------------------- facility lightbox jobs panel */
.lbjobs .jj {
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.lbjobs .jj:last-child {
  border-bottom: none;
}
.lbjobs .jjt {
  font-weight: 600;
  font-size: 15.4px;
  color: var(--navy);
}
.lbjobs .jjm {
  font-size: 13.2px;
  color: var(--dim);
  margin-top: 2px;
}
.lbhire {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  font-size: 14.2px;
  font-weight: 600;
  color: var(--teal-d);
  text-decoration: underline;
}

/* -------------------------------------- facility profile: openings in the rail */
/* The rail now carries a fourth panel. Sticky positioning stranded everything
   below the fold, so on wide screens the rail scrolls with the profile. */
@media (min-width: 901px) {
  .lbrail {
    position: static;
  }
}

/* =============================================================== responsive */
@media (max-width: 900px) {
  .jobshead h1 {
    font-size: 34px;
  }
  .jgrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .cnpanel {
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    border: none;
  }
  .cnlaunch {
    right: 14px;
    bottom: 14px;
    font-size: 15px;
    padding: 10px 16px 10px 11px;
  }
  .cnlaunch.tray {
    bottom: 104px;
  }
  .jobsview {
    padding: 24px 16px 48px;
  }
  .jobshead h1 {
    font-size: 30px;
  }
  .jobshead .jsub {
    font-size: 16.4px;
  }
  .jfilters {
    padding: 13px;
  }
  .jfcell {
    flex-basis: 100%;
    min-width: 0;
  }
  .prwrap {
    padding: 0;
  }
  .pr {
    max-width: none;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }
  .prscroll {
    padding: 18px 16px 22px;
  }
  .prtitle {
    font-size: 22px;
  }
  .prfoot {
    padding: 11px 14px;
  }
  .prhint {
    display: none;
  }
  .prroles {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .cnpanel,
  .prwrap,
  .pr,
  .cnlaunch {
    transition: none;
  }
  .cntyping i {
    animation: none;
  }
}
@media print {
  .cnlaunch,
  .cnpanel,
  .prwrap,
  .jobsview {
    display: none !important;
  }
}

