/* Shared home navigation for all secondary pages in v76. */
.site-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  min-height: 42px;
  padding: 9px 16px;
  margin: 0;
  border: 1px solid #303238;
  border-radius: 999px;
  background: #303238;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition: background .2s, transform .2s;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.site-home-button:hover {
  background: #1f2126;
  border-color: #1f2126;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}
.site-home-button:focus-visible {
  outline: 3px solid #80d7d5;
  outline-offset: 2px;
}
a.site-content-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  min-height: 42px;
  padding: 9px 16px;
  margin: 0;
  border: 1px solid #12aaa9;
  border-radius: 999px;
  background: #12aaa9;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
a.site-content-button:hover {
  background: #0d9291;
  border-color: #0d9291;
  color: #fff;
  transform: translateY(-2px);
}
a.site-content-button:focus-visible {
  outline: 3px solid #80d7d5;
  outline-offset: 2px;
}
@media (max-width: 700px) {
  .site-home-button, a.site-content-button {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }
}
@media (max-width: 440px) {
  header .brand span { display: none; }
}
