/* ============================================================
   Sunds Industrier – Processnavigator
   Gemensam CSS (css/style.css)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

:root {
  --orange: #E07B20;
  --blue: #2B5797;
  --blue-d: #1E3F6F;
  --blue-l: #4A7CC5;
  --bg: #FAFBFD;
  --card: #FFFFFF;
  --nav: #F3F5F9;
  --t1: #1A1D23;
  --t2: #4A5068;
  --t3: #8890A5;
  --border: #E2E6EE;
  --border-l: #F0F2F6;
  --green: #1D9E75;
  --green-bg: #E8F7F1;
  --amber: #D4940C;
  --amber-bg: #FFF8E6;
  --red: #CC3D3D;
  --red-bg: #FFF0F0;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.site-header {
  background: var(--card);
  border-bottom: 3px solid var(--blue);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .logo {
  height: 44px;
  width: auto;
}

.site-header .header-title {
  flex: 1;
}

.site-header .header-title h1 {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.2;
}

.site-header .header-title p {
  font-size: 12px;
  color: var(--t3);
  margin-top: 1px;
}

.site-header .cert-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cert-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--nav);
  color: var(--t2);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.cert-tag.pending {
  background: transparent;
  color: var(--t3);
  border: 1px dashed var(--border);
  font-style: italic;
}

/* === SEARCH === */
.site-search {
  position: relative;
  flex-shrink: 0;
}

.search-input {
  font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  width: 200px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--nav);
  color: var(--t1);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.search-input::placeholder {
  color: var(--t3);
}

.search-input:focus {
  border-color: var(--blue-l);
  box-shadow: 0 0 0 3px rgba(74,124,197,0.15);
  background: var(--card);
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 280px;
  margin-top: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
  max-height: 400px;
  overflow-y: auto;
}

.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--t1);
  border-bottom: 1px solid var(--border-l);
  transition: background 0.1s;
}

.search-result:last-child {
  border-bottom: none;
}

.search-result:hover,
.search-result.hover {
  background: #EBF0FA;
}

.search-result-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--t1);
}

.search-result-cat {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  padding: 1px 7px;
  border-radius: 3px;
  background: var(--nav);
  color: var(--t3);
  border: 1px solid var(--border-l);
  white-space: nowrap;
  flex-shrink: 0;
}

.search-no-result {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--t3);
  text-align: center;
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 10px 32px;
  background: var(--nav);
  border-bottom: 1px solid var(--border-l);
  font-size: 13px;
  color: var(--t3);
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  margin: 0 6px;
  color: var(--t3);
}

/* === FOOTER === */
.site-footer {
  text-align: center;
  padding: 24px 32px;
  font-size: 11px;
  color: var(--t3);
  border-top: 1px solid var(--border-l);
  margin-top: 40px;
}

/* === MAIN WRAPPER === */
.main-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
}

/* ============================================================
   INDEX: PROCESSKARTA
   ============================================================ */
.process-map {
  border: 2px solid var(--blue);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 4px 20px rgba(43,87,151,0.1);
  margin-top: 20px;
}

.map-title {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
  color: #fff;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Ledningsprocesser */
.map-ledning {
  background: linear-gradient(135deg, #dce6f1 0%, #e8eef6 100%);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 2px solid var(--blue);
}

.map-ledning a {
  background: var(--blue);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s;
  white-space: nowrap;
}

.map-ledning a:hover {
  background: var(--blue-d);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(30,63,111,0.25);
}

/* Mittsektion */
.map-middle {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  min-height: 180px;
}

.map-band {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 16px 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.map-band.left {
  background: var(--orange);
  transform: rotate(180deg);
}

.map-band.right {
  background: var(--orange);
}

.map-huvud {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, #f5f8f0 0%, #eef3e5 100%);
}

.map-huvud-label {
  font-size: 11px;
  font-weight: 700;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* Huvudflöde */
.map-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.map-flow a {
  background: #fff;
  border: 2px solid #4caf50;
  border-radius: 8px;
  padding: 12px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--t1);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.map-flow a:hover {
  background: #e8f5e9;
  border-color: #2e7d32;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(46,125,50,0.2);
}

.map-flow .arrow {
  font-size: 14px;
  color: #4caf50;
  padding: 0 3px;
  flex-shrink: 0;
  line-height: 1;
}

/* Operationskort på produktionssidan */
.op-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--t1);
  transition: all 0.15s;
}

.op-card:hover {
  background: var(--nav);
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.op-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.op-card small {
  font-size: 10px;
  color: var(--t3);
}

/* Stodprocesser */
.map-stod {
  border-top: 2px solid var(--amber);
  background: linear-gradient(180deg, #fffbf0 0%, var(--amber-bg) 100%);
  padding: 16px 24px;
}

.map-stod-label {
  font-size: 11px;
  font-weight: 700;
  color: #8a5500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.map-stod-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.map-stod-row a {
  background: #fff;
  border: 1.5px solid #e0b44a;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t1);
  text-decoration: none;
  transition: all 0.15s;
}

.map-stod-row a:hover {
  background: #fff3d6;
  border-color: #a06d00;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(191,108,0,0.15);
}

/* Resursrad */
.map-resurs {
  border-top: 1px solid var(--border);
  background: var(--nav);
  padding: 12px 24px;
  border-radius: 0 0 10px 10px;
}

.map-resurs-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--t3);
  margin-bottom: 8px;
}

.map-resurs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.map-resurs-row a {
  background: var(--card);
  border: 2px solid #78909c;
  border-radius: 5px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t1);
  text-decoration: none;
  transition: all 0.15s;
}

.map-resurs-row a:hover {
  background: #e0e4e7;
  border-color: #546e7a;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(84,110,122,0.12);
}

/* ============================================================
   PROCESSSIDA: Layout (main + sidebar)
   ============================================================ */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 24px;
  align-items: start;
}

