/**
 * Document Intelligence landing.
 *
 * The page wears the Kimbodo Intelligence landing stylesheet, which is scoped
 * to `body.kimbodo-intelligence-landing-page`. Only the components this page
 * introduces live here: the per-industry cards and the forward-looking variant
 * of the shared callout.
 */

/* -------------------------------------------------------- Industry cards */

body.kimbodo-document-intelligence-page .vertical-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

body.kimbodo-document-intelligence-page .vertical {
  padding: 26px 26px 22px;
  border: 1px solid var(--kil-line-soft);
  border-top: 3px solid var(--kil-green);
  border-radius: 4px;
  background: var(--kil-panel);
}

body.kimbodo-document-intelligence-page .vertical-name {
  font-size: 19px;
  letter-spacing: -.03em;
  line-height: 1.25;
}

body.kimbodo-document-intelligence-page .vertical-lead {
  margin-top: 9px;
  color: var(--kil-text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}

body.kimbodo-document-intelligence-page .vertical .content-list {
  margin-top: 14px;
}

/* ------------------------------------------------------------ Responsive */

@media (max-width: 860px) {
  body.kimbodo-document-intelligence-page .vertical-list {
    grid-template-columns: 1fr;
  }

  body.kimbodo-document-intelligence-page .vertical {
    padding: 22px 20px 20px;
  }
}
