/**
 * Useful-links grid (_includes/links.html, _data/links.yml) and the
 * extra-links row at the bottom of the page.
 */

.extra-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}

.bottom-link {
  margin: 0 5px;
}

.links-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.links-item {
  margin: 0;
}

.links-item i {
  margin-right: 6px;
}
