/* Text-only numbered cards: number and heading share the first row. */
body[data-structure-review] main :is(.scope-grid,.intl-factor-grid,.thermal-flow,.news-topic-library) > article:has(> span:first-child),
body[data-structure-review] main .solution-stage-grid > li:has(> span:first-child) {
  display: grid !important;
  grid-template-columns: 23px minmax(0,1fr);
  column-gap: 10px;
  align-content: start;
  min-height: 0 !important;
  padding: 14px 16px !important;
}
body[data-structure-review] main :is(.scope-grid,.intl-factor-grid,.thermal-flow,.news-topic-library) > article > span:first-child,
body[data-structure-review] main .solution-stage-grid > li > span:first-child {
  grid-column: 1;
  grid-row: 1;
  float: none !important;
  margin: 2px 0 0 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}
body[data-structure-review] main :is(.scope-grid,.intl-factor-grid,.thermal-flow,.news-topic-library) > article > :is(h2,h3),
body[data-structure-review] main .solution-stage-grid > li > h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 5px !important;
  font-size: 18px !important;
  line-height: 1.23 !important;
}
body[data-structure-review] main :is(.scope-grid,.intl-factor-grid,.thermal-flow,.news-topic-library) > article > :is(p,ul,ol,a),
body[data-structure-review] main .solution-stage-grid > li > :is(p,ul,ol) {
  grid-column: 1 / -1;
  margin: 4px 0 0 !important;
  font-size: 15px !important;
  line-height: 1.42 !important;
}
body[data-structure-review] main :is(.scope-grid,.intl-factor-grid,.thermal-flow,.news-topic-library) { gap: 12px !important; }
body[data-structure-review] main .solution-stage-grid { gap: 10px !important; }
@media (max-width: 700px) {
  body[data-structure-review] main :is(.scope-grid,.intl-factor-grid,.thermal-flow,.news-topic-library) > article:has(> span:first-child),
  body[data-structure-review] main .solution-stage-grid > li:has(> span:first-child) { padding: 13px 14px !important; }
}
