/* Keep the account button visible, including the mobile header. */
.site-header .header-actions .header-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 6px 12px;
  border: 1px solid var(--green);
  border-radius: 5px;
  background: #fff;
  color: var(--green);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}
.site-header .header-actions .header-account:hover {
  background: var(--paper);
  text-decoration: none;
}
@media (max-width: 760px) {
  .site-header .header-actions { gap: 12px; }
}
