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

.top-menu-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-menu);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .018em;
  transition: color .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), opacity .18s var(--ease);
}

.top-menu-action-text {
  color: rgba(245, 242, 223, .58);
  background: transparent;
  border: 1px solid transparent;
}

.top-menu-action-text:hover,
.top-menu-action-text:focus-visible {
  color: rgba(245, 242, 223, .88);
  background: rgba(245, 242, 223, .05);
}

.top-menu-action-ghost {
  color: rgba(245, 242, 223, .72);
  background: transparent;
  border: 1px solid rgba(245, 242, 223, .18);
}

.top-menu-action-ghost:hover,
.top-menu-action-ghost:focus-visible {
  color: rgba(245, 242, 223, .95);
  border-color: rgba(245, 242, 223, .32);
  background: rgba(245, 242, 223, .05);
}

.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-action {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-menu);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .018em;
  text-decoration: none;
  transition: color .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease);
}

.top-menu-mobile-action-text {
  color: rgba(245, 242, 223, .55);
  background: rgba(245, 242, 223, .03);
  border: 1px solid transparent;
}

.top-menu-mobile-action-text:hover,
.top-menu-mobile-action-text:focus-visible {
  color: rgba(245, 242, 223, .82);
  background: rgba(245, 242, 223, .06);
}

.top-menu-mobile-action-ghost {
  color: rgba(245, 242, 223, .75);
  background: transparent;
  border: 1px solid rgba(245, 242, 223, .2);
}

.top-menu-mobile-action-ghost:hover,
.top-menu-mobile-action-ghost:focus-visible {
  color: rgba(245, 242, 223, .95);
  border-color: rgba(245, 242, 223, .36);
  background: rgba(245, 242, 223, .05);
}
