[data-profile-nav] {
  display: flex;
  align-items: center;
  gap: 22px;
}

.profile-menu {
  position: relative;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  background: none;
  border: 0;
  padding: 5px 0;
  cursor: pointer;
}

.profile-link-mark {
  width: 26px;
  height: 26px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.profile-link-mark::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 7px;
  height: 7px;
  border: 1.3px solid currentColor;
  border-radius: 50%;
}

.profile-link-mark::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 5px;
  width: 13px;
  height: 7px;
  border: 1.3px solid currentColor;
  border-radius: 9px 9px 6px 6px;
}

.profile-chevron {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.profile-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 220px;
  padding: 10px;
  background: #fff;
  color: #1b2430;
  border: 1px solid rgba(27, 36, 48, 0.14);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(27, 36, 48, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.profile-menu.is-open .profile-dropdown,
.profile-menu:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-menu.is-open .profile-chevron,
.profile-menu:hover .profile-chevron {
  transform: rotate(180deg);
}

.profile-greeting {
  margin: 2px 8px 8px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(27, 36, 48, 0.12);
  color: #65717d;
  font-size: 0.7rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.profile-greeting strong {
  display: block;
  color: #1b2430;
  font-size: 0.8rem;
}

.profile-dropdown a,
.profile-dropdown button {
  display: block;
  width: 100%;
  padding: 9px 8px;
  border: 0;
  border-radius: 7px;
  background: none;
  color: #1b2430;
  font: inherit;
  font-size: 0.82rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.profile-dropdown a:hover,
.profile-dropdown button:hover {
  background: #f1f3f4;
}

.profile-dropdown button {
  color: #a44f43;
}

@media (max-width: 760px) {
  [data-profile-nav] > #guest-nav-actions .ghost-link,
  [data-profile-nav] > .guest-nav-actions .ghost-link {
    display: none;
  }

  .profile-dropdown {
    right: -8px;
  }
}