:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #68707c;
  --soft: #f7f5ef;
  --paper: #ffffff;
  --line: #dfddd4;
  --green: #2f7d61;
  --green-soft: #e5f3ed;
  --coral: #c95f4b;
  --coral-soft: #fae9e4;
  --amber: #b7791f;
  --amber-soft: #fff2cf;
  --blue: #3566a6;
  --blue-soft: #e8f0fc;
  --violet: #6b5ea8;
  --shadow: 0 18px 45px rgba(45, 43, 38, 0.12);
  --radius: 8px;
  --sidebar: 272px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #ebe7dc;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(47, 125, 97, 0.12), transparent 30%),
    linear-gradient(225deg, rgba(201, 95, 75, 0.12), transparent 28%),
    #ebe7dc;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(53, 102, 166, 0.35);
  outline-offset: 2px;
}

.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 18px;
  color: #f7f3ea;
  background: #24312b;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #f3b15b;
  color: #24312b;
  font-weight: 900;
  font-size: 24px;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: rgba(247, 243, 234, 0.68);
  font-size: 12px;
}

.nav-list {
  display: grid;
  gap: 7px;
}

.nav-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(247, 243, 234, 0.78);
  background: transparent;
  border-radius: 8px;
  text-align: left;
}

.nav-item svg,
.icon-button svg,
.primary-button svg,
.secondary-button svg,
.text-button svg {
  width: 18px;
  height: 18px;
}

.nav-item:hover,
.nav-item.is-active {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-panel {
  margin-top: auto;
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.mini-label,
.section-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.sidebar-panel .mini-label {
  color: rgba(247, 243, 234, 0.68);
}

.range-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  color: rgba(247, 243, 234, 0.72);
  font-size: 12px;
}

.range-row input {
  width: 100%;
}

.threshold {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.threshold span {
  font-size: 28px;
  font-weight: 900;
}

.threshold small {
  color: rgba(247, 243, 234, 0.66);
}

.main {
  min-width: 0;
  padding: 22px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 0 0 18px;
}

.page-title span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-search {
  width: min(360px, 38vw);
  min-height: 42px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.global-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.view {
  display: none;
}

.view.is-active {
  display: grid;
  gap: 18px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card,
.panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  min-height: 124px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
}

.metric-card span,
.metric-card small {
  color: var(--muted);
}

.metric-card strong {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
}

.panel {
  min-width: 0;
  padding: 18px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.panel-head.compact {
  margin-bottom: 12px;
}

.panel-head h2,
.suggestion-box h3 {
  margin: 3px 0 0;
  font-size: 20px;
  line-height: 1.15;
}

.dashboard-layout,
.optimizer-layout,
.profit-layout,
.shop-layout,
.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 18px;
}

.wide-panel {
  min-height: 360px;
}

.segmented {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 2px;
  padding: 3px;
  background: #ece7db;
  border-radius: 8px;
}

.segmented button {
  min-width: 52px;
  min-height: 32px;
  color: var(--muted);
  background: transparent;
  border-radius: 6px;
  font-weight: 800;
}

.segmented button.is-selected {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 4px 12px rgba(47, 47, 47, 0.1);
}

.toolbar,
.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.icon-button,
.primary-button,
.secondary-button,
.text-button,
.small-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border-radius: 8px;
  font-weight: 800;
}

.icon-button {
  width: 40px;
  min-width: 40px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.primary-button {
  padding: 0 14px;
  color: #fffaf3;
  background: var(--green);
}

.secondary-button,
.text-button {
  padding: 0 13px;
  color: var(--ink);
  background: #f2eee6;
  border: 1px solid var(--line);
}

.text-button {
  background: transparent;
}

.small-action {
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink);
  background: #f2eee6;
  border: 1px solid var(--line);
  font-size: 12px;
}

.primary-button:hover,
.secondary-button:hover,
.text-button:hover,
.icon-button:hover,
.small-action:hover {
  filter: brightness(0.97);
}

select,
input,
textarea {
  min-height: 38px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
  line-height: 1.5;
}

label > span,
.filter-row span,
.research-bar span,
.form-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.research-bar,
.filter-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 150px auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 16px;
}

.research-bar label,
.filter-row label {
  min-width: 0;
}

.research-bar input,
.filter-row input,
.filter-row select {
  width: 100%;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  background: #f7f3eb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.toggle-row input {
  width: 16px;
  height: 16px;
  min-height: 0;
}

.toggle-row span {
  margin: 0;
}

.keyword-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.summary-chip {
  min-height: 74px;
  padding: 12px;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-chip span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-chip strong {
  display: block;
  margin-top: 7px;
  font-size: 22px;
}

.table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--paper);
}

