/* Intent landing pages — ride the shared landing tokens (/preview/styles.css)
   and the blog prose (/blog/blog.css); only the pencil widget and the small
   page furniture live here. */

/* The interactive pencil check */
.pencil-widget {
  margin: 26px 0;
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--bg-panel); padding: 24px;
}
.pencil-grid { display: grid; gap: 26px; grid-template-columns: 1fr 1fr; }
@media (max-width: 680px) { .pencil-grid { grid-template-columns: 1fr; } }

.pencil-field { display: block; margin: 0 0 16px; }
.pencil-field:last-child { margin-bottom: 0; }
.pencil-field > span.lbl {
  display: block; font-size: 14px; font-weight: 600; color: var(--text);
  margin: 0 0 6px;
}
.pencil-money {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--bg-panel);
}
.pencil-money:focus-within { border-color: var(--emerald); }
.pencil-money span { padding-left: 10px; color: var(--text-dim); }
.pencil-money input {
  width: 100%; border: 0; background: transparent; outline: none;
  padding: 10px 10px 10px 4px; font-size: 16px; color: var(--text);
}
.pencil-field output { float: right; font-weight: 700; color: var(--emerald-bright); }
.pencil-field input[type="range"] { width: 100%; margin-top: 8px; accent-color: var(--emerald); }
.pencil-hint { display: block; margin-top: 6px; font-size: 12.5px; color: var(--text-dim); }

.pencil-empty { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-dim); }
.p-row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.p-row .k { color: var(--text-dim); }
.p-row .v { font-weight: 700; color: var(--text); text-align: right; }
.p-row .v.pencil-good { color: var(--good); }
.p-row .v.pencil-warn { color: var(--amber); }
.pencil-verdict {
  margin: 14px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--text);
}
.pencil-fine {
  margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 12.5px; line-height: 1.6; color: var(--text-dim);
}

/* Checklist lists on /buy-a-business-checklist */
.check-list { list-style: none; padding-left: 0; }
.check-list li {
  position: relative; padding-left: 28px; margin: 0 0 10px;
  font-size: 16px; line-height: 1.7; color: var(--text-dim);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  color: var(--emerald-bright); font-weight: 700;
}

/* Sibling-page cross-links */
.keep-going {
  display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin: 0 0 20px; padding: 0;
}
.keep-going a {
  display: block; padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--bg-panel); text-decoration: none;
  font-size: 15px; font-weight: 600; color: var(--text);
  transition: border-color 160ms ease;
}
.keep-going a:hover { border-color: var(--emerald-deep); text-decoration: none; }
.keep-going a small { display: block; margin-top: 4px; font-weight: 400; color: var(--text-dim); }
