/* Small shared corrections for refined inner-page components. */

body.inner-page .check-list > div {
  position: relative;
  overflow: visible;
  padding: 22px 0 22px 48px;
}

body.inner-page .check-list > div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--navy-deep);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
}

body.inner-page .check-list strong {
  display: block;
}

body.support-page .section-alt .check-list > div::before {
  background: var(--paper);
}

body.about-page .focus-grid .check-list > div::before {
  background: var(--cream);
}

@media (max-width: 760px) {
  body.inner-page .check-list > div {
    padding: 18px 0 18px 40px;
  }

  body.inner-page .check-list > div::before {
    top: 18px;
    width: 24px;
    height: 24px;
    font-size: .78rem;
  }
}
