:root {
  --bg: #f6f7f9;
  --panel: #ffffff;
  --text: #17202a;
  --muted: #6b7280;
  --line: #dfe3e8;
  --red: #d32f2f;
  --blue: #1565c0;
  --amber: #b45309;
  --green: #16794c;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
}
a { color: inherit; text-decoration: none; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  background: #111827;
  color: #fff;
}
.brand { font-weight: 800; }
.topbar nav { display: flex; gap: 14px; flex-wrap: wrap; }
.topbar nav a { color: #d1d5db; font-size: 14px; }
.shell { max-width: 1240px; margin: 0 auto; padding: 22px; }
.disclaimer {
  border: 1px solid #f1c27d;
  background: #fff8eb;
  color: #7c4700;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}
h1, h2, p { margin-top: 0; }
h1 { font-size: 30px; margin-bottom: 6px; }
h2 { font-size: 18px; margin-bottom: 14px; }
small, .muted { color: var(--muted); }
.grid { display: grid; gap: 14px; }
.stats { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 14px; }
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 14px; }
.panel, .mini-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.panel strong { display: block; font-size: 24px; margin: 4px 0; }
.section-title { display: flex; align-items: center; justify-content: space-between; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 820px; }
th, td { border-bottom: 1px solid var(--line); padding: 11px 10px; text-align: left; vertical-align: middle; }
th { color: var(--muted); font-weight: 700; background: #fafafa; }
td small { display: block; margin-top: 3px; }
.up { color: var(--red); font-weight: 700; }
.down { color: var(--blue); font-weight: 700; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e8f5ee;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  margin-right: 4px;
}
.badge.risk, .warn { background: #fff2df; color: var(--amber); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 0;
  border-radius: 7px;
  background: #1f2937;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}
.button.ghost { background: #eef2f7; color: #111827; }
.button.danger { background: #991b1b; }
.filters, .stack { display: flex; gap: 10px; margin-bottom: 14px; }
.stack { flex-direction: column; }
.inline-form { display: flex; gap: 6px; align-items: center; margin: 0; }
.inline-form input { width: 150px; }
.checkline { display: flex; gap: 8px; align-items: center; color: var(--muted); }
input, select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 10px;
  background: #fff;
  color: var(--text);
}
.empty { color: var(--muted); text-align: center; padding: 28px; }
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.mini-card h2 { margin-bottom: 8px; }
.trade-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.trade-grid div { border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.trade-grid span { display: block; color: var(--muted); margin-bottom: 4px; }
.committee { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.committee h3 { margin: 0; font-size: 17px; }
.committee h4 { margin: 0 0 8px; font-size: 15px; }
.committee ul { margin: 0; padding-left: 18px; }
.committee li + li { margin-top: 6px; }
.committee-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfe;
}
.expert-grid, .committee-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.expert-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}
.expert-card p { margin: 10px 0 0; color: #374151; }
.sparkline {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 120px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}
.sparkline span {
  flex: 1;
  min-width: 5px;
  border-radius: 4px 4px 0 0;
  background: #344054;
}
.score-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.score-list div { display: flex; justify-content: space-between; border: 1px solid var(--line); border-radius: 8px; padding: 10px; }
.score-list span { color: var(--muted); }
.news { border-top: 1px solid var(--line); padding: 12px 0; }
.news a { font-weight: 800; }
.news p { color: #374151; margin: 6px 0; }
.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.theme-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.theme-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.theme-card h3 { margin: 0 0 6px; font-size: 17px; }
.theme-card p { margin: 0; color: var(--muted); }
.theme-score { text-align: right; min-width: 72px; }
.theme-score b { display: block; font-size: 24px; }
.theme-stock-list { display: grid; }
.theme-stock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
}
.theme-stock:last-child { border-bottom: 0; }
.theme-stock b { display: block; margin-bottom: 3px; }
.theme-stock small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.theme-stock > div:last-child { text-align: right; }
.theme-radar table { min-width: 940px; }
.theme-radar td strong {
  display: inline;
  font-size: 18px;
  margin: 0;
}
.theme-focus-list {
  display: grid;
  gap: 12px;
}
.theme-focus-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.theme-focus-row header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.theme-focus-row h3 {
  margin: 0 0 4px;
  font-size: 17px;
}
.focus-stock-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.focus-stock {
  min-height: 126px;
  padding: 13px;
  border-right: 1px solid var(--line);
}
.focus-stock:last-child { border-right: 0; }
.focus-stock b,
.focus-stock span {
  display: block;
  margin-bottom: 4px;
}
.focus-stock small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.association-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.value-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.value-card h2 {
  margin: 0 0 4px;
  font-size: 18px;
}
.value-score {
  min-width: 86px;
  text-align: right;
}
.value-score b {
  display: block;
  font-size: 26px;
  margin-bottom: 4px;
}
.value-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}
.value-metrics div,
.value-plan div {
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-metrics div:nth-child(3n),
.value-plan div:last-child { border-right: 0; }
.value-metrics div:nth-last-child(-n+3) { border-bottom: 0; }
.value-metrics span,
.value-plan span {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
}
.value-metrics b,
.value-plan b { display: block; font-size: 17px; }
.value-plan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}
.value-reasons,
.value-catalysts {
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
.value-catalysts { border-bottom: 0; }
.value-reasons h3,
.value-catalysts h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.value-reasons ul {
  margin: 0;
  padding-left: 18px;
}
.value-reasons li + li { margin-top: 5px; }
.value-news {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.value-news:first-of-type { border-top: 0; }
.value-news b,
.value-news small,
.value-news span {
  display: block;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.value-news small { color: var(--muted); margin: 3px 0; }
.value-news span { color: #374151; }
.value-head { align-items: center; }
.value-stats .panel strong { font-size: 22px; }
.value-rank-panel { margin-bottom: 14px; }
.value-rank-table {
  min-width: 1120px;
  font-size: 14px;
}
.value-rank-table th,
.value-rank-table td {
  padding: 10px 9px;
  vertical-align: top;
}
.value-rank-table td:nth-child(1) {
  width: 52px;
  text-align: center;
}
.value-rank-table td:nth-child(3) {
  width: 112px;
}
.value-rank-table td:nth-child(9) {
  min-width: 260px;
}
.value-rank-table strong {
  display: block;
  font-size: 18px;
  margin: 0 0 3px;
}
.value-stock-name {
  display: block;
  font-weight: 800;
  margin-bottom: 2px;
}
.value-reason-cell {
  color: #374151;
  line-height: 1.45;
}
.value-detail-list {
  display: grid;
  gap: 12px;
}
.value-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.value-detail-card header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.value-title-block {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
}
.value-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  border-radius: 7px;
  background: #eef2f7;
  color: #111827;
  font-weight: 800;
}
.value-title-block h2 {
  margin: 0 0 4px;
  font-size: 18px;
}
.value-score-compact {
  text-align: right;
  min-width: 92px;
}
.value-score-compact b {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}
.value-read-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}
.value-metric-line {
  padding: 12px;
  border-right: 1px solid var(--line);
}
.value-metric-line:last-child { border-right: 0; }
.value-metric-line span,
.value-metric-line small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
}
.value-metric-line b {
  display: block;
  margin: 3px 0;
  font-size: 17px;
}
.value-evidence-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
}
.value-reason-box,
.value-news-box {
  padding: 14px 16px;
}
.value-reason-box {
  border-right: 1px solid var(--line);
  background: #fcfcfd;
}
.value-reason-box h3,
.value-news-box h3 {
  margin: 0 0 9px;
  font-size: 15px;
}
.value-reason-box ul {
  margin: 0;
  padding-left: 18px;
}
.value-reason-box li {
  line-height: 1.5;
}
.value-reason-box li + li {
  margin-top: 5px;
}
.value-news-line {
  display: block;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.value-news-line:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.value-news-line b {
  display: block;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.value-news-line small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}
.stock-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.stock-kicker {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 5px;
}
.stock-hero h1 {
  margin-bottom: 5px;
}
.stock-hero h1 small {
  font-size: 16px;
  font-weight: 600;
}
.stock-summary {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.stock-summary article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}
.stock-summary span,
.stock-summary small {
  display: block;
  color: var(--muted);
}
.stock-summary strong {
  display: block;
  margin: 4px 0;
  font-size: 24px;
}
.stock-summary-main strong {
  font-size: 30px;
}
.stock-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 14px;
  align-items: start;
}
.stock-main-col,
.stock-side-col {
  display: grid;
  gap: 14px;
}
.stock-plan-grid,
.stock-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.stock-plan-grid div,
.stock-value-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  background: #fbfcfe;
}
.stock-plan-grid span,
.stock-value-grid span {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
}
.stock-plan-grid b,
.stock-value-grid b {
  display: block;
  font-size: 17px;
}
.stock-plan-grid small,
.stock-value-grid small {
  display: block;
  margin-top: 3px;
}
.stock-invalid {
  margin: 12px 0 0;
  color: #374151;
}
.stock-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stock-evidence-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.stock-evidence-grid ul {
  margin: 0;
  padding-left: 18px;
}
.stock-evidence-grid li {
  line-height: 1.5;
}
.stock-evidence-grid li + li {
  margin-top: 5px;
}
.stock-news-list {
  display: grid;
  gap: 0;
}
.stock-news-item {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.stock-news-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.stock-news-item a {
  font-weight: 800;
}
.stock-news-item p {
  margin: 5px 0;
  color: #374151;
  line-height: 1.5;
}
.stock-score-list {
  display: grid;
  gap: 7px;
}
.stock-score-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
}
.stock-score-list span {
  color: var(--muted);
}
.stock-sparkline {
  height: 150px;
}
.stock-expert-list,
.stock-scenario-list {
  display: grid;
  gap: 10px;
}
.stock-expert-list article,
.stock-scenario-list div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.stock-expert-list article:first-child,
.stock-scenario-list div:first-child {
  border-top: 0;
  padding-top: 0;
}
.stock-expert-list b,
.stock-expert-list small {
  display: block;
}
.stock-expert-list p,
.stock-scenario-list p {
  margin: 5px 0 0;
  color: #374151;
  line-height: 1.5;
}
.home-head-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.home-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  border-color: #b9d8d9;
  background: #f1fbfb;
}
.home-feature h2 {
  margin: 8px 0 6px;
}
.home-feature p {
  margin: 0;
  color: #374151;
  line-height: 1.5;
}
.sourcing-head {
  align-items: center;
}
.sourcing-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.sourcing-notice {
  border: 1px solid #b9d8d9;
  background: #e8f5f5;
  color: #075b5c;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.sourcing-status,
.sourcing-score-grid,
.sourcing-layout,
.sourcing-analytics {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}
.sourcing-status,
.sourcing-score-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sourcing-discovery-panel {
  margin-bottom: 14px;
}
.sourcing-discovery-panel .section-title {
  gap: 12px;
  align-items: flex-start;
}
.sourcing-discovery-panel .section-title p {
  margin: 4px 0 0;
  line-height: 1.45;
}
.sourcing-recommendations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.sourcing-recommendation {
  display: grid;
  gap: 10px;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: #fff;
  cursor: pointer;
}
.sourcing-recommendation:hover {
  border-color: #9fc7d8;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
.sourcing-recommendation header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.sourcing-recommendation b,
.sourcing-recommendation small {
  display: block;
  line-height: 1.4;
}
.sourcing-recommendation strong {
  min-width: 58px;
  text-align: right;
  font-size: 22px;
  color: var(--green);
}
.sourcing-recommendation p {
  margin: 0;
  color: #374151;
  line-height: 1.5;
}
.recommendation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-self: end;
  color: var(--muted);
  font-size: 12px;
}
.recommendation-meta span:not(.badge) {
  padding: 4px 7px;
  border-radius: 999px;
  background: #f3f4f6;
}
.sourcing-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}
.sourcing-analytics {
  grid-template-columns: 1fr 1.15fr 1fr;
}
.sourcing-kpi strong {
  font-size: 30px;
  line-height: 1;
}
.sourcing-kpi small {
  display: block;
  margin-top: 5px;
}
.sourcing-form-grid,
.sourcing-candidate-inputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.sourcing-form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sourcing-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.sourcing-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.sourcing-field input,
.sourcing-field select {
  width: 100%;
  min-width: 0;
}
.sourcing-input-wrap {
  position: relative;
}
.sourcing-input-wrap b {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 12px;
  pointer-events: none;
}
.sourcing-input-wrap input {
  padding-right: 36px;
}
.sourcing-matrix {
  position: relative;
  height: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
}
.matrix-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7ebef;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}
.matrix-cell.good {
  background: #e8f5ee;
  color: var(--green);
}
.matrix-axis {
  position: absolute;
  z-index: 2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.matrix-axis.y {
  top: 8px;
  left: 10px;
}
.matrix-axis.x {
  right: 10px;
  bottom: 8px;
}
.matrix-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--red);
  box-shadow: 0 3px 9px rgba(0,0,0,.25);
}
.sourcing-bars {
  display: grid;
  gap: 10px;
}
.sourcing-bar {
  display: grid;
  grid-template-columns: 72px 1fr 44px;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}
