.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-actions .nav-button {
  margin-left: 0;
  white-space: nowrap;
}

.nav-actions .nav-create {
  background: var(--coral);
}

.nav-login {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 12px 4px;
  white-space: nowrap;
}

.nav-login:hover,
.nav-login:focus-visible {
  color: var(--gold);
}

.hero-actions .secondary-button {
  color: #fff;
  background: transparent;
  border: 1px solid #ffffff66;
  box-shadow: none;
}

.hero-actions .secondary-button:hover,
.hero-actions .secondary-button:focus-visible {
  background: #ffffff12;
  border-color: #ffffffa6;
}

@media (max-width: 1180px) {
  .nav-actions {
    gap: 9px;
  }

  .nav-actions .nav-button {
    padding-inline: 14px;
  }
}

@media (max-width: 980px) {
  .nav-actions {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .nav-actions {
    gap: 10px;
  }

  .nav-actions .nav-create:before {
    content: "Create";
    font-size: 12px;
  }

  .nav-actions .nav-create .nav-full-label,
  .nav-actions .nav-create .nav-arrow {
    display: none;
  }

  .nav-login {
    font-size: 12px;
  }
}

.nav-home{display:none;color:#fff;font-size:13px;font-weight:800;padding:12px 2px;white-space:nowrap}
.nav-home:hover,.nav-home:focus-visible{color:var(--gold)}
@media (max-width:980px){.nav-home{display:inline-flex;align-items:center}}
@media (max-width:720px){.nav-home{font-size:12px;padding-inline:0}.nav-actions{gap:8px}}
