/* Menu action buttons: login/register in desktop and mobile contexts. */

.top-menu-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: clamp(10px, 1.2vw, 18px);
  border-left: 1px solid rgba(245, 242, 223, .20);
}

.top-menu-auth {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  text-decoration: none;
  font-family: var(--font-menu);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .012em;
  transition: color .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
}

.top-menu-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(244, 241, 223, .12);
}

.top-menu-mobile-auth {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-menu);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .012em;
  text-decoration: none;
}

.top-menu-mobile-login { background: rgba(244, 241, 223, .035); }
.top-menu-mobile-register { background: linear-gradient(145deg, #fffbea, #c7ccbd 44%, #d7c990 78%, #8a5b22 100%); }

.top-menu-mobile-auth.button-primary,
.top-menu-mobile-auth.button-secondary {
  box-shadow: none;
}
