:root {
  --ink: #102b2d;
  --ink-soft: #24484a;
  --paper: #f4f0e7;
  --paper-deep: #e5ded0;
  --white: #fffdf8;
  --signal: #f05a3d;
  --signal-dark: #b93825;
  --mint: #8bc7b5;
  --muted: #7b837e;
  --line: rgba(16, 43, 45, .14);
  --shadow: 0 24px 70px rgba(16, 43, 45, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 5%, rgba(139, 199, 181, .28), transparent 25rem),
    linear-gradient(135deg, var(--paper) 0%, #eee8dc 100%);
  font-family: "Avenir Next", "Century Gothic", sans-serif;
}

button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.hidden { display: none !important; }

.paper-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(2rem, 7vw, 8rem);
  overflow: hidden;
  position: relative;
}

.login-shell::before {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(16, 43, 45, .13);
  border-radius: 50%;
  left: -16vw;
  bottom: -20vw;
  box-shadow: 0 0 0 7vw rgba(16, 43, 45, .025), 0 0 0 14vw rgba(16, 43, 45, .018);
}

.brand-kicker, .eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 700;
}

.login-brand h1 {
  margin: .7rem 0 1.3rem;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: .88;
  letter-spacing: -.055em;
  font-weight: 600;
}

.login-brand h1 em { color: var(--signal); font-weight: 500; }
.login-brand p { max-width: 37rem; font-size: 1.13rem; line-height: 1.7; color: var(--ink-soft); }

.login-card {
  position: relative;
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.8rem);
  border: 1px solid rgba(16, 43, 45, .1);
  border-radius: 2px 2px 44px 2px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.35rem;
}

.signal-mark { display: flex; align-items: end; gap: 5px; height: 28px; margin-bottom: .8rem; }
.signal-mark i { display: block; width: 6px; background: var(--signal); border-radius: 6px; }
.signal-mark i:nth-child(1) { height: 10px; }
.signal-mark i:nth-child(2) { height: 18px; }
.signal-mark i:nth-child(3) { height: 28px; }

label { display: grid; gap: .48rem; font-size: .79rem; font-weight: 700; letter-spacing: .02em; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbf8f1;
  color: var(--ink);
  border-radius: 10px;
  padding: .9rem 1rem;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
input:focus, textarea:focus, select:focus { border-color: var(--mint); box-shadow: 0 0 0 4px rgba(139, 199, 181, .2); }

.button {
  border: 0;
  border-radius: 999px;
  padding: .9rem 1.25rem;
  font-weight: 700;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: white; background: var(--signal); box-shadow: 0 10px 24px rgba(240, 90, 61, .22); }
.button-primary:hover { background: var(--signal-dark); }
.button-secondary { color: white; background: var(--ink); }
.button-ghost { background: var(--paper-deep); color: var(--ink); }
.button-danger { color: var(--signal-dark); background: #fee6df; }
.form-error { min-height: 1.1rem; margin: 0; color: var(--signal-dark); font-size: .8rem; }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: 238px 1fr; }
.sidebar {
  min-height: 100vh;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 2rem 1.35rem;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
}
.wordmark { font-weight: 800; letter-spacing: .18em; font-size: 1.05rem; padding: 0 .75rem 3.5rem; }
.wordmark span { color: var(--signal); }
nav { display: grid; gap: .45rem; }
.nav-item {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.52);
  padding: .9rem .8rem;
  border-radius: 11px;
  text-align: left;
  font-weight: 700;
}
.nav-item span { font-size: .65rem; margin-right: .65rem; opacity: .6; }
.nav-item.active { color: white; background: rgba(255,255,255,.09); }
.sidebar-note { margin-top: auto; display: flex; gap: .75rem; align-items: flex-start; padding: 1rem .75rem; border-top: 1px solid rgba(255,255,255,.1); }
.sidebar-note strong, .sidebar-note small { display: block; }
.sidebar-note strong { font-size: .76rem; }
.sidebar-note small { margin-top: .25rem; color: rgba(255,255,255,.45); font-size: .65rem; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(139,199,181,.12); margin-top: .2rem; }
.logout-button { border: 0; background: transparent; color: rgba(255,255,255,.5); text-align: left; padding: .7rem .75rem 0; }