.sourcing-bar div {
  height: 10px;
  border-radius: 999px;
  background: #e7edf3;
  overflow: hidden;
}
.sourcing-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1565c0, #16794c);
}
.sourcing-bar b {
  text-align: right;
}
.sourcing-actions-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.sourcing-products {
  min-width: 760px;
}
.sourcing-candidates {
  display: grid;
  gap: 12px;
}
.sourcing-candidate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}
.sourcing-candidate-inputs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sourcing-unit {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.sourcing-unit strong {
  color: var(--green);
  font-size: 17px;
}
@media (max-width: 820px) {
  .topbar, .page-head, .stock-hero, .home-feature { align-items: flex-start; flex-direction: column; }
  .home-head-actions,
  .home-head-actions .button,
  .home-feature .button {
    width: 100%;
  }
  .stats, .two, .detail-grid, .cards, .trade-grid, .expert-grid, .committee-columns, .theme-grid, .focus-stock-strip, .association-strip, .value-grid, .value-metrics, .value-plan, .value-read-grid, .value-evidence-grid, .stock-summary, .stock-layout, .stock-plan-grid, .stock-value-grid, .stock-evidence-grid, .sourcing-status, .sourcing-score-grid, .sourcing-layout, .sourcing-analytics, .sourcing-form-grid, .sourcing-form-grid.two-col, .sourcing-candidate, .sourcing-candidate-inputs, .sourcing-recommendations { grid-template-columns: 1fr; }
  .sourcing-actions,
  .sourcing-actions .button {
    width: 100%;
  }
  .focus-stock { border-right: 0; border-bottom: 1px solid var(--line); }
  .focus-stock:last-child { border-bottom: 0; }
  .value-metrics div,
  .value-plan div { border-right: 0; }
  .value-detail-card header { flex-direction: column; }
  .value-score-compact { text-align: left; }
  .value-metric-line { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-metric-line:last-child { border-bottom: 0; }
  .value-reason-box { border-right: 0; border-bottom: 1px solid var(--line); }
  .shell { padding: 14px; }
}