th,
td {
  padding: 12px 13px;
  border-bottom: 1px solid #ece8df;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
  background: #f8f5ef;
}

td {
  color: #303236;
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.keyword-name,
.product-name {
  display: grid;
  gap: 4px;
}

.keyword-name strong,
.product-name strong {
  line-height: 1.25;
}

.keyword-name small,
.product-name small {
  color: var(--muted);
}

.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  font-weight: 900;
  background: var(--green-soft);
  color: var(--green);
}

.score-pill.warn {
  background: var(--amber-soft);
  color: var(--amber);
}

.score-pill.hot {
  background: var(--coral-soft);
  color: var(--coral);
}

.spark {
  width: 96px;
  height: 28px;
  display: block;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.cluster-list,
.saved-list,
.queue-list,
.signal-list,
.check-list,
.fee-list {
  display: grid;
  gap: 10px;
}

.cluster-item,
.saved-item,
.queue-item,
.signal-item,
.check-item,
.fee-item {
  display: grid;
  gap: 7px;
  padding: 12px;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cluster-item header,
.saved-item header,
.queue-item header,
.signal-item header,
.fee-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.cluster-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  color: #315347;
  background: #e5f3ed;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.tag.alt {
  color: #67461b;
  background: #fff2cf;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pulse-card {
  position: relative;
  min-height: 255px;
  display: grid;
  grid-template-rows: 132px auto;
  overflow: hidden;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pulse-card img,
.product-card img,
.strip-card img,
.shop-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pulse-body {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.pulse-body h3,
.product-card h3,
.strip-card h3,
.shop-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.28;
}

.pulse-stats,
.product-stats,
.shop-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pulse-stats span,
.product-stats span,
.shop-stats span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 11px;
}

.pulse-stats strong,
.product-stats strong,
.shop-stats strong {
  color: var(--ink);
  font-size: 14px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.strip-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  min-height: 116px;
  padding: 10px;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.strip-card figure {
  width: 96px;
  height: 96px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ded8cc;
}

.strip-card div {
  min-width: 0;
  display: grid;
  align-content: space-between;
}

.strip-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card,
.shop-card {
  overflow: hidden;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card figure {
  height: 158px;
  margin: 0;
  background: #ded8cc;
}

.product-body,
.shop-body {
  display: grid;
  gap: 11px;
  padding: 13px;
}

.product-card h3 {
  min-height: 39px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-actions,
.shop-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.shop-card {
  padding: 13px;
}

.shop-head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.shop-avatar {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 8px;
  background: #ded8cc;
}

.shop-card h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-grid label {
  min-width: 0;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
}

.span-2 {
  grid-column: 1 / -1;
}

.audit-score {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.score-ring {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 56%, transparent 57%),
    conic-gradient(var(--green) 0deg, #e8e2d6 0deg);
}

.score-ring strong {
  font-size: 34px;
  line-height: 1;
}

.score-ring span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-score h2 {
  margin: 3px 0 6px;
  font-size: 24px;
}

.audit-score p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.check-item {
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
}

.check-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}

.check-icon.warn {
  background: var(--amber);
}

.check-icon.fail {
  background: var(--coral);
}

.check-item strong {
  display: block;
}

.check-item small {
  color: var(--muted);
}

.suggestion-box {
  margin-top: 16px;
  padding: 14px;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.suggestion-box h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.suggestion-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suggestion-list li {
  padding: 10px;
  background: #fff;
  border: 1px solid #ece8df;
  border-radius: 8px;
  line-height: 1.45;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rank-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rank-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.rank-head h3 {
  margin: 0;
  font-size: 16px;
}

.rank-chart {
  width: 100%;
  height: 120px;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  padding: 12px;
  background: #fff;
  border: 1px solid #ece8df;
  border-radius: 8px;
}

.rank-bar {
  min-height: 12px;
  border-radius: 999px 999px 3px 3px;
  background: var(--blue);
}

.profit-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.profit-tile {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profit-tile span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.profit-tile strong {
  font-size: 28px;
}

.data-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.data-banner strong {
  display: block;
  margin-bottom: 3px;
}

.data-banner small {
  color: var(--muted);
}

.data-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.data-badge.sample {
  color: var(--amber);
  background: var(--amber-soft);
}

.data-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.data-status-card {
  min-height: 92px;
  display: grid;
  gap: 8px;
  padding: 13px;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-status-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.data-status-card strong {
  font-size: 24px;
}

.connector-card {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 14px;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.connector-card h3 {
  margin: 3px 0 0;
  font-size: 18px;
}

.connector-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.connector-form label,
.connector-form input,
.connector-form select,
.connector-form textarea {
  width: 100%;
  min-width: 0;
}

.schema-list,
.connector-log {
  display: grid;
  gap: 10px;
}

.schema-item {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.schema-item code {
  white-space: normal;
  color: #315347;
  font-size: 12px;
  line-height: 1.5;
}

.connector-note {
  margin: 14px 0;
  padding: 12px;
  background: var(--blue-soft);
  border: 1px solid rgba(53, 102, 166, 0.18);
  border-radius: 8px;
}

.connector-note p {
  margin: 7px 0 0;
  color: #334155;
  line-height: 1.5;
}

.log-item {
  display: grid;
  gap: 5px;
  padding: 10px;
  color: var(--muted);
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

.log-item strong {
  color: var(--ink);
}

.fee-item strong,
.fee-item span {
  font-size: 14px;
}

.empty-state {
  padding: 18px;
  color: var(--muted);
  text-align: center;
  background: #f8f5ed;
  border: 1px dashed #cfc8bb;
  border-radius: 8px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(380px, calc(100vw - 36px));
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 14px;
  color: #fffaf0;
  background: #24312b;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  .metric-grid,
  .product-grid,
  .shop-grid,
  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pulse-grid,
  .rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-layout,
  .optimizer-layout,
  .profit-layout,
  .shop-layout,
  .data-layout,
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 14px;
  }

  .nav-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nav-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    min-height: 56px;
    padding: 8px 4px;
    font-size: 12px;
    text-align: center;
  }

  .sidebar-panel {
    display: none;
  }

  .main {
    padding: 16px;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .top-actions,
  .global-search {
    width: 100%;
  }

  .global-search {
    min-width: 0;
  }

  .research-bar,
  .filter-row,
  .form-grid,
  .connector-form,
  .keyword-summary,
  .profit-result,
  .data-status-grid {
    grid-template-columns: 1fr;
  }

  .data-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid,
  .shop-grid,
  .product-strip,
  .metric-grid,
  .pulse-grid,
  .rank-grid {
    grid-template-columns: 1fr;
  }

  .strip-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .strip-card figure {
    width: 88px;
    height: 88px;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .audit-score {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-card {
    min-height: 104px;
  }

  .pulse-card {
    min-height: auto;
  }

  .check-item {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .check-item .score-pill {
    grid-column: 2;
    width: fit-content;
  }
}