.main-content { padding: clamp(1.5rem, 3vw, 3rem); min-width: 0; }
.topbar { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2rem; }
.topbar h2 { margin: .25rem 0 0; font-family: "Iowan Old Style", "Palatino Linotype", serif; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.035em; }
.topbar-actions { display: flex; align-items: center; gap: .8rem; }
.user-pill { background: rgba(255,255,255,.64); border: 1px solid var(--line); padding: .7rem 1rem; border-radius: 999px; font-size: .75rem; font-weight: 700; }

.metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.metric { min-height: 150px; padding: 1.25rem; border: 1px solid var(--line); background: rgba(255,253,248,.72); border-radius: var(--radius); display: flex; flex-direction: column; }
.metric span { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.metric strong { margin: auto 0 -.15rem; font: 600 clamp(2.8rem, 5vw, 4.2rem)/1 "Iowan Old Style", serif; }
.metric small { color: var(--muted); }
.metric-ink { background: var(--ink); color: white; }
.metric-ink small { color: rgba(255,255,255,.55); }
.metric-alert strong { color: var(--signal); }

.operations-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr); gap: 1rem; margin-bottom: 1rem; }
.panel { background: rgba(255,253,248,.82); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 32px rgba(16,43,45,.04); }
.panel-heading { padding: 1.25rem 1.4rem; display: flex; justify-content: space-between; align-items: end; gap: 1rem; border-bottom: 1px solid var(--line); }
.panel-heading h3, .modal h3 { margin: .22rem 0 0; font: 600 1.45rem/1.1 "Iowan Old Style", serif; }
.legend { display: flex; gap: 1rem; color: var(--muted); font-size: .68rem; }
.legend span { display: flex; align-items: center; gap: .35rem; }
.legend i { width: 7px; height: 7px; border-radius: 50%; background: #9ba29e; }
.legend i.legend-live { background: var(--signal); }
#map { height: 440px; background: #dfe4dc; }
.leaflet-tile-pane { filter: saturate(.55) sepia(.08); }
.leaflet-control-attribution { font-size: 9px; }
.hostion-marker { width: 18px !important; height: 18px !important; border-radius: 50%; background: var(--signal); border: 4px solid white; box-shadow: 0 0 0 4px rgba(240,90,61,.22), 0 4px 12px rgba(16,43,45,.25); }

.worker-list { max-height: 440px; overflow: auto; }
.worker { padding: 1.05rem 1.3rem; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .8rem; }
.worker:last-child { border-bottom: 0; }
.avatar { width: 38px; height: 38px; border-radius: 13px; display: grid; place-items: center; background: var(--paper-deep); font: 700 .8rem "Avenir Next", sans-serif; }
.worker.live .avatar { background: var(--ink); color: white; }
.worker strong, .worker small { display: block; }
.worker strong { font-size: .8rem; }
.worker small { color: var(--muted); font-size: .68rem; margin-top: .25rem; }
.worker-status { width: 8px; height: 8px; border-radius: 50%; background: #b0b4b1; }
.worker.live .worker-status { background: var(--mint); box-shadow: 0 0 0 5px rgba(139,199,181,.18); }
.worker.alert .worker-status { background: var(--signal); box-shadow: 0 0 0 5px rgba(240,90,61,.16); }
.empty-state { padding: 2.5rem 1.4rem; color: var(--muted); text-align: center; font-size: .82rem; }

.task-panel { margin-bottom: 2rem; }
.filter-row { display: flex; gap: .35rem; }
.filter { border: 0; background: transparent; color: var(--muted); border-radius: 999px; padding: .5rem .8rem; font-size: .7rem; font-weight: 700; }
.filter.active { background: var(--ink); color: white; }
.task-table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 1rem 1.4rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
th { color: var(--muted); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
td { font-size: .78rem; }
td:first-child { font-weight: 700; }
tbody tr:last-child td { border-bottom: 0; }
.status { display: inline-flex; border-radius: 999px; padding: .38rem .62rem; font-size: .64rem; font-weight: 800; }
.status-assigned { background: #ebe8df; color: #66706b; }
.status-in_progress { background: #dceae5; color: #326554; }
.status-submitted { background: #fff0cd; color: #856519; }
.status-accepted { background: #d9eee6; color: #237255; }
.status-rework { background: #fee1da; color: var(--signal-dark); }
.table-action { border: 0; background: transparent; color: var(--signal-dark); font-weight: 800; font-size: .72rem; }
.specialist-cell { min-width: 190px; max-width: 280px; }
.specialist-cell small { display: block; margin-top: .42rem; color: var(--muted); font-size: .67rem; line-height: 1.35; white-space: normal; }
.specialist-request { display: inline-flex; border-radius: 999px; padding: .38rem .62rem; background: #fee1da; color: var(--signal-dark); font-size: .64rem; font-weight: 900; }
.specialist-none { color: var(--muted); font-size: .68rem; }
.rework-requirements { display: grid; gap: 1rem; margin-top: .9rem; padding: 1rem; border: 1px solid #f1b7a9; border-radius: 16px; background: #fff7f3; }
.rework-requirements label { display: grid; gap: .45rem; }
.rework-requirements fieldset { display: flex; flex-wrap: wrap; gap: .65rem 1rem; margin: 0; padding: .9rem; border: 1px solid var(--line); }
.rework-requirements legend { padding: 0 .35rem; color: var(--muted); font-size: .7rem; font-weight: 800; }
.rework-requirements fieldset label { display: flex; align-items: center; gap: .45rem; font-size: .75rem; font-weight: 750; }
.rework-requirements input { width: auto; }
.rework-review-result { margin: 1rem 0; padding: .9rem; border-left: 4px solid var(--signal); background: #fff7f3; }
.rework-review-result p { margin: .45rem 0 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }

.modal {
  width: min(620px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  border: 0;
  border-radius: 4px 4px 34px 4px;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(16,43,45,.3);
}
.modal::backdrop { background: rgba(16,43,45,.65); backdrop-filter: blur(5px); }
.modal form { padding: 1.7rem; display: grid; gap: 1rem; }
.modal-heading { display: flex; justify-content: space-between; align-items: start; margin-bottom: .5rem; }
.icon-button { border: 0; background: transparent; font-size: 1.8rem; line-height: 1; color: var(--muted); }
.modal-actions { display: flex; justify-content: flex-end; gap: .7rem; margin-top: .5rem; }
.modal-actions.split { justify-content: space-between; }
.review-modal { width: min(820px, calc(100vw - 2rem)); }
.review-summary { background: var(--paper); padding: 1rem; border-radius: 12px; font-size: .8rem; line-height: 1.6; }
.check-row { display: flex; gap: .6rem; padding: .45rem 0; border-bottom: 1px solid var(--line); }
.check-row:last-child { border-bottom: 0; }
.check-ok { color: #24775b; font-weight: 800; }
.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.evidence { min-height: 180px; border: 1px solid var(--line); border-radius: 12px; padding: .8rem; display: flex; flex-direction: column; gap: .65rem; background: #faf7f0; }
.evidence strong { font-size: .72rem; }
.evidence-preview { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 10px; background: #eef1ed; display: grid; place-items: center; }
.evidence-preview img, .evidence-preview video { width: 100%; height: 100%; object-fit: cover; display: block; }
.evidence-preview video { object-fit: contain; background: #111; }
.evidence-preview { position: relative; cursor: zoom-in; }
.media-expand { position: absolute; right: .45rem; bottom: .45rem; width: 2rem; height: 2rem; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: #102b2d; font-weight: 900; cursor: zoom-in; }
.media-absence { grid-column: 1 / -1; min-height: auto; padding: .9rem; border: 1px dashed var(--line); }
.media-loading { color: var(--muted); font-size: .7rem; }

@media (max-width: 1100px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .operations-grid { grid-template-columns: 1fr; }
  .team-panel { max-height: none; }
}

@media (max-width: 780px) {
  .login-shell { grid-template-columns: 1fr; gap: 2rem; padding: 1.3rem; }
  .login-brand h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .app-shell { display: block; }
  .sidebar { min-height: auto; height: auto; position: static; padding: 1rem; flex-direction: row; align-items: center; gap: 1rem; }
  .wordmark { padding: 0; }
  .sidebar nav, .sidebar-note { display: none; }
  .logout-button { margin-left: auto; padding: 0; }
  .main-content { padding: 1rem; }
  .topbar { align-items: flex-start; }
  .topbar-actions { flex-direction: column; align-items: flex-end; }
  .user-pill { display: none; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 125px; }
  #map { height: 330px; }
  .legend { display: none; }
  th:nth-child(3), td:nth-child(3) { display: none; }
  .evidence-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .metrics { grid-template-columns: 1fr; }
  .topbar { display: block; }
  .topbar-actions { align-items: stretch; margin-top: 1rem; }
  .filter-row { display: none; }
  .panel-heading { align-items: start; }
  .evidence-grid { grid-template-columns: 1fr; }
  .modal-actions.split { flex-direction: column-reverse; }
}

/* Complete media review and internal specialist workflow */
.hostion-specialist-request {
  margin: 18px 0;
  padding: 20px;
  border: 1px solid rgba(241, 88, 62, .28);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff8f4 0%, #fff 68%);
  box-shadow: 0 14px 34px rgba(67, 41, 31, .08);
}
.hostion-specialist-request-head,
.hostion-specialist-request-actions,
.hostion-media-heading > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hostion-specialist-request-head span { color: #e64f36; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.hostion-specialist-request-head strong { color: #6d746f; font-size: 13px; }
.hostion-specialist-request dl { margin: 18px 0; }
.hostion-specialist-request dt { color: #7b817d; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.hostion-specialist-request dd { margin: 6px 0 0; color: #113b38; font-size: 17px; font-weight: 800; white-space: pre-wrap; }
.button-specialist { background: #0d3b38; color: #fff; border: 0; }
.hostion-media-heading { grid-column: 1 / -1; margin-bottom: 10px; }
.hostion-media-heading strong { display: grid; place-items: center; min-width: 36px; height: 36px; padding: 0 10px; border-radius: 18px; background: #113b38; color: #fff; }
.hostion-complete-media-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; width: 100%; }
.hostion-media-card { overflow: hidden; position: relative; border: 1px solid #dfe5df; border-radius: 18px; background: #f7f7f2; }
.hostion-media-card img,
.hostion-media-card video { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: contain; background: #102d2b; }
.hostion-media-card img { cursor: zoom-in; }
.hostion-media-meta { display: flex; justify-content: space-between; gap: 10px; padding: 12px 14px; }
.hostion-media-meta span { color: #ed5a3e; font-weight: 900; }
.hostion-media-meta small { color: #425c59; text-align: right; }
.hostion-media-fullscreen { position: absolute; right: 10px; bottom: 10px; padding: 7px 11px; border: 0; border-radius: 999px; background: rgba(10, 41, 39, .9); color: #fff; font-weight: 800; }
.hostion-media-error,
.hostion-no-video { margin: 12px; padding: 14px; border-radius: 12px; background: #fff0ed; color: #a33a2d; font-weight: 700; }
.hostion-no-video { grid-column: 1 / -1; background: #f1f3ef; color: #68716d; }
.hostion-media-lightbox { width: min(1100px, 94vw); max-width: none; max-height: 92vh; padding: 0; border: 0; border-radius: 22px; background: #0d2826; }
.hostion-media-lightbox::backdrop { background: rgba(7, 27, 25, .84); }
.hostion-lightbox-body { display: grid; place-items: center; min-height: 60vh; }
.hostion-lightbox-body img { max-width: 100%; max-height: 88vh; object-fit: contain; }
.hostion-lightbox-close { position: fixed; z-index: 2; top: 18px; right: 18px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #fff; color: #123b38; font-size: 28px; }
#specialistNavBadge { min-width: 24px; height: 24px; display: inline-grid; place-items: center; margin-left: auto; border-radius: 12px; background: #f15a3c; color: #fff; font-size: 11px; }
#specialistNavBadge.is-empty { opacity: .45; }
.hostion-specialist-view { overflow-y: auto; }
.hostion-specialist-count { display: grid; place-items: center; min-width: 64px; height: 64px; border-radius: 22px; background: #113b38; color: #fff; font: 900 26px/1 serif; }
.hostion-specialist-header-actions { display: flex; align-items: center; gap: 12px; }
.hostion-specialist-toolbar { display: flex; gap: 8px; }
.hostion-specialist-toolbar button { padding: 10px 16px; border: 1px solid #d8dfda; border-radius: 999px; background: #fff; color: #425c59; font-weight: 800; }
.hostion-specialist-toolbar button.is-active { background: #113b38; color: #fff; }
.hostion-specialist-rows { display: grid; gap: 10px; }
.hostion-specialist-row { display: grid; grid-template-columns: 58px minmax(240px, 1.5fr) minmax(190px, 1fr) auto 150px; align-items: center; gap: 16px; width: 100%; padding: 18px; border: 1px solid #e0e4df; border-radius: 17px; background: #fff; color: #163b38; text-align: left; }
.hostion-specialist-row:hover { border-color: #f15a3c; box-shadow: 0 10px 28px rgba(23, 53, 50, .08); }
.hostion-specialist-row span { min-width: 0; }
.hostion-specialist-row strong,
.hostion-specialist-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hostion-specialist-row small,
.hostion-specialist-row time { margin-top: 4px; color: #7a8580; font-size: 12px; }
.hostion-specialist-row-number { color: #f15a3c; font-weight: 900; }
.status-badge { display: inline-flex; align-items: center; justify-content: center; padding: 7px 11px; border-radius: 999px; background: #eef2ef; color: #274e4a; font-size: 12px; font-weight: 900; }
.status-new, .status-decision_required { background: #fff0e8; color: #b94c2f; }
.status-closed { background: #dff4ea; color: #1c7356; }
.status-cancelled { background: #eee; color: #747474; }
.hostion-specialist-dialog { width: min(980px, 94vw); max-width: none; max-height: 92vh; padding: 0; border: 0; border-radius: 28px; background: #fff; }
.hostion-specialist-dialog::backdrop { background: rgba(9, 42, 39, .72); backdrop-filter: blur(6px); }
.hostion-specialist-dialog-shell { max-height: 92vh; overflow-y: auto; padding: 28px; }
.hostion-specialist-dialog header,
.hostion-specialist-dialog footer { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.hostion-specialist-dialog h2 { margin: 6px 0; color: #113b38; font: 800 clamp(25px, 4vw, 42px)/1.05 Georgia, serif; }
.hostion-specialist-dialog header p { margin: 0; color: #667672; }
.hostion-source-card { display: grid; grid-template-columns: .7fr 1.3fr; gap: 14px; margin: 24px 0; padding: 18px; border-radius: 18px; background: #eef4ef; }
.hostion-source-card span,
.hostion-source-card strong { display: block; }
.hostion-source-card span { margin-bottom: 5px; color: #73817c; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.hostion-specialist-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.hostion-specialist-form-grid label { display: grid; gap: 7px; color: #163b38; font-weight: 800; }
.hostion-specialist-form-grid input,
.hostion-specialist-form-grid select,
.hostion-specialist-form-grid textarea { width: 100%; padding: 12px 14px; border: 1px solid #d9dfda; border-radius: 12px; background: #fffdf9; color: #163b38; font: inherit; }
.hostion-specialist-form-grid textarea { min-height: 110px; resize: vertical; }
.hostion-specialist-form-grid small { color: #a06f21; font-size: 11px; }
.hostion-specialist-form-grid .span-2 { grid-column: 1 / -1; }
.hostion-specialist-dialog footer { align-items: center; margin-top: 24px; }
.hostion-specialist-create-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.hostion-specialist-create-actions .button:disabled { cursor: not-allowed; opacity: .42; filter: grayscale(.25); box-shadow: none; }
#specialistCaseMessage { color: #26745d; font-weight: 800; }
@media (max-width: 820px) {
  .hostion-complete-media-grid,
  .hostion-specialist-form-grid,
  .hostion-source-card { grid-template-columns: 1fr; }
  .hostion-specialist-form-grid .span-2 { grid-column: auto; }
  .hostion-specialist-row { grid-template-columns: 44px 1fr; }
  .hostion-specialist-row > :nth-child(n+3) { grid-column: 2; }
}
