:root {
  --ink: #17201e;
  --muted: #62706c;
  --line: #d8dfdc;
  --surface: #ffffff;
  --canvas: #f3f6f5;
  --sidebar: #172320;
  --green: #087a5b;
  --green-dark: #056348;
  --green-soft: #e5f4ee;
  --amber: #a45c08;
  --amber-soft: #fff2da;
  --red: #b33a37;
  --red-soft: #fdebea;
  --blue: #286d8d;
  --blue-soft: #e7f2f7;
  --shadow: 0 12px 34px rgba(17, 35, 31, .11);
  --sidebar-width: 240px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Microsoft YaHei UI", "PingFang SC", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [data-action]:focus-visible {
  outline: 2px solid #2f8aa8;
  outline-offset: 2px;
}
.hidden { display: none !important; }
.muted { color: var(--muted); }
.danger-text { color: var(--red); }

.login-screen {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #edf2f0;
}
.login-panel {
  width: min(420px, 100%);
  padding: 34px;
  background: var(--surface);
  border: 1px solid #ccd7d3;
  border-top: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.brand-lockup { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand-lockup > span:last-child { display: grid; min-width: 0; }
.brand-lockup strong { font-size: 16px; line-height: 1.4; }
.brand-lockup small { color: #9ba9a5; font-size: 11px; margin-top: 1px; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 6px; flex: 0 0 auto; }
.brand-mark svg { width: 19px; height: 19px; }
.login-brand { color: var(--ink); }
.login-copy { margin: 42px 0 26px; }
.login-copy h1 { font-size: 23px; margin: 0 0 9px; }
.login-copy p { color: var(--muted); line-height: 1.7; margin: 0; }

.stack-form { display: grid; gap: 17px; }
label { display: grid; gap: 7px; color: #38433f; font-weight: 600; font-size: 13px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd5d1;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  padding: 10px 11px;
  outline: none;
  min-height: 40px;
}
textarea { min-height: 104px; resize: vertical; line-height: 1.65; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(8, 122, 91, .12); }
.form-error { color: var(--red); min-height: 20px; margin: -5px 0 0; font-size: 13px; }

.button {
  min-height: 38px;
  border: 1px solid #c9d3cf;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 650;
  white-space: nowrap;
}
.button:hover { background: #f5f8f7; }
.button.primary { border-color: var(--green); background: var(--green); color: #fff; }
.button.primary:hover { background: var(--green-dark); }
.button.danger { border-color: #e4b1af; color: var(--red); }
.button.full { width: 100%; }
.button.small { min-height: 32px; padding: 6px 10px; font-size: 12px; }
.button svg { width: 16px; height: 16px; }
.icon-button { width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 5px; color: inherit; background: transparent; }
.icon-button:hover { background: rgba(119, 139, 133, .14); }
.icon-button svg { width: 18px; height: 18px; }

.app-shell { min-height: 100%; display: block; }
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  z-index: 20;
  display: flex;
  flex-direction: column;
  padding: 22px 15px 15px;
  color: #e7efec;
  background: var(--sidebar);
}
.sidebar > .brand-lockup { padding: 0 8px 24px; }
.nav-list { display: grid; gap: 3px; }
.nav-group {
  padding: 14px 11px 6px;
  color: #748b83;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.nav-group:first-child { padding-top: 0; }
.nav-list button {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 11px;
  color: #bdcbc6;
  background: transparent;
  text-align: left;
}
.nav-list button:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-list button.active { color: #fff; background: rgba(37, 156, 120, .22); box-shadow: inset 3px 0 0 #52c49e; }
.nav-list svg { width: 17px; height: 17px; }
.nav-list b { min-width: 20px; height: 20px; padding: 0 5px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.10); font-size: 11px; }
.nav-list b.is-zero { visibility: hidden; }
.sidebar-user { margin-top: auto; border-top: 1px solid rgba(255,255,255,.10); padding: 15px 6px 0; display: grid; grid-template-columns: 34px minmax(0,1fr) 36px; align-items: center; gap: 9px; }
.sidebar-user > span:nth-child(2) { display: grid; min-width: 0; }
.sidebar-user strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.sidebar-user small { color: #8ea09a; margin-top: 3px; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #183a31; background: #c4ebdd; font-weight: 700; }

.sidebar-scrim { display: none; }
.main-area { min-width: 0; width: calc(100% - var(--sidebar-width)); margin-left: var(--sidebar-width); }
.topbar { height: 78px; padding: 0 30px; display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
.topbar-copy { flex: 1 1 auto; min-width: 0; }
.breadcrumb { display: flex; align-items: center; gap: 4px; color: #87938f; font-size: 10px; line-height: 1; margin-bottom: 6px; }
.breadcrumb svg { width: 11px; height: 11px; }
.breadcrumb span:last-child { color: #596762; }
.topbar h1 { margin: 0; font-size: 19px; }
.topbar p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.environment-badge { min-height: 30px; padding: 0 9px; display: inline-flex; align-items: center; gap: 6px; color: #315f53; background: #edf7f3; border: 1px solid #d2e8df; border-radius: 5px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.environment-badge svg { width: 14px; height: 14px; color: var(--green); }
.topbar-actions { display: flex; align-items: center; gap: 9px; }
.mobile-menu { display: none; }
.page-content { padding: 26px 30px 44px; max-width: 1560px; width: 100%; margin: 0 auto; }

.status-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 24px; }
.stat { min-width: 0; min-height: 118px; padding: 17px 18px; border: 1px solid var(--line); border-top: 3px solid #78a595; border-radius: 6px; background: var(--surface); color: var(--ink); text-align: left; transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease; }
.stat:hover { border-color: #aac1b9; background: #fff; box-shadow: 0 7px 20px rgba(17,35,31,.07); transform: translateY(-1px); }
.stat-head { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 12px; }
.stat-head span:last-child { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 5px; background: var(--green-soft); color: var(--green); }
.stat-head svg { width: 16px; height: 16px; }
.stat strong { display: block; margin-top: 12px; font-size: 28px; line-height: 1; }
.stat small { display: block; color: var(--muted); margin-top: 9px; }
.stat.warning { border-top-color: #d2963e; }
.stat.warning .stat-head span:last-child { background: var(--amber-soft); color: var(--amber); }
.stat.info { border-top-color: #4b91ad; }
.stat.info .stat-head span:last-child { background: var(--blue-soft); color: var(--blue); }

.workflow-overview { margin: 0 0 24px; padding: 15px 2px 18px; display: grid; grid-template-columns: minmax(210px, .6fr) minmax(0, 2fr); align-items: center; gap: 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.workflow-heading { display: grid; gap: 6px; }
.workflow-heading > span { display: flex; align-items: center; gap: 8px; font-weight: 750; }
.workflow-heading svg { width: 17px; height: 17px; color: var(--green); }
.workflow-heading small { color: var(--muted); font-size: 11px; line-height: 1.5; }
.workflow-steps { min-width: 0; display: grid; grid-template-columns: repeat(7, auto); justify-content: space-between; align-items: center; gap: 10px; }
.workflow-step { min-width: 112px; border: 0; background: transparent; color: var(--ink); padding: 3px 6px; display: grid; grid-template-columns: 30px auto; grid-template-rows: auto auto; align-items: center; column-gap: 9px; text-align: left; }
.workflow-step > span { grid-row: 1 / 3; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 5px; color: var(--green); background: var(--green-soft); }
.workflow-step svg { width: 16px; height: 16px; }
.workflow-step strong { font-size: 17px; line-height: 1.1; }
.workflow-step small { color: var(--muted); font-size: 11px; margin-top: 3px; }
.workflow-step:hover strong { color: var(--green-dark); }
.workflow-arrow { width: 15px; height: 15px; color: #aab5b1; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(270px, .8fr); gap: 22px; align-items: start; }
.section { min-width: 0; margin-bottom: 26px; }
.section-heading { min-height: 38px; display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 10px; }
.section-heading h2 { font-size: 15px; margin: 0; }
.section-heading p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.panel-pad { padding: 18px; }

.data-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.data-table th { height: 40px; padding: 0 13px; color: #6b7773; background: #f7f9f8; border-bottom: 1px solid var(--line); text-align: left; font-size: 11px; font-weight: 700; }
.data-table td { height: 58px; padding: 10px 13px; border-bottom: 1px solid #e8edeb; vertical-align: middle; overflow: hidden; text-overflow: ellipsis; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table tbody tr[data-action] { cursor: pointer; }
.data-table tbody tr[data-action]:hover { background: #f8fbfa; }
.cell-main { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 650; }
.cell-sub { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 11px; margin-top: 4px; }
.table-actions { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.badge { display: inline-flex; align-items: center; min-height: 24px; padding: 3px 8px; border-radius: 12px; font-size: 11px; font-weight: 700; color: #52605b; background: #edf1ef; white-space: nowrap; }
.badge.green { color: var(--green-dark); background: var(--green-soft); }
.badge.amber { color: var(--amber); background: var(--amber-soft); }
.badge.red { color: var(--red); background: var(--red-soft); }
.badge.blue { color: var(--blue); background: var(--blue-soft); }

.empty { min-height: 180px; display: grid; place-items: center; text-align: center; padding: 32px; color: var(--muted); }
.empty svg { width: 28px; height: 28px; margin-bottom: 10px; color: #91a09b; }
.empty strong { display: block; color: var(--ink); margin-bottom: 6px; }
.empty p { margin: 0; line-height: 1.6; }
.task-list { display: grid; }
.task-row { border-bottom: 1px solid #e8edeb; padding: 14px 15px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; align-items: center; cursor: pointer; }
.task-row:last-child { border-bottom: 0; }
.task-row:hover { background: #f8fbfa; }
.task-row h3 { font-size: 13px; margin: 0; }
.task-row p { color: var(--muted); font-size: 11px; margin: 6px 0 0; }
.task-kind { display: inline-flex; align-items: center; min-height: 20px; margin-bottom: 7px; padding: 0 6px; color: #356958; background: var(--green-soft); border-radius: 4px; font-size: 10px; font-weight: 750; }
.task-kind.info { color: var(--blue); background: var(--blue-soft); }
.health-list { display: grid; gap: 0; }
.health-row { min-height: 54px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; border-bottom: 1px solid #e8edeb; }
.health-row:last-child { border-bottom: 0; }
.health-row span:first-child { display: flex; align-items: center; gap: 9px; }
.health-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.health-dot.off { background: var(--amber); }

.toolbar { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.toolbar > select { width: auto; min-width: 170px; }
.search-box { width: min(340px, 100%); position: relative; }
.search-box svg { position: absolute; width: 16px; height: 16px; left: 11px; top: 11px; color: #77847f; }
.search-box input { padding-left: 35px; min-height: 38px; }
.filter-tabs { display: flex; gap: 3px; background: #e8eeeb; padding: 3px; border-radius: 5px; }
.filter-tabs button { height: 31px; border: 0; border-radius: 3px; background: transparent; color: var(--muted); padding: 0 10px; font-size: 12px; }
.filter-tabs button.active { color: var(--ink); background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.07); }

.modal, .detail-modal { border: 0; padding: 0; background: transparent; max-width: none; max-height: none; }
.modal::backdrop, .detail-modal::backdrop { background: rgba(9, 18, 16, .48); }
.modal-shell { width: min(620px, calc(100vw - 28px)); max-height: min(820px, calc(100vh - 32px)); display: grid; grid-template-rows: auto minmax(0,1fr); border-radius: 7px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.modal-shell > header, .detail-shell > header { min-height: 72px; padding: 15px 18px; display: flex; justify-content: space-between; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.modal-shell h2, .detail-shell h2 { font-size: 17px; margin: 0; }
.modal-shell header p { color: var(--muted); font-size: 12px; margin: 5px 0 0; }
.modal-body { padding: 19px; overflow: auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.form-grid .wide { grid-column: 1 / -1; }
.form-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 9px; padding-top: 5px; }
.check-list { max-height: 210px; overflow: auto; border: 1px solid var(--line); border-radius: 5px; }
.check-row { min-height: 48px; padding: 8px 10px; display: grid; grid-template-columns: 20px minmax(0,1fr); align-items: center; gap: 9px; border-bottom: 1px solid #e8edeb; font-weight: 500; }
.check-row:last-child { border-bottom: 0; }
.check-row input { min-height: auto; width: 16px; height: 16px; }
.form-note { padding: 11px 12px; border-left: 3px solid var(--amber); background: #fff8eb; color: #76501c; font-size: 12px; line-height: 1.65; }
.form-note ul { margin: 7px 0 0; padding-left: 18px; }
.extraction-group { margin: 22px 0 0; border-top: 1px solid var(--line); }
.extraction-group > h3 { margin: 0; padding: 14px 0 10px; font-size: 14px; display: flex; justify-content: space-between; }
.extraction-group > h3 span { color: var(--muted); font-size: 11px; font-weight: 600; }
.extraction-item { padding: 14px 0 17px; border-top: 1px solid #e8edeb; }
.extraction-item > strong { display: block; margin-bottom: 12px; font-size: 12px; color: var(--green-dark); }
.article-editor { min-height: 360px; }

.detail-modal { margin: 0 0 0 auto; height: 100vh; }
.detail-shell { width: min(720px, 100vw); height: 100vh; display: grid; grid-template-rows: auto minmax(0,1fr) auto; background: #fff; box-shadow: -10px 0 30px rgba(17,35,31,.14); }
.detail-body { padding: 20px 22px; overflow: auto; }
.detail-shell footer { min-height: 68px; padding: 13px 20px; display: flex; align-items: center; justify-content: flex-end; gap: 9px; border-top: 1px solid var(--line); background: #fafcfb; }
.eyebrow { color: var(--green); font-size: 11px; font-weight: 800; margin: 0 0 5px; }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 20px; }
.detail-field { min-width: 0; }
.detail-field.wide { grid-column: 1 / -1; }
.detail-field dt { color: var(--muted); font-size: 11px; margin-bottom: 5px; }
.detail-field dd { margin: 0; line-height: 1.65; overflow-wrap: anywhere; }
.detail-section { margin-top: 25px; }
.detail-section h3 { font-size: 14px; margin: 0 0 10px; }
.quote { padding: 12px 14px; background: #f5f8f7; border-left: 3px solid #92a39d; white-space: pre-wrap; line-height: 1.7; overflow-wrap: anywhere; max-height: 380px; overflow: auto; }
.fact-list { display: grid; border-top: 1px solid var(--line); }
.fact-item { padding: 13px 0; border-bottom: 1px solid var(--line); }
.fact-item strong { display: block; margin-bottom: 5px; }
.fact-item p { color: var(--muted); margin: 4px 0; line-height: 1.6; }
.diff-list { border-top: 1px solid var(--line); }
.diff-row { padding: 10px 0; display: grid; grid-template-columns: 120px minmax(0,1fr); gap: 12px; border-bottom: 1px solid var(--line); line-height: 1.55; }
.diff-row strong { font-size: 11px; }
.diff-row span { color: var(--muted); overflow-wrap: anywhere; }
.diff-row.added strong { color: var(--green-dark); }
.diff-row.removed strong { color: var(--red); }
.diff-row.changed strong { color: var(--amber); }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 28px; transform: translate(-50%, 20px); min-width: 220px; max-width: calc(100vw - 30px); padding: 11px 15px; border-radius: 5px; color: #fff; background: #22302c; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .2s ease; text-align: center; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.error { background: #8e302e; }
.loading { min-height: 240px; display: grid; place-items: center; color: var(--muted); }

@media (max-width: 1050px) {
  .status-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-grid { grid-template-columns: 1fr; }
  .workflow-overview { grid-template-columns: 1fr; gap: 14px; }
  .workflow-heading { grid-template-columns: auto minmax(0,1fr); align-items: center; }
  .workflow-heading small { text-align: right; }
  .environment-badge { display: none; }
}

@media (max-width: 760px) {
  .app-shell { display: block; }
  .sidebar { width: min(294px, 86vw); transform: translateX(-100%); transition: transform .2s ease; box-shadow: var(--shadow); }
  .sidebar.open { transform: translateX(0); }
  .sidebar-scrim { display: block; position: fixed; inset: 0; z-index: 19; border: 0; border-radius: 0; background: rgba(8,18,15,.42); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
  .sidebar-scrim.open { opacity: 1; pointer-events: auto; }
  .main-area { margin-left: 0; }
  .main-area { width: 100%; }
  .mobile-menu { display: grid; flex: 0 0 auto; }
  .topbar { height: 72px; padding: 0 14px; }
  .breadcrumb { display: none; }
  .topbar-copy { min-width: 0; }
  .topbar p { display: none; }
  .topbar h1 { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 17px; }
  .topbar-actions .button span { display: none; }
  .topbar-actions .button { width: 38px; padding: 0; }
  .page-content { padding: 18px 14px 34px; }
  .status-strip { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
  .stat { min-height: 104px; padding: 14px; }
  .stat strong { font-size: 24px; }
  .workflow-overview { margin-bottom: 20px; padding-top: 13px; }
  .workflow-heading { display: flex; justify-content: space-between; gap: 10px; }
  .workflow-heading small { max-width: 190px; }
  .workflow-steps { grid-template-columns: repeat(7, auto); justify-content: space-between; gap: 2px; overflow: visible; padding: 2px 0; }
  .workflow-step { min-width: 0; width: 76px; grid-template-columns: 24px auto; column-gap: 5px; padding: 2px 0; }
  .workflow-step > span { width: 24px; height: 24px; }
  .workflow-step strong { font-size: 15px; }
  .workflow-step small { font-size: 10px; }
  .workflow-arrow { width: 11px; height: 11px; }
  .toolbar { align-items: stretch; flex-direction: column; }
  .toolbar > select { width: 100%; }
  .search-box { width: 100%; }
  .panel.table-panel { overflow: hidden; }
  .data-table:not(.mobile-stack) { min-width: 680px; }
  .data-table.mobile-stack, .data-table.mobile-stack tbody, .data-table.mobile-stack tr, .data-table.mobile-stack td { display: block; width: 100%; }
  .data-table.mobile-stack { table-layout: auto; }
  .data-table.mobile-stack thead { display: none; }
  .data-table.mobile-stack tr { position: relative; padding: 13px 15px; border-bottom: 1px solid #e4eae7; }
  .data-table.mobile-stack tr:last-child { border-bottom: 0; }
  .data-table.mobile-stack td { min-height: 0; height: auto; padding: 5px 0; border: 0; display: grid; grid-template-columns: 86px minmax(0,1fr); align-items: start; gap: 10px; overflow: visible; white-space: normal; }
  .data-table.mobile-stack td::before { content: attr(data-label); color: var(--muted); font-size: 11px; line-height: 24px; }
  .data-table.mobile-stack td > .badge { justify-self: start; }
  .data-table.mobile-stack td:first-child { display: block; padding: 0 34px 10px 0; }
  .data-table.mobile-stack td:first-child::before { display: none; }
  .data-table.mobile-stack .cell-main, .data-table.mobile-stack .cell-sub { white-space: normal; overflow-wrap: anywhere; }
  .data-table.mobile-stack .row-chevron { position: absolute; top: 16px; right: 13px; width: 24px; padding: 0; }
  .data-table.mobile-stack .row-chevron::before { display: none; }
  .data-table.mobile-stack .table-actions { justify-content: flex-start; flex-wrap: wrap; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .wide, .form-actions { grid-column: 1; }
  .modal-shell { width: calc(100vw - 16px); max-height: calc(100vh - 16px); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-field.wide { grid-column: 1; }
  .diff-row { grid-template-columns: 1fr; gap: 4px; }
  .filter-tabs { overflow-x: auto; }
}

@media (max-width: 420px) {
  .login-panel { padding: 25px 20px; }
  .status-strip { grid-template-columns: 1fr 1fr; }
  .stat small { display: none; }
  .stat { min-height: 92px; }
  .workflow-heading small { display: none; }
  .task-row { grid-template-columns: minmax(0,1fr); }
  .task-row > .badge { justify-self: start; }
}
