/* ============================================================
   SITE NAV — breadcrumb tabs + masthead brand card.
   Shared across dashboard, settings, archived, entry detail and
   about. Self-contained; consumes tokens from tokens.css. Not
   scoped under .app, because the about page is not an .app page.
   ============================================================ */

.ed-sitenav {
  padding-top: 40px;
  margin-bottom: 8px;
}

/* --- Breadcrumb tabs ---------------------------------------- */

.ed-sitenav__tabs {
  display: flex;
  padding-left: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ed-sitenav__tabs::-webkit-scrollbar {
  display: none;
}

.ed-tab {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 7px 16px;
  margin-bottom: -1px;
  border-radius: 7px 7px 0 0;
  white-space: nowrap;
  text-decoration: none;
}

.ed-tab--current {
  position: relative;
  z-index: 2;
  background: var(--accent);
  color: #fff;
}

.ed-tab--link {
  background: #efece2;
  color: var(--ink-faint);
  border: 1px solid var(--rule);
  border-bottom: none;
  margin-right: 2px;
  transition: color 0.15s ease, background 0.15s ease;
}

.ed-tab--link:hover {
  color: var(--ink);
  background: #e7e3d6;
}

/* --- Masthead brand card ------------------------------------ */

.ed-sitenav .ed-masthead {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-bottom: 3px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  padding: 26px 24px;
}

.ed-sitenav .ed-masthead__name {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

.ed-sitenav .ed-masthead__name a {
  color: var(--ink);
  text-decoration: none;
}

.ed-sitenav .ed-masthead__email {
  font-family: var(--body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.ed-sitenav .ed-masthead__email a {
  color: var(--accent);
  text-decoration: none;
}

.ed-sitenav .ed-masthead__email a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .ed-sitenav .ed-masthead {
    padding: 22px 18px;
  }
}