.process-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Page header */
.page-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.page-header .badge {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.page-header .badge.blue { background: var(--blue); }
.page-header .badge.green { background: var(--green); }
.page-header .badge.amber { background: var(--amber); }
.page-header .badge.orange { background: var(--orange); }

.page-header h1 {
  font-size: 22px;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.2;
}

.page-header .owner {
  font-size: 13px;
  color: var(--t2);
  margin-top: 2px;
}

/* Kort/sektion */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.card h2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--t2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

/* === BPMN LEGEND === */
.bpmn-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 16px;
  background: var(--nav);
  border: 1px solid var(--border-l);
  border-radius: 6px;
  font-size: 12px;
  color: var(--t2);
}

.bpmn-legend .leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === BPMN FLOW === */
.flow-container {
  overflow-x: auto;
  padding: 16px 0;
}

.flow-shapes {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  padding: 8px 0;
}

.flow-labels {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding: 4px 0 0 0;
}

/* BPMN nodes */
.n-start, .n-end {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.n-start {
  border: 2.5px solid var(--green);
  background: var(--green-bg);
}

.n-end {
  border: 3.5px solid var(--red);
  background: var(--red-bg);
}

.n-task {
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}

.n-task:hover {
  background: var(--blue-d);
  box-shadow: 0 2px 8px rgba(43,87,151,0.3);
}

.n-task.active {
  background: var(--blue-d);
  box-shadow: 0 0 0 3px rgba(74,124,197,0.4);
}

.n-sub {
  border: 1.5px dashed var(--blue-l);
  background: rgba(43,87,151,0.06);
  color: var(--blue);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}

.n-sub:hover {
  background: rgba(43,87,151,0.12);
}

.n-gw {
  width: 36px;
  height: 36px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Arrows */
.arr {
  width: 32px;
  height: 2px;
  background: var(--t3);
  position: relative;
  flex-shrink: 0;
}

.arr::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid var(--t3);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.arr.ok { background: var(--green); }
.arr.ok::after { border-left-color: var(--green); }

.arr.no { background: var(--red); }
.arr.no::after { border-left-color: var(--red); }

/* Flow labels */
.flow-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--t3);
  text-align: center;
  padding: 0 2px;
}

/* Arrow labels (OK / NOK) */
.arr-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.arr.ok .arr-label { color: var(--green); }
.arr.no .arr-label { color: var(--red); }

/* === DETAIL PANEL === */
.detail-panel {
  background: var(--nav);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
  display: none;
}

.detail-panel.active { display: block; }

.detail-panel h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 8px;
}

.detail-panel p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

/* === SWIM LANES === */
.swim-lanes {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.swim-lane {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 64px;
  border-bottom: 1px solid var(--border-l);
}

.swim-lane:last-child { border-bottom: none; }

.swim-lane-label {
  background: var(--nav);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--t2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.swim-lane-label small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--t3);
  margin-top: 2px;
  line-height: 1.3;
}

.swim-lane-content {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--t1);
}

/* === SIDEBAR === */
.process-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.side-card h3 {
  font-size: 12px;
  font-weight: 600;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.side-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  font-size: 13px;
}

