.hero-card ol {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
}

.hero-card a:hover,
.section a:hover {
  color: var(--teal);
}

.section > p,
.section li {
  color: var(--muted);
}

.section > p + p {
  margin-top: 16px;
}

.decision-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.decision-flow div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(34, 211, 197, 0.055);
}

.decision-flow strong,
.decision-flow span {
  display: block;
}

.decision-flow span {
  margin-top: 5px;
  color: var(--muted);
}

ol.steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

ol.steps > li {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

ol.steps > li strong,
ol.steps > li span {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
}

ol.steps > li strong {
  color: #ffffff;
}

ol.steps > li span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 400;
}

.article-figure.official {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.article-figure.official img {
  border: 0;
}

.callout {
  padding: 16px 18px;
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-header .brand,
  .site-header .nav {
    width: 100%;
  }

  .site-header .nav {
    justify-content: space-between;
  }

  .site-header .nav > a {
    white-space: nowrap;
  }

  .decision-flow,
  ol.steps {
    grid-template-columns: 1fr;
  }

  .hero-card ol {
    font-size: 14px;
  }
}
