.credentials-section {
  background: #fff;
}

.credentials-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.credentials-intro h2 {
  max-width: 620px;
}

.credentials-featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credentials-featured > div {
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}

.credentials-featured > div:first-child {
  border-left: 0;
}

.credentials-featured span,
.credentials-featured small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.credentials-featured strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--blue);
  line-height: 1.35;
}

.credential-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 4px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.credential-groups section {
  padding: 30px;
  border-left: 1px solid var(--line);
}

.credential-groups section:first-child {
  border-left: 0;
}

.credential-groups h3 {
  font-size: 22px;
}

.credential-groups ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.credential-groups li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  line-height: 1.45;
}

.credentials-figure {
  margin: 52px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.credentials-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.credentials-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .credentials-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .credentials-featured {
    grid-template-columns: 1fr 1fr;
  }

  .credentials-featured > div:nth-child(odd) {
    border-left: 0;
  }

  .credentials-featured > div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .credential-groups {
    grid-template-columns: 1fr;
  }

  .credential-groups section {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .credential-groups section:first-child {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .credentials-featured {
    grid-template-columns: 1fr;
  }

  .credentials-featured > div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .credentials-featured > div:first-child {
    border-top: 0;
  }

  .credential-groups section {
    padding: 26px 0;
  }

  .credentials-figure {
    padding: 8px;
  }
}
