@layer components {
  .topnav {
    height: 52px;
    background: var(--ink-950);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--s6);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .topnav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .topnav-logo {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .topnav-logo svg {
    width: 16px;
    height: 16px;
    color: var(--forest-300);
  }

  .topnav-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
  }

  .topnav-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .topnav-user {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
  }

  .topnav-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--forest-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
  }

  .topnav-username {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
  }
}
