/* Site footer shared by every page: public pages and the admin dashboard link this one file,
   and the Worker renders the same markup for all of them (footerHtml in src/pages.js). */

.site-footer {
  padding: 16px 24px 28px;
  border-top: 1px solid #e4e7eb;
  color: #5e6570;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer nav,
.site-footer p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  margin: 0;
}

.site-footer nav {
  gap: 4px;
  margin-bottom: 6px;
}

.site-footer nav a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.site-footer nav a:hover {
  background: #eceef1;
}

.site-footer svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer a {
  color: #5e6570;
  text-decoration: none;
}

.site-footer a:hover {
  color: #15171a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:focus-visible {
  outline: 2px solid #c2410c;
  outline-offset: 3px;
}

.site-footer .org {
  font-weight: 500;
  color: #3d434b;
}

.site-footer .build {
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
