/* GreaseGiant — landing/location page extras.
   Loads ON TOP of the shared blog stylesheet (/blog/assets/styles.css),
   which provides the base brand tokens, nav, footer, .post-hero, .post-body,
   .lede, .key-takeaway, .post-cta, .related-grid, etc. Only landing-specific
   components live here. */

/* Feature grid (service highlights / "what's included") */
.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 38px 0 8px;
}
.lp-feature {
  background: #FFFCF5;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
}
.lp-feature .ic {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(200, 144, 56, 0.14);
  color: var(--amber-deep);
  margin-bottom: 16px;
}
.lp-feature h3 { font-size: 19px; margin-bottom: 8px; }
.lp-feature p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* Compliance / comparison table */
.lp-table-wrap { overflow-x: auto; margin: 30px 0; }
table.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #FFFCF5;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
table.lp-table th, table.lp-table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.lp-table thead th {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}
table.lp-table tbody tr:last-child td { border-bottom: none; }
table.lp-table td:first-child { font-weight: 600; color: var(--ink); }

/* FAQ block */
.lp-faq { margin: 14px 0 8px; }
.lp-faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.lp-faq-item:last-child { border-bottom: 1px solid var(--line); }
.lp-faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--ink);
}
.lp-faq-item p { color: var(--ink-soft); line-height: 1.6; }
.lp-faq-item p + p { margin-top: 10px; }

/* Local cue chips (neighborhoods / cities served) */
.lp-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 8px; }
.lp-chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}

/* Answer callout (the GEO 40-60 word lead answer, visually distinct) */
.lp-answer {
  background: #FFFCF5;
  border-left: 4px solid var(--amber);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 8px 0 26px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}

/* Inline "two service" split for bundle page */
.lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 34px 0; }
@media (max-width: 720px) { .lp-split { grid-template-columns: 1fr; } }
.lp-split .lp-feature { height: 100%; }

/* Section spacer rhythm inside post-body for landing pages */
.post-body h2 { margin-top: 40px; }
.post-body h2:first-of-type { margin-top: 8px; }
