:root {
  color-scheme: light;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #172033;
  background: #f3f5f8;
  --blue: #245bdb;
  --blue-soft: #e9efff;
  --line: #dfe4ec;
  --muted: #687386;
  --panel: #ffffff;
  --warning: #9b5b00;
  --red: #c83c35;
  --yellow: #b97800;
  --green: #23845a;
  --purple: #7450c8;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 0; overflow-x: hidden; }
button, input, textarea, select { font: inherit; }

.topbar {
  height: 76px; padding: 0 32px; display: flex; align-items: center;
  justify-content: space-between; background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
}
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: 22px; }
h2 { margin-bottom: 0; font-size: 20px; }
.eyebrow { margin-bottom: 5px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.top-actions, .badges { display: flex; gap: 10px; align-items: center; }
.actor, .badge, .count { border-radius: 999px; padding: 7px 11px; background: #eef1f5; font-size: 13px; }
.warning { color: var(--warning); background: #fff2d9; }
.risk-red { color: #a12620; background: #ffe9e8; }
.risk-yellow { color: var(--yellow); background: #fff2d9; }
.risk-green { color: #176944; background: #e4f5ec; }
.risk-neutral { color: #536176; background: #eef1f5; }
a, button { text-decoration: none; }
.primary, .secondary, .icon-button {
  border: 0; cursor: pointer; border-radius: 9px; padding: 10px 14px;
}
.primary { color: white; background: var(--blue); }
.secondary { color: #26344d; background: #edf0f5; }
.icon-button { padding: 2px 8px; font-size: 26px; background: transparent; }

main { width: min(100%, 1500px); margin: 0 auto; padding: 20px 28px 56px; }
.primary-nav { display: flex; gap: 6px; margin-bottom: 14px; padding: 5px; border: 1px solid var(--line); border-radius: 12px; background: #fff; overflow-x: auto; }
.primary-nav-item { flex: 0 0 auto; border: 0; border-radius: 8px; padding: 10px 18px; background: transparent; color: #536176; cursor: pointer; }
.primary-nav-item.active, .primary-nav-item[aria-current="page"] { color: var(--blue); background: var(--blue-soft); font-weight: 700; }
.primary-nav-item:disabled { cursor: not-allowed; opacity: .45; }
[data-app-view][hidden], #project-actions[hidden] { display: none; }
.search-panel { display: grid; grid-template-columns: minmax(320px, 1fr) auto; gap: 18px; align-items: end; margin-bottom: 16px; }
.search-panel label { margin: 0; }
.search-panel .muted { margin: 0 0 11px; font-size: 12px; }
.company-overview { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.6fr); gap: 16px; margin-bottom: 16px; }
.project-selector-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr); gap: 10px 18px; align-items: end; }
.project-selector-label { margin: 0; }
.project-selector-panel .muted { grid-column: 1 / -1; margin: 0; font-size: 12px; }
.compact-heading { align-items: center; }
.company-work-items { display: grid; gap: 8px; margin-top: 12px; }
.company-work-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fbfcfe; color: inherit; text-align: left; cursor: pointer; }
.company-work-item:hover { border-color: #a9bee8; background: #f4f7ff; }
.company-work-item-action { color: var(--blue); font-size: 12px; font-weight: 700; }
.company-work-item h3 { margin: 0 0 4px; font-size: 14px; }
.company-work-item p { margin: 0; color: var(--muted); font-size: 12px; }
.company-work-item .meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; color: #526077; font-size: 11px; }
#project-context[hidden] { display: none; }
.company-view[hidden], #regular-workbench-overview[hidden] { display: none; }
.company-view { display: grid; gap: 16px; }
.company-summary { margin-bottom: 0; grid-template-columns: repeat(5, 1fr); }
.company-portfolio { overflow-x: auto; }
.company-portfolio table { width: 100%; border-collapse: collapse; font-size: 13px; }
.company-portfolio th, .company-portfolio td { padding: 11px 9px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.company-portfolio th { color: var(--muted); font-size: 12px; white-space: nowrap; }
.company-portfolio td { min-width: 92px; }
.company-portfolio td:nth-child(2), .company-portfolio td:nth-child(8) { min-width: 150px; }
.company-unavailable { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.company-unavailable div { padding: 13px; border: 1px solid var(--line); border-radius: 10px; background: #fbfcfe; }
.company-unavailable strong, .company-unavailable span { display: block; }
.company-unavailable span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.status-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.status { display: none; flex: 1; border-radius: 10px; padding: 11px 14px; background: var(--blue-soft); color: #244887; }
.status.visible { display: block; }
.status.error { background: #ffe9e8; color: #a12620; }
.project-hero, .panel { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; }
.project-hero { padding: 22px; display: flex; align-items: center; justify-content: space-between; }
.muted, .role-message, .hint { color: var(--muted); }
.project-hero .muted { margin: 8px 0 0; }
.stage-overview { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; margin: 14px 0; }
.stage-summary { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 2px 8px; align-items: center; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.stage-summary.current { border-color: #94b1f1; background: var(--blue-soft); }
.stage-summary-number { grid-row: 1 / 3; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; color: #fff; background: #91a0b7; font-size: 12px; font-weight: 800; }
.stage-summary.current .stage-summary-number { background: var(--blue); }
.stage-summary strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.stage-summary small { min-height: 14px; color: var(--blue); font-size: 11px; }
.current-stage-panel { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.current-stage-panel .muted { margin: 7px 0 0; }
.current-stage-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px; }

.metrics { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin: 14px 0; }
.metric { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 15px; }
.metric strong { display: block; margin-top: 8px; font-size: 24px; }
.metric span { color: var(--muted); font-size: 13px; }

.role-tabs { display: flex; gap: 8px; padding: 6px; margin: 18px 0; border-radius: 12px; background: #e9edf3; width: fit-content; }
.role-tab { border: 0; border-radius: 8px; padding: 10px 18px; background: transparent; cursor: pointer; color: #536176; }
.role-tab.active { background: #fff; color: var(--blue); box-shadow: 0 2px 10px rgba(30, 50, 90, .08); font-weight: 700; }

.workspace-grid { display: grid; grid-template-columns: minmax(0, 1.9fr) minmax(300px, .8fr); gap: 16px; }
#project-actions { grid-template-columns: 1fr; }
.panel { padding: 20px; }
.panel-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.heading-actions { display: flex; align-items: center; gap: 9px; }
.count { color: var(--blue); background: var(--blue-soft); }
.role-message { margin: 12px 0 16px; line-height: 1.55; }
.work-items { display: grid; gap: 10px; }
.section-title { margin: 16px 0 4px; font-size: 13px; color: var(--muted); font-weight: 700; }
.work-section:first-child .section-title { margin-top: 0; }
.work-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; padding: 15px; border: 1px solid var(--line); border-radius: 11px; }
.work-item h3 { margin: 0 0 6px; font-size: 16px; }
.work-item p { margin: 0; color: var(--muted); line-height: 1.45; }
.work-item .meta { margin-top: 8px; display: flex; gap: 8px; font-size: 12px; color: #526077; }
.work-item-actions { display: flex; align-items: flex-start; gap: 8px; }
.work-item-more { position: relative; }
.work-item-more summary { cursor: pointer; list-style: none; border-radius: 9px; padding: 10px 12px; background: #edf0f5; color: #26344d; }
.work-item-more summary::-webkit-details-marker { display: none; }
.work-item-more[open] { z-index: 6; }
.work-item-more .more-menu { position: absolute; right: 0; top: calc(100% + 6px); min-width: 130px; padding: 6px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 10px 26px rgba(20, 30, 50, .16); }
.work-item-more .more-menu button { width: 100%; white-space: nowrap; }
.work-history { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 12px; }
.work-history summary { cursor: pointer; color: var(--muted); font-size: 13px; font-weight: 700; }
.work-history .work-item { margin-top: 8px; background: #fafbfc; }
.empty { padding: 28px; border: 1px dashed #cbd3df; border-radius: 10px; text-align: center; color: var(--muted); }
.compact-empty { padding: 14px; font-size: 12px; }
.inline-project-overview { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 11px; background: #fbfcfe; }
.inline-project-overview span { color: var(--muted); font-size: 12px; }
.fact-list { margin: 12px 0 0; }
.fact-list div { padding: 12px 0; border-bottom: 1px solid #edf0f4; }
.fact-list dt { color: var(--muted); font-size: 12px; }
.fact-list dd { margin: 5px 0 0; font-weight: 650; }

.lifecycle-panel { margin-top: 0; overflow: hidden; }
.graph-legend { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; margin-bottom: 14px; padding: 11px 13px; border-radius: 10px; background: #f7f9fc; color: var(--muted); font-size: 12px; }
.graph-legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-node { display: inline-block; width: 18px; height: 12px; border-radius: 3px; background: #f8faff; border-left: 4px solid var(--blue); }
.legend-node.gate { border-left-color: var(--green); background: #edf8f2; }
.legend-node.decision { width: 13px; height: 13px; border: 2px solid var(--purple); border-radius: 2px; background: #f5f1ff; transform: rotate(45deg); }
.legend-line { display: inline-block; width: 25px; border-top: 2px solid #7d8da8; }
.legend-line.parallel { border-top-color: var(--blue); border-top-style: dashed; }
.legend-line.conditional { border-top-color: var(--purple); border-top-style: dashed; }
.lifecycle-scroll { overflow-x: auto; overflow-y: visible; border: 1px solid #e4e8ef; border-radius: 12px; background: #f8fafc; }
.lifecycle { position: relative; width: 100%; padding: 14px; }
.lifecycle-edges { position: absolute; inset: 0; z-index: 1; overflow: visible; pointer-events: none; }
.lifecycle-stage { --edge-rail-width: 82px; position: relative; padding: 0 var(--edge-rail-width) 22px 14px; border: 1px solid #dfe5ee; border-radius: 13px; background: rgba(255, 255, 255, .9); }
.lifecycle-stage + .lifecycle-stage { margin-top: 18px; }
.lifecycle-stage[data-focused="true"] { border-color: #789ce9; box-shadow: 0 0 0 3px rgba(36, 91, 219, .12); }
.stage-header { position: relative; z-index: 3; display: grid; grid-template-columns: 38px 1fr auto; gap: 10px; align-items: center; margin: 0 calc(var(--edge-rail-width) * -1) 14px -14px; padding: 13px 15px; border-bottom: 1px solid #e3e8f0; border-radius: 13px 13px 0 0; background: #f0f4ff; }
.stage-number { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: #fff; background: var(--blue); font-weight: 800; }
.stage-header h3 { margin: 0; font-size: 17px; }
.stage-header p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.stage-count { padding: 6px 9px; border-radius: 999px; background: #fff; color: #526077; font-size: 12px; }
.department-lane-headings { display: grid; grid-template-columns: repeat(6, minmax(150px, 1fr)); gap: 10px; margin-left: 86px; padding: 0 0 9px; color: #526077; font-size: 11px; font-weight: 750; text-align: center; }
.stage-flow { position: relative; z-index: 2; display: grid; gap: 10px; }
.flow-row { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 10px; align-items: stretch; min-height: 96px; }
.flow-row-note { color: var(--blue); font-size: 11px; font-weight: 700; text-align: right; }
.department-lanes { display: grid; grid-template-columns: repeat(6, minmax(150px, 1fr)); gap: 10px; }
.department-lane { display: grid; align-content: start; gap: 8px; min-width: 0; padding: 5px; border-radius: 10px; background: linear-gradient(180deg, rgba(238,243,251,.7), rgba(255,255,255,.15)); }
.flow-join { display: grid; grid-template-columns: 76px 1fr; align-items: center; min-height: 34px; color: #49617f; font-size: 11px; font-weight: 700; text-align: center; }
.flow-join::after { content: "↓"; grid-column: 2; display: block; color: #536b91; font-size: 19px; line-height: 1; }
.flow-join span { grid-column: 2; justify-self: center; padding: 4px 9px; border-radius: 999px; background: #eef3fb; }
.stage-handoff { display: flex; justify-content: center; align-items: center; min-height: 42px; color: #536b91; font-size: 20px; font-weight: 700; }
.node { position: relative; z-index: 3; display: block; width: 100%; min-width: 0; min-height: 82px; padding: 11px 12px; border: 1px solid #dbe3ef; border-left: 5px solid var(--blue); border-radius: 10px; background: #f8faff; box-shadow: 0 3px 12px rgba(28, 48, 86, .06); color: inherit; text-align: left; user-select: none; cursor: pointer; }
.node-heading { display: flex; justify-content: space-between; gap: 9px; align-items: flex-start; }
.node strong { display: block; font-size: 13px; line-height: 1.35; }
.node span { display: block; color: var(--muted); margin-top: 5px; font-size: 12px; }
.node .node-kind { flex: 0 0 auto; margin-top: 0; padding: 3px 6px; border-radius: 999px; background: var(--blue-soft); color: var(--blue); font-size: 10px; }
.node-gate { border-left-color: var(--green); background: #f2fbf6; }
.node-gate .node-kind { color: #176944; background: #dff4e8; }
.node-decision { border-left-color: var(--purple); background: #f8f5ff; }
.node-decision .node-kind { color: #6241ad; background: #ebe3ff; }
.stage-empty { position: relative; z-index: 2; padding: 20px; border: 1px dashed #ccd5e1; border-radius: 9px; color: var(--muted); text-align: center; }
.graph-edge { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: 1; }
.edge-serial { stroke: #536b91; }
.edge-parallel { stroke: var(--blue); stroke-dasharray: 6 5; }
.edge-conditional { stroke: var(--purple); stroke-dasharray: 8 5; }
#arrow-serial path { fill: #536b91; }
#arrow-parallel path { fill: var(--blue); }
#arrow-conditional path { fill: var(--purple); }

.node-detail-body { padding: 22px; }
.node-detail-contracts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.node-detail-contracts div { padding: 12px; border-radius: 10px; background: #f4f7fb; }
.node-detail-contracts span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; }
.node-detail-contracts strong { display: block; line-height: 1.45; font-size: 13px; }

dialog { width: min(620px, calc(100vw - 32px)); max-height: calc(100vh - 32px); overflow: auto; border: 0; border-radius: 15px; padding: 0; box-shadow: 0 26px 80px rgba(20, 30, 50, .25); }
#action-dialog { width: min(860px, 92vw); }
dialog::backdrop { background: rgba(20, 29, 45, .38); }
#action-form { padding: 22px; }
.dialog-heading { display: flex; justify-content: space-between; }
label { display: grid; gap: 8px; margin-top: 18px; font-weight: 650; }
input, textarea, select { width: 100%; border: 1px solid #cbd3df; border-radius: 9px; padding: 11px 12px; resize: vertical; background: #fff; }
.form-section { margin-top: 16px; padding: 14px; background: #f7f9fc; border-radius: 11px; }
.form-section[hidden] { display: none; }
label[hidden], .plan-version-context[hidden] { display: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.plan-version-context { padding: 12px; border: 1px solid #c8daf7; border-radius: 9px; background: #eef5ff; }
.plan-version-context strong { color: #244887; }
.plan-version-context p { margin: 7px 0 0; color: #4b5f7c; }
.plan-review-summary { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.plan-review-summary strong, .plan-review-summary span { padding: 5px 8px; border-radius: 999px; background: #e7eef9; font-size: 12px; }
.plan-review-summary strong { color: #244887; }
.plan-review-comment { margin: 12px 0 0; padding: 10px; border-left: 3px solid var(--blue); background: #fff; }
.plan-item-details { display: grid; gap: 12px; margin-top: 12px; }
.plan-item-detail { padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.plan-item-detail h3 { margin: 0 0 4px; }
.plan-item-detail > div > span { color: var(--muted); font-size: 12px; }
.plan-item-detail > p { line-height: 1.5; }
.plan-item-detail dl { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0; }
.plan-item-detail dl div { padding: 9px; border-radius: 8px; background: #f5f7fb; }
.plan-item-detail dt { color: var(--muted); font-size: 11px; }
.plan-item-detail dd { margin: 4px 0 0; line-height: 1.4; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 20px; }
.hint { font-size: 12px; margin: 10px 0 0; }
.dialog-status { display: none; margin: 12px 0 0; border-radius: 9px; padding: 10px 12px; background: var(--blue-soft); color: #244887; }
.dialog-status.visible { display: block; }
.dialog-status.error { background: #ffe9e8; color: #a12620; }
.primary:disabled, .secondary:disabled { cursor: wait; opacity: .72; }
@media (max-width: 980px) {
  .topbar { height: auto; min-height: 68px; padding: 14px 18px; flex-wrap: wrap; gap: 10px; }
  main { padding: 16px 18px 44px; }
  .company-overview, .workspace-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stage-overview { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-hero { align-items: flex-start; flex-direction: column; gap: 14px; }
  .current-stage-panel { align-items: flex-start; flex-direction: column; }
  .current-stage-actions { justify-content: flex-start; }
  .role-tabs { width: 100%; overflow-x: auto; }
  .department-lane-headings, .department-lanes { grid-template-columns: repeat(6, minmax(132px, 1fr)); min-width: 850px; }
}

@media (max-width: 640px) {
  main { padding-inline: 12px; }
  .topbar { padding-inline: 12px; }
  .project-selector-panel, .search-panel, .form-grid, .node-detail-contracts { grid-template-columns: 1fr; }
  .metrics, .company-summary, .stage-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel, .project-hero { padding: 16px; }
  .panel-heading { align-items: stretch; flex-direction: column; }
  .work-item, .company-work-item { grid-template-columns: 1fr; }
  .work-item .meta { flex-wrap: wrap; }
  .dialog-actions { flex-wrap: wrap; }
}
.graph-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.graph-empty-state { margin: 16px 0; padding: 20px; border: 1px solid #cfd9ef; border-radius: 14px; background: #f7f9fe; }
.graph-empty-state h3 { margin: 0 0 8px; }
.graph-empty-state > p { margin: 0 0 16px; color: var(--muted); }
.graph-empty-state dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; }
.graph-empty-state dl div { padding: 12px; border-radius: 10px; background: #fff; }
.graph-empty-state dt { color: var(--muted); font-size: 12px; }
.graph-empty-state dd { margin: 5px 0 0; font-weight: 650; line-height: 1.55; }
.graph-metadata { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 12px 0; }
.graph-metadata article, .graph-history article { padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.graph-metadata span, .graph-history span { display: block; color: var(--muted); font-size: 12px; }
.graph-metadata strong, .graph-history strong { display: block; margin-top: 5px; line-height: 1.5; }
.graph-history { margin: 12px 0 16px; }
.graph-history summary { cursor: pointer; font-weight: 700; }
.graph-history #graph-history-list { display: grid; gap: 8px; margin-top: 10px; }
@media (max-width: 720px) {
  .graph-empty-state dl, .graph-metadata { grid-template-columns: 1fr; }
}
.wide-dialog { width: min(1120px, calc(100vw - 32px)); max-height: calc(100vh - 32px); }
.wide-dialog .node-detail-body { overflow: auto; max-height: calc(100vh - 64px); }
.graph-editor-list { display: grid; gap: 12px; margin: 12px 0 20px; }
.graph-editor-card { border: 1px solid var(--line); border-radius: 14px; padding: 14px; background: var(--surface-soft); }
.graph-editor-card h3 { margin: 0 0 10px; }
.graph-editor-card-heading, .graph-editor-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.graph-editor-section-heading h3 { margin: 12px 0; }
.graph-editor-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.graph-editor-grid .wide { grid-column: 1 / -1; }
.graph-editor-remove { color: var(--danger, #b42318); }
.graph-publish-list { margin: 8px 0 0; padding-left: 20px; }
.graph-publish-nodes { display: grid; gap: 12px; margin-top: 12px; }
.graph-publish-node { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.graph-publish-node.is-blocked { border-color: #d44; background: #fff6f5; }
.graph-publish-node h4 { margin: 0 0 10px; }
.graph-publish-node h4 small { color: var(--muted); font-weight: 500; }
.graph-publish-node dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 14px; margin: 0; }
.graph-publish-node dl div { min-width: 0; }
.graph-publish-node dt { color: var(--muted); font-size: 12px; }
.graph-publish-node dd { margin: 3px 0 0; white-space: pre-wrap; overflow-wrap: anywhere; }
.graph-publish-blocking { margin: 10px 0 0; color: #a3261f; font-weight: 700; }
@media (max-width: 760px) {
  .graph-editor-grid, .graph-publish-node dl { grid-template-columns: 1fr; }
  .graph-editor-grid .wide { grid-column: auto; }
}