.side-card dt { color: var(--t3); font-weight: 500; }
.side-card dd { color: var(--t1); }

/* Process links (IN/UT) */
.proc-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proc-links li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.proc-links .dir {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.proc-links .dir.in {
  background: var(--green-bg);
  color: var(--green);
}

.proc-links .dir.out {
  background: var(--red-bg);
  color: var(--red);
}

.proc-links a {
  color: var(--blue);
  text-decoration: none;
  font-size: 13px;
}

.proc-links a:hover { text-decoration: underline; }

/* Document tags */
.doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.doc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.doc-list a {
  color: var(--t1);
  text-decoration: none;
}

.doc-list a:hover { color: var(--blue); text-decoration: underline; }

.doc-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.doc-tag.wps   { background: var(--amber-bg); color: var(--amber); }
.doc-tag.iso   { background: #e8eef7;         color: var(--blue); }
.doc-tag.form  { background: var(--green-bg);  color: var(--green); }
.doc-tag.sp    { background: var(--nav);        color: var(--t3); }
.doc-tag.env   { background: var(--green-bg);  color: var(--green); }
.doc-tag.safe  { background: var(--amber-bg);  color: var(--amber); }
.doc-tag.sdb   { background: var(--amber-bg);  color: var(--amber); }

/* ============================================================
   ORGANISATION: Flex-baserat organisationsschema
   ============================================================ */

/* Legend */
.org-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 14px;
  background: var(--nav);
  border: 1px solid var(--border-l);
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--t2);
}

.org-leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.org-leg-swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Grid-baserad layout: 13 kolumner, barn direkt under förälder */
.org-grid {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: auto 32px auto 32px auto 32px auto;
  justify-items: center;
  align-items: start;
  padding: 16px 0;
}

/* 9-rad variant (djupare hierarki) */
.org-grid-9 {
  grid-template-rows: auto 32px auto 32px auto 32px auto 32px auto;
}

/* Cell wrapper */
.org-cell {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ORG NODES — uniform size, fixed height for clean lines */
.org-node {
  background: var(--blue);
  color: #fff;
  border-radius: 7px;
  padding: 6px 4px;
  text-align: center;
  width: 100%;
  max-width: 82px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(43,87,151,0.15);
  overflow: hidden;
}

.org-node.vd {
  background: var(--blue-d);
}

.org-node.ekonomi {
  background: var(--orange);
}

.org-node.extern {
  background: var(--card);
  color: var(--t1);
  border: 2px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.org-node.kunder {
  background: #546e7a;
}

.org-node.verkstad {
  background: var(--green);
}

/* Stabsfunktioner (streckad ram) */
.org-node.stab {
  background: rgba(43,87,151,0.08);
  color: var(--t1);
  border: 2px dashed var(--blue-l);
  box-shadow: none;
}

/* Summary boxes (Kunder / Verkstad) — wider, shorter */
.org-node.summary {
  width: 100%;
  max-width: 180px;
  height: 38px;
  padding: 6px 20px;
}

.org-node.summary .org-title {
  font-size: 13px;
}

.org-node .org-title {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.org-node .org-person {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
  line-height: 1.2;
}

.org-node.extern .org-person {
  color: var(--t3);
}

/* Process owners table */
.owner-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.owner-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--nav);
  color: var(--t2);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 2px solid var(--border);
}

.owner-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-l);
  color: var(--t1);
}

.owner-table tr:last-child td { border-bottom: none; }

.owner-table .cat-row td {
  background: var(--nav);
  font-weight: 600;
  color: var(--t2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 6px 14px;
}

.owner-table a {
  color: var(--blue);
  text-decoration: none;
}

.owner-table a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .process-layout {
    grid-template-columns: 1fr;
  }

  .site-header { padding: 12px 16px; flex-wrap: wrap; }
  .breadcrumb { padding: 8px 16px; }
  .main-wrap { padding: 16px; }
  .site-search { width: 100%; order: 10; }
  .search-input { width: 100%; }
  .search-dropdown { min-width: 100%; }
  .site-header .cert-tags { display: none; }

  .map-middle { grid-template-columns: 36px 1fr 36px; }
  .map-band { font-size: 10px; padding: 10px 4px; }
  .map-flow { flex-wrap: wrap; gap: 6px; }
  .map-flow .arrow { display: none; }
  .map-flow a { min-width: 80px; font-size: 12px; }

  .swim-lane { grid-template-columns: 120px 1fr; }
}
